Exemple #1
0
        public static void ys_AssetsStatus_GridLookUpEdit(DevExpress.XtraEditors.GridLookUpEdit Control)
        {
            #region 列名
            DevExpress.XtraGrid.Columns.GridColumn ID = new DevExpress.XtraGrid.Columns.GridColumn();
            ID.Name         = "Id";
            ID.Visible      = true;
            ID.FieldName    = "Id";
            ID.Caption      = "编号";
            ID.VisibleIndex = -1;

            DevExpress.XtraGrid.Columns.GridColumn Name = new DevExpress.XtraGrid.Columns.GridColumn();
            Name.Name         = "StatusName";
            Name.FieldName    = "StatusName";
            Name.Caption      = "名称";
            Name.VisibleIndex = 0;
            Name.Width        = 100;
            Name.Visible      = true;

            Control.Properties.PopupView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { ID, Name });

            #endregion
            Control.Properties.ImmediatePopup = true;
            Control.Properties.NullText       = "";
            Control.Properties.TextEditStyle  = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
            Control.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
            Control.Properties.DisplayMember  = "StatusName";
            Control.Properties.ValueMember    = "Id";
            Control.Properties.View.OptionsView.ColumnAutoWidth = false;
            Control.Properties.DataSource = InitalControlHelper.GetAllAssetsStatus();
        }
 private void cmbProductNameNew_KeyDown(object sender, KeyEventArgs e)
 {
     DevExpress.XtraEditors.GridLookUpEdit gridLookUpEdit = sender as DevExpress.XtraEditors.GridLookUpEdit;
     if (e.KeyCode == Keys.Back)
     {
         BeginInvoke(new MethodInvoker(() => { SendKeys.Send("{Delete}"); }));
     }
     if (e.KeyCode == Keys.Enter)
     {
         cmbProductNameNew.SelectionLength = 0;
     }
 }
Exemple #3
0
 public void LoadAuthorisedCompanies(DevExpress.XtraEditors.GridLookUpEdit GridLookUpEdit)
 {
     try
     {
         ds = this.GetAuthorisedCompanies();
         GridLookUpEdit.Properties.ValueMember   = "CompCode";
         GridLookUpEdit.Properties.DisplayMember = "CompName";
         GridLookUpEdit.Properties.DataSource    = ds.Tables["AuthorisedCompanies"];
     }
     catch (Exception)
     {
     }
 }
        private async void THDungChung(string strSql, DevExpress.XtraEditors.GridLookUpEdit cbo)
        {
            Model.Function.ConnectSanXuat();
            await Task.Run(() =>
            {
                string sqlQuery = string.Format(strSql);
            });

            Invoke((Action)(() =>
            {
                cbo.Properties.DataSource = null;
                cbo.Properties.DataSource = Model.Function.GetDataTable(strSql);
            }));
        }
Exemple #5
0
        public static void ACL_User_GridLookUpEdit(DevExpress.XtraEditors.GridLookUpEdit Control, bool IsBindingData = true)
        {
            #region 列名
            DevExpress.XtraGrid.Columns.GridColumn ID = new DevExpress.XtraGrid.Columns.GridColumn();
            ID.Name         = "Id";
            ID.Visible      = false;
            ID.FieldName    = "Id";
            ID.Caption      = "编号";
            ID.VisibleIndex = -1;

            DevExpress.XtraGrid.Columns.GridColumn StaffCode = new DevExpress.XtraGrid.Columns.GridColumn();
            StaffCode.Name         = "SimpleCode";
            StaffCode.FieldName    = "SimpleCode";
            StaffCode.Caption      = "简码";
            StaffCode.VisibleIndex = 0;
            StaffCode.Width        = 60;
            StaffCode.Visible      = true;


            DevExpress.XtraGrid.Columns.GridColumn Name = new DevExpress.XtraGrid.Columns.GridColumn();
            Name.Name         = "FullName";
            Name.FieldName    = "FullName";
            Name.Caption      = "职员";
            Name.VisibleIndex = 1;
            Name.Visible      = true;


            DevExpress.XtraGrid.Columns.GridColumn DeptNAME = new DevExpress.XtraGrid.Columns.GridColumn();
            DeptNAME.Name         = "DepartmentName";
            DeptNAME.FieldName    = "DepartmentName";
            DeptNAME.VisibleIndex = 2;
            DeptNAME.Caption      = "部门";
            DeptNAME.Visible      = true;

            Control.Properties.PopupView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { ID, StaffCode, Name, DeptNAME });

            #endregion

            Control.Properties.DisplayMember  = "FullName";
            Control.Properties.ValueMember    = "Id";
            Control.Properties.ImmediatePopup = true;
            Control.Properties.NullText       = "";
            Control.Properties.TextEditStyle  = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
            Control.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
            Control.Properties.View.OptionsView.ColumnAutoWidth = false;
            if (IsBindingData)
            {
                Control.Properties.DataSource = InitalControlHelper.GetAllUser();
            }
        }
Exemple #6
0
        private void FilterLookupStaff(object sender)
        {
            DevExpress.XtraEditors.GridLookUpEdit   edit     = sender as DevExpress.XtraEditors.GridLookUpEdit;
            DevExpress.XtraGrid.Views.Grid.GridView gridView = edit.Properties.View as DevExpress.XtraGrid.Views.Grid.GridView;
            System.Reflection.FieldInfo             fi       = gridView.GetType().GetField("extraFilter", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);
            //Text = edit.AutoSearchText;
            DevExpress.Data.Filtering.BinaryOperator op1 = new DevExpress.Data.Filtering.BinaryOperator("StaffID", "%" + edit.AutoSearchText + "%", DevExpress.Data.Filtering.BinaryOperatorType.Like);
            DevExpress.Data.Filtering.BinaryOperator op2 = new DevExpress.Data.Filtering.BinaryOperator("FullName", "%" + edit.AutoSearchText + "%", DevExpress.Data.Filtering.BinaryOperatorType.Like);
            string filterCondition = new DevExpress.Data.Filtering.GroupOperator(DevExpress.Data.Filtering.GroupOperatorType.Or, new DevExpress.Data.Filtering.CriteriaOperator[] { op1, op2 }).ToString();

            fi.SetValue(gridView, filterCondition);

            System.Reflection.MethodInfo mi = gridView.GetType().GetMethod("ApplyColumnsFilterEx", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);
            mi.Invoke(gridView, null);
        }
Exemple #7
0
        public static void ys_AssetsStock_GridLookUpEdit(DevExpress.XtraEditors.GridLookUpEdit Control)
        {
            #region 列名
            DevExpress.XtraGrid.Columns.GridColumn ID = new DevExpress.XtraGrid.Columns.GridColumn();
            ID.Name         = "Id";
            ID.Visible      = true;
            ID.FieldName    = "Id";
            ID.Caption      = "编号";
            ID.VisibleIndex = -1;
            ID.Width        = 40;

            DevExpress.XtraGrid.Columns.GridColumn Name = new DevExpress.XtraGrid.Columns.GridColumn();
            Name.Name         = "StockName";
            Name.FieldName    = "StockName";
            Name.Caption      = "仓库";
            Name.VisibleIndex = 1;
            Name.Visible      = true;
            Name.Width        = 120;


            DevExpress.XtraGrid.Columns.GridColumn User = new DevExpress.XtraGrid.Columns.GridColumn();
            User.Name         = "ManagerName";
            User.FieldName    = "ManagerName";
            User.VisibleIndex = 2;
            User.Caption      = "管理员";
            User.Visible      = true;

            Control.Properties.PopupView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { ID, Name, User });

            #endregion

            Control.Properties.DisplayMember  = "StockName";
            Control.Properties.ValueMember    = "Id";
            Control.Properties.ImmediatePopup = true;
            Control.Properties.NullText       = "";
            Control.Properties.TextEditStyle  = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
            Control.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
            Control.Properties.View.OptionsView.ColumnAutoWidth = false;
            Control.Properties.DataSource = GetAllAssetsStock();
        }
 /// <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 serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
     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.Utils.SerializableAppearanceObject serializableAppearanceObject9 = new DevExpress.Utils.SerializableAppearanceObject();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SendGoodsEdt));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.txtReceiverName = new DevExpress.XtraEditors.ButtonEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.memoEdit1 = new DevExpress.XtraEditors.MemoEdit();
     this.txtSendNo = new Ultra.FASControls.LabelTextBox();
     this.txtLogisFee = new Ultra.FASControls.LabelSpinEdit();
     this.dtSend = new DevExpress.XtraEditors.DateEdit();
     this.txtLogisNo = new Ultra.FASControls.LabelTextBox();
     this.txtReceiverPhone = new Ultra.FASControls.LabelTextBox();
     this.txtLogisName = new Ultra.FASControls.LabelTextBox();
     this.txtDriver = new Ultra.FASControls.LabelTextBox();
     this.gcItem = new Ultra.FASControls.GridControlEx();
     this.gvItem = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = 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.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repLoc = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupPanel1 = new FAC.Login.Controls.GroupPanel();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnDelItem = new FAC.Login.Controls.BtnCtl();
     this.btnAddItem = new FAC.Login.Controls.BtnCtl();
     this.groupPanel2 = new FAC.Login.Controls.GroupPanel();
     this.gcAddr = new Ultra.FASControls.GridControlEx();
     this.gvAddr = 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.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemGridLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView3 = 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.repositoryItemSpinEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.btnDelAddr = new FAC.Login.Controls.BtnCtl();
     this.btnAddAddr = new FAC.Login.Controls.BtnCtl();
     this.lookupPost = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.pnlMain)).BeginInit();
     this.pnlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlFill)).BeginInit();
     this.pnlFill.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlBottom)).BeginInit();
     this.pnlBottom.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceiverName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSendNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLogisFee.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtSend.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtSend.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLogisNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceiverPhone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLogisName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDriver.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repLoc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel1)).BeginInit();
     this.groupPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel2)).BeginInit();
     this.groupPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcAddr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAddr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookupPost.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     this.SuspendLayout();
     //
     // btnClose
     //
     this.btnClose.Location = new System.Drawing.Point(27444, 5);
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(27359, 6);
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // pnlMain
     //
     this.pnlMain.Size = new System.Drawing.Size(1252, 456);
     //
     // pnlFill
     //
     this.pnlFill.Controls.Add(this.groupPanel1);
     this.pnlFill.Controls.Add(this.groupPanel2);
     this.pnlFill.Controls.Add(this.panelControl2);
     this.pnlFill.Size = new System.Drawing.Size(1252, 410);
     //
     // pnlBottom
     //
     this.pnlBottom.Location = new System.Drawing.Point(0, 410);
     this.pnlBottom.Size = new System.Drawing.Size(1252, 46);
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.lookupPost);
     this.panelControl2.Controls.Add(this.txtReceiverName);
     this.panelControl2.Controls.Add(this.label1);
     this.panelControl2.Controls.Add(this.memoEdit1);
     this.panelControl2.Controls.Add(this.txtSendNo);
     this.panelControl2.Controls.Add(this.txtLogisFee);
     this.panelControl2.Controls.Add(this.dtSend);
     this.panelControl2.Controls.Add(this.txtLogisNo);
     this.panelControl2.Controls.Add(this.txtReceiverPhone);
     this.panelControl2.Controls.Add(this.txtLogisName);
     this.panelControl2.Controls.Add(this.txtDriver);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl2.Location = new System.Drawing.Point(2, 2);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(1248, 62);
     this.panelControl2.TabIndex = 2;
     //
     // txtReceiverName
     //
     this.txtReceiverName.Location = new System.Drawing.Point(206, 6);
     this.txtReceiverName.Name = "txtReceiverName";
     this.txtReceiverName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "收货方", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
     this.txtReceiverName.Properties.ReadOnly = true;
     this.txtReceiverName.Size = new System.Drawing.Size(190, 21);
     this.txtReceiverName.TabIndex = 7;
     this.txtReceiverName.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.txtReceiverName_ButtonClick);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(990, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(31, 14);
     this.label1.TabIndex = 6;
     this.label1.Text = "备注";
     //
     // memoEdit1
     //
     this.memoEdit1.Location = new System.Drawing.Point(1027, 5);
     this.memoEdit1.Name = "memoEdit1";
     this.memoEdit1.Size = new System.Drawing.Size(216, 49);
     this.memoEdit1.TabIndex = 5;
     //
     // txtSendNo
     //
     this.txtSendNo.EditValue = "自动生成";
     this.txtSendNo.LabelText = "发货单号";
     this.txtSendNo.Location = new System.Drawing.Point(10, 6);
     this.txtSendNo.Name = "txtSendNo";
     serializableAppearanceObject3.Options.UseTextOptions = true;
     serializableAppearanceObject3.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.txtSendNo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "发货单号", 50, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)});
     this.txtSendNo.Properties.ReadOnly = true;
     this.txtSendNo.Size = new System.Drawing.Size(190, 21);
     this.txtSendNo.TabIndex = 2;
     //
     // txtLogisFee
     //
     this.txtLogisFee.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.txtLogisFee.Location = new System.Drawing.Point(402, 32);
     this.txtLogisFee.Name = "txtLogisFee";
     this.txtLogisFee.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "物流运费", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)});
     this.txtLogisFee.Size = new System.Drawing.Size(190, 21);
     this.txtLogisFee.TabIndex = 4;
     //
     // dtSend
     //
     this.dtSend.EditValue = null;
     this.dtSend.Location = new System.Drawing.Point(402, 5);
     this.dtSend.Name = "dtSend";
     this.dtSend.Properties.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, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, true)});
     this.dtSend.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtSend.Size = new System.Drawing.Size(190, 21);
     this.dtSend.TabIndex = 3;
     //
     // txtLogisNo
     //
     this.txtLogisNo.LabelText = "物流单号";
     this.txtLogisNo.Location = new System.Drawing.Point(598, 32);
     this.txtLogisNo.Name = "txtLogisNo";
     serializableAppearanceObject6.Options.UseTextOptions = true;
     serializableAppearanceObject6.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.txtLogisNo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "物流单号", 50, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject6, "", null, null, true)});
     this.txtLogisNo.Size = new System.Drawing.Size(190, 21);
     this.txtLogisNo.TabIndex = 1;
     //
     // txtReceiverPhone
     //
     this.txtReceiverPhone.LabelText = "联系电话";
     this.txtReceiverPhone.Location = new System.Drawing.Point(10, 33);
     this.txtReceiverPhone.Name = "txtReceiverPhone";
     serializableAppearanceObject7.Options.UseTextOptions = true;
     serializableAppearanceObject7.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.txtReceiverPhone.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "联系电话", 50, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject7, "", null, null, true)});
     this.txtReceiverPhone.Size = new System.Drawing.Size(190, 21);
     this.txtReceiverPhone.TabIndex = 3;
     //
     // txtLogisName
     //
     this.txtLogisName.LabelText = "物流公司";
     this.txtLogisName.Location = new System.Drawing.Point(598, 6);
     this.txtLogisName.Name = "txtLogisName";
     serializableAppearanceObject8.Options.UseTextOptions = true;
     serializableAppearanceObject8.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.txtLogisName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "物流公司", 50, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject8, "", null, null, true)});
     this.txtLogisName.Size = new System.Drawing.Size(190, 21);
     this.txtLogisName.TabIndex = 0;
     //
     // txtDriver
     //
     this.txtDriver.LabelText = "";
     this.txtDriver.Location = new System.Drawing.Point(206, 33);
     this.txtDriver.Name = "txtDriver";
     serializableAppearanceObject9.Options.UseTextOptions = true;
     serializableAppearanceObject9.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.txtDriver.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "送货司机", 50, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject9, "", null, null, true)});
     this.txtDriver.Size = new System.Drawing.Size(190, 21);
     this.txtDriver.TabIndex = 2;
     //
     // gcItem
     //
     this.gcItem.AutoCallWW = true;
     this.gcItem.CellStyleColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.gcItem.ColorFieldName = null;
     this.gcItem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcItem.Editable = true;
     this.gcItem.ImageFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcItem.ImageFields")));
     this.gcItem.Location = new System.Drawing.Point(2, 22);
     this.gcItem.MainView = this.gvItem;
     this.gcItem.Name = "gcItem";
     this.gcItem.PopupMnu = null;
     this.gcItem.PopupTextFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcItem.PopupTextFields")));
     this.gcItem.PopupTextFieldsReadOnly = ((System.Collections.Generic.List<string>)(resources.GetObject("gcItem.PopupTextFieldsReadOnly")));
     this.gcItem.PropName = "PropName";
     this.gcItem.PrvCityDistrict = ((System.Collections.Generic.List<string>)(resources.GetObject("gcItem.PrvCityDistrict")));
     this.gcItem.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit2,
     this.repLoc,
     this.repositoryItemSpinEdit1});
     this.gcItem.RightMenu = null;
     this.gcItem.RowCellColorStyleSource = null;
     this.gcItem.ShadowDataSource = null;
     this.gcItem.ShadowDataSourceKey = "Guid";
     this.gcItem.ShowIndicator = true;
     this.gcItem.ShowRowNumber = true;
     this.gcItem.Size = new System.Drawing.Size(1244, 137);
     this.gcItem.TabIndex = 8;
     this.gcItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvItem});
     //
     // gvItem
     //
     this.gvItem.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvItem.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvItem.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvItem.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvItem.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn8,
     this.gridColumn33,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn19,
     this.gridColumn18,
     this.gridColumn20,
     this.gridColumn24,
     this.gridColumn21,
     this.gridColumn26,
     this.gridColumn25,
     this.gridColumn22,
     this.gridColumn23,
     this.gridColumn28});
     this.gvItem.GridControl = this.gcItem;
     this.gvItem.IndicatorWidth = 44;
     this.gvItem.Name = "gvItem";
     this.gvItem.OptionsView.ColumnAutoWidth = false;
     this.gvItem.OptionsView.ShowAutoFilterRow = true;
     this.gvItem.OptionsView.ShowGroupedColumns = true;
     this.gvItem.OptionsView.ShowGroupPanel = false;
     this.gvItem.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gvItem_RowStyle);
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "仓库";
     this.gridColumn5.FieldName = "WareName";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.ReadOnly = true;
     this.gridColumn5.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 8;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "区域";
     this.gridColumn6.FieldName = "AreaName";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.OptionsColumn.ReadOnly = true;
     this.gridColumn6.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 9;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "库位";
     this.gridColumn8.FieldName = "LocName";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowEdit = false;
     this.gridColumn8.OptionsColumn.ReadOnly = true;
     this.gridColumn8.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 10;
     //
     // gridColumn33
     //
     this.gridColumn33.Caption = "收货方";
     this.gridColumn33.FieldName = "SuppName";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.OptionsColumn.AllowEdit = false;
     this.gridColumn33.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 0;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "订单号";
     this.gridColumn16.FieldName = "PurchNo";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.OptionsColumn.AllowEdit = false;
     this.gridColumn16.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 1;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "商品编码";
     this.gridColumn17.FieldName = "OuterIid";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.OptionsColumn.AllowEdit = false;
     this.gridColumn17.OptionsColumn.ReadOnly = true;
     this.gridColumn17.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 2;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "规格编码";
     this.gridColumn19.FieldName = "OuterSkuId";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.AllowEdit = false;
     this.gridColumn19.OptionsColumn.ReadOnly = true;
     this.gridColumn19.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 3;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "仿真皮料";
     this.gridColumn18.FieldName = "GenuineSurface";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.OptionsColumn.AllowEdit = false;
     this.gridColumn18.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 4;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "仿皮料";
     this.gridColumn20.FieldName = "ImitSurface";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.OptionsColumn.AllowEdit = false;
     this.gridColumn20.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 5;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "环保皮";
     this.gridColumn24.FieldName = "EnvSurface";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.OptionsColumn.AllowEdit = false;
     this.gridColumn24.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 6;
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "皮料";
     this.gridColumn21.FieldName = "Surface";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.OptionsColumn.AllowEdit = false;
     this.gridColumn21.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 7;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "商标";
     this.gridColumn26.FieldName = "TradeMark";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.OptionsColumn.AllowEdit = false;
     this.gridColumn26.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 11;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "订单数量";
     this.gridColumn25.FieldName = "Reserved1";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.OptionsColumn.AllowEdit = false;
     this.gridColumn25.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 12;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "库存数";
     this.gridColumn22.FieldName = "Qty";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.OptionsColumn.AllowEdit = false;
     this.gridColumn22.OptionsColumn.ReadOnly = true;
     this.gridColumn22.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 13;
     //
     // gridColumn23
     //
     this.gridColumn23.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(185)))), ((int)(((byte)(183)))));
     this.gridColumn23.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn23.Caption = "出库数量";
     this.gridColumn23.ColumnEdit = this.repositoryItemSpinEdit1;
     this.gridColumn23.FieldName = "SendNum";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 14;
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // gridColumn28
     //
     this.gridColumn28.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(185)))), ((int)(((byte)(183)))));
     this.gridColumn28.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn28.Caption = "备注";
     this.gridColumn28.FieldName = "Remark";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 15;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repLoc
     //
     this.repLoc.AutoHeight = false;
     this.repLoc.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repLoc.DisplayMember = "LocName";
     this.repLoc.Name = "repLoc";
     this.repLoc.NullText = "";
     this.repLoc.ValueMember = "LocName";
     this.repLoc.View = this.repositoryItemGridLookUpEdit1View;
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn29,
     this.gridColumn30,
     this.gridColumn31});
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowAutoFilterRow = true;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "仓库";
     this.gridColumn29.FieldName = "WareName";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 0;
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "区域";
     this.gridColumn30.FieldName = "AreaName";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 1;
     //
     // gridColumn31
     //
     this.gridColumn31.Caption = "库位";
     this.gridColumn31.FieldName = "LocName";
     this.gridColumn31.Name = "gridColumn31";
     this.gridColumn31.Visible = true;
     this.gridColumn31.VisibleIndex = 2;
     //
     // groupPanel1
     //
     this.groupPanel1.Controls.Add(this.gcItem);
     this.groupPanel1.Controls.Add(this.panelControl1);
     this.groupPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupPanel1.Location = new System.Drawing.Point(2, 64);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(1248, 193);
     this.groupPanel1.TabIndex = 12;
     this.groupPanel1.Text = "商品信息";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btnDelItem);
     this.panelControl1.Controls.Add(this.btnAddItem);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(2, 159);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(1244, 32);
     this.panelControl1.TabIndex = 9;
     //
     // btnDelItem
     //
     this.btnDelItem.Location = new System.Drawing.Point(8, 6);
     this.btnDelItem.Name = "btnDelItem";
     this.btnDelItem.Size = new System.Drawing.Size(65, 23);
     this.btnDelItem.TabIndex = 1;
     this.btnDelItem.Text = "删除商品";
     this.btnDelItem.Click += new System.EventHandler(this.btnDelItem_Click);
     //
     // btnAddItem
     //
     this.btnAddItem.Location = new System.Drawing.Point(79, 6);
     this.btnAddItem.Name = "btnAddItem";
     this.btnAddItem.Size = new System.Drawing.Size(65, 23);
     this.btnAddItem.TabIndex = 0;
     this.btnAddItem.Text = "添加商品";
     this.btnAddItem.Visible = false;
     this.btnAddItem.Click += new System.EventHandler(this.btnAddItem_Click);
     //
     // groupPanel2
     //
     this.groupPanel2.Controls.Add(this.gcAddr);
     this.groupPanel2.Controls.Add(this.panelControl3);
     this.groupPanel2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupPanel2.Location = new System.Drawing.Point(2, 257);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(1248, 151);
     this.groupPanel2.TabIndex = 13;
     this.groupPanel2.Text = "收货地址";
     //
     // gcAddr
     //
     this.gcAddr.AutoCallWW = true;
     this.gcAddr.CellStyleColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.gcAddr.ColorFieldName = null;
     this.gcAddr.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcAddr.Editable = true;
     this.gcAddr.ImageFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcAddr.ImageFields")));
     this.gcAddr.Location = new System.Drawing.Point(2, 22);
     this.gcAddr.MainView = this.gvAddr;
     this.gcAddr.Name = "gcAddr";
     this.gcAddr.PopupMnu = null;
     this.gcAddr.PopupTextFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcAddr.PopupTextFields")));
     this.gcAddr.PopupTextFieldsReadOnly = ((System.Collections.Generic.List<string>)(resources.GetObject("gcAddr.PopupTextFieldsReadOnly")));
     this.gcAddr.PropName = "PropName";
     this.gcAddr.PrvCityDistrict = ((System.Collections.Generic.List<string>)(resources.GetObject("gcAddr.PrvCityDistrict")));
     this.gcAddr.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1,
     this.repositoryItemGridLookUpEdit1,
     this.repositoryItemSpinEdit2});
     this.gcAddr.RightMenu = null;
     this.gcAddr.RowCellColorStyleSource = null;
     this.gcAddr.ShadowDataSource = null;
     this.gcAddr.ShadowDataSourceKey = "Guid";
     this.gcAddr.ShowIndicator = true;
     this.gcAddr.ShowRowNumber = true;
     this.gcAddr.Size = new System.Drawing.Size(1244, 95);
     this.gcAddr.TabIndex = 10;
     this.gcAddr.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvAddr});
     //
     // gvAddr
     //
     this.gvAddr.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvAddr.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvAddr.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvAddr.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvAddr.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn7,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12});
     this.gvAddr.GridControl = this.gcAddr;
     this.gvAddr.IndicatorWidth = 44;
     this.gvAddr.Name = "gvAddr";
     this.gvAddr.OptionsView.ColumnAutoWidth = false;
     this.gvAddr.OptionsView.ShowAutoFilterRow = true;
     this.gvAddr.OptionsView.ShowGroupedColumns = true;
     this.gvAddr.OptionsView.ShowGroupPanel = false;
     this.gvAddr.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gvAddr_CellValueChanged);
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(185)))), ((int)(((byte)(183)))));
     this.gridColumn1.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn1.Caption = "收货方";
     this.gridColumn1.FieldName = "SuppName";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(185)))), ((int)(((byte)(183)))));
     this.gridColumn2.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn2.Caption = "省";
     this.gridColumn2.FieldName = "ReceiverState";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(185)))), ((int)(((byte)(183)))));
     this.gridColumn3.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn3.Caption = "市";
     this.gridColumn3.FieldName = "ReceiverCity";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(185)))), ((int)(((byte)(183)))));
     this.gridColumn4.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn4.Caption = "区";
     this.gridColumn4.FieldName = "ReceiverDistrict";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(185)))), ((int)(((byte)(183)))));
     this.gridColumn7.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn7.Caption = "地址";
     this.gridColumn7.FieldName = "ReceiverAddress";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 4;
     //
     // gridColumn9
     //
     this.gridColumn9.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(185)))), ((int)(((byte)(183)))));
     this.gridColumn9.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn9.Caption = "邮编";
     this.gridColumn9.FieldName = "ReceiverZip";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 5;
     //
     // gridColumn10
     //
     this.gridColumn10.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(185)))), ((int)(((byte)(183)))));
     this.gridColumn10.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn10.Caption = "联系人";
     this.gridColumn10.FieldName = "ReceiverName";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 6;
     //
     // gridColumn11
     //
     this.gridColumn11.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(185)))), ((int)(((byte)(183)))));
     this.gridColumn11.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn11.Caption = "手机";
     this.gridColumn11.FieldName = "ReceiverMobile";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 7;
     //
     // gridColumn12
     //
     this.gridColumn12.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(185)))), ((int)(((byte)(183)))));
     this.gridColumn12.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn12.Caption = "固定电话";
     this.gridColumn12.FieldName = "ReceiverPhone";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 8;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemGridLookUpEdit1
     //
     this.repositoryItemGridLookUpEdit1.AutoHeight = false;
     this.repositoryItemGridLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEdit1.DisplayMember = "LocName";
     this.repositoryItemGridLookUpEdit1.Name = "repositoryItemGridLookUpEdit1";
     this.repositoryItemGridLookUpEdit1.NullText = "";
     this.repositoryItemGridLookUpEdit1.ValueMember = "LocName";
     this.repositoryItemGridLookUpEdit1.View = this.gridView3;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn15});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowAutoFilterRow = true;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "仓库";
     this.gridColumn13.FieldName = "WareName";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 0;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "区域";
     this.gridColumn14.FieldName = "AreaName";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 1;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "库位";
     this.gridColumn15.FieldName = "LocName";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 2;
     //
     // repositoryItemSpinEdit2
     //
     this.repositoryItemSpinEdit2.AutoHeight = false;
     this.repositoryItemSpinEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit2.Name = "repositoryItemSpinEdit2";
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.btnDelAddr);
     this.panelControl3.Controls.Add(this.btnAddAddr);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl3.Location = new System.Drawing.Point(2, 117);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(1244, 32);
     this.panelControl3.TabIndex = 11;
     //
     // btnDelAddr
     //
     this.btnDelAddr.Location = new System.Drawing.Point(79, 6);
     this.btnDelAddr.Name = "btnDelAddr";
     this.btnDelAddr.Size = new System.Drawing.Size(65, 23);
     this.btnDelAddr.TabIndex = 1;
     this.btnDelAddr.Text = "删除行";
     this.btnDelAddr.Click += new System.EventHandler(this.btnDelAddr_Click);
     //
     // btnAddAddr
     //
     this.btnAddAddr.Location = new System.Drawing.Point(8, 6);
     this.btnAddAddr.Name = "btnAddAddr";
     this.btnAddAddr.Size = new System.Drawing.Size(65, 23);
     this.btnAddAddr.TabIndex = 0;
     this.btnAddAddr.Text = "添加行";
     this.btnAddAddr.Click += new System.EventHandler(this.btnAddAddr_Click);
     //
     // lookupPost
     //
     this.lookupPost.EditValue = " ";
     this.lookupPost.Location = new System.Drawing.Point(794, 7);
     this.lookupPost.Name = "lookupPost";
     this.lookupPost.Properties.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, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.lookupPost.Properties.DisplayMember = "TypeName";
     this.lookupPost.Properties.NullText = "";
     this.lookupPost.Properties.ValueMember = "TypeName";
     this.lookupPost.Properties.View = this.gridLookUpEdit1View;
     this.lookupPost.Size = new System.Drawing.Size(190, 21);
     this.lookupPost.TabIndex = 9;
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn27});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "运费类型";
     this.gridColumn27.FieldName = "TypeName";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 0;
     //
     // SendGoodsEdt
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1252, 456);
     this.Name = "SendGoodsEdt";
     this.Text = "出库单编辑";
     this.Load += new System.EventHandler(this.SendGoodsEdt_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pnlMain)).EndInit();
     this.pnlMain.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlFill)).EndInit();
     this.pnlFill.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlBottom)).EndInit();
     this.pnlBottom.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.panelControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceiverName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSendNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLogisFee.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtSend.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtSend.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLogisNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceiverPhone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLogisName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDriver.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repLoc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel1)).EndInit();
     this.groupPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel2)).EndInit();
     this.groupPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcAddr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAddr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lookupPost.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.vQry60BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicateId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitteId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colWarasaType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colyasref = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarf1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colhalarem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemMemoExEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.repositoryItemLookUpEdituserin = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.lueDofatSarfAId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSTBLDofatSarf = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDofatSarfId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.vQry60TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.vQry60TableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vQry60BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdituserin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueDofatSarfAId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLDofatSarf)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlData.DataSource = this.vQry60BindingSource;
     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.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.repositoryItemDateEditDMY,
     this.repositoryItemMemoExEdit1,
     this.repositoryItemLookUpEdituserin});
     this.gridControlData.Size = new System.Drawing.Size(969, 404);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // vQry60BindingSource
     //
     this.vQry60BindingSource.DataMember = "vQry60";
     this.vQry60BindingSource.DataSource = this.dsQueries;
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicate,
     this.colSubCommitte,
     this.colsarfnumber,
     this.colMMashatName,
     this.colMMashatId,
     this.colPersonId,
     this.colpersonName,
     this.colSyndicateId,
     this.colSubCommitteId,
     this.colWarasaType,
     this.colyasref,
     this.colDofatSarf1,
     this.colhalarem});
     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.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.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 = 8;
     //
     // 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 = 4;
     //
     // 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 = 3;
     //
     // 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 = 2;
     //
     // 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 = 0;
     //
     // colpersonName
     //
     this.colpersonName.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.Caption = "الاسم";
     this.colpersonName.FieldName = "personName";
     this.colpersonName.Name = "colpersonName";
     this.colpersonName.Visible = true;
     this.colpersonName.VisibleIndex = 1;
     //
     // 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 = 5;
     //
     // 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 = 7;
     //
     // colWarasaType
     //
     this.colWarasaType.AppearanceCell.Options.UseTextOptions = true;
     this.colWarasaType.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWarasaType.AppearanceHeader.Options.UseTextOptions = true;
     this.colWarasaType.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWarasaType.Caption = "نوع الوريث";
     this.colWarasaType.FieldName = "WarasaType";
     this.colWarasaType.Name = "colWarasaType";
     this.colWarasaType.Visible = true;
     this.colWarasaType.VisibleIndex = 9;
     //
     // 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 = 10;
     //
     // colDofatSarf1
     //
     this.colDofatSarf1.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarf1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf1.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarf1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf1.Caption = "اول صرفية";
     this.colDofatSarf1.FieldName = "DofatSarf";
     this.colDofatSarf1.Name = "colDofatSarf1";
     this.colDofatSarf1.Visible = true;
     this.colDofatSarf1.VisibleIndex = 11;
     //
     // colhalarem
     //
     this.colhalarem.AppearanceCell.Options.UseTextOptions = true;
     this.colhalarem.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colhalarem.AppearanceHeader.Options.UseTextOptions = true;
     this.colhalarem.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colhalarem.Caption = "اخر ملاحظة";
     this.colhalarem.FieldName = "halarem";
     this.colhalarem.Name = "colhalarem";
     this.colhalarem.Visible = true;
     this.colhalarem.VisibleIndex = 12;
     //
     // 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";
     //
     // repositoryItemLookUpEdituserin
     //
     this.repositoryItemLookUpEdituserin.AutoHeight = false;
     this.repositoryItemLookUpEdituserin.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdituserin.DisplayMember = "RealName";
     this.repositoryItemLookUpEdituserin.Name = "repositoryItemLookUpEdituserin";
     this.repositoryItemLookUpEdituserin.NullText = "";
     this.repositoryItemLookUpEdituserin.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEdituserin.ValueMember = "UserID";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.lueDofatSarfAId);
     this.panelControl1.Controls.Add(this.labelControl6);
     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(969, 47);
     this.panelControl1.TabIndex = 3;
     //
     // lueDofatSarfAId
     //
     this.lueDofatSarfAId.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.lueDofatSarfAId.EditValue = "";
     this.lueDofatSarfAId.Location = new System.Drawing.Point(344, 9);
     this.lueDofatSarfAId.Name = "lueDofatSarfAId";
     this.lueDofatSarfAId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.lueDofatSarfAId.Properties.Appearance.Options.UseFont = true;
     this.lueDofatSarfAId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueDofatSarfAId.Properties.DataSource = this.LSMSTBLDofatSarf;
     this.lueDofatSarfAId.Properties.DisplayMember = "DofatSarf";
     this.lueDofatSarfAId.Properties.NullText = "";
     this.lueDofatSarfAId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueDofatSarfAId.Properties.ValueMember = "DofatSarfId";
     this.lueDofatSarfAId.Properties.View = this.gridLookUpEdit1View;
     this.lueDofatSarfAId.Size = new System.Drawing.Size(233, 26);
     this.lueDofatSarfAId.TabIndex = 1;
     this.lueDofatSarfAId.EditValueChanged += new System.EventHandler(this.lueDofatSarfAId_EditValueChanged);
     //
     // LSMSTBLDofatSarf
     //
     this.LSMSTBLDofatSarf.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLDofatSarf);
     this.LSMSTBLDofatSarf.KeyExpression = "[DofatSarfId]";
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDofatSarfId,
     this.colDofatSarf});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     this.gridLookUpEdit1View.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colDofatSarfId, DevExpress.Data.ColumnSortOrder.Descending)});
     //
     // 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.FieldName = "DofatSarfId";
     this.colDofatSarfId.Name = "colDofatSarfId";
     //
     // colDofatSarf
     //
     this.colDofatSarf.Caption = "الاسم";
     this.colDofatSarf.FieldName = "DofatSarf";
     this.colDofatSarf.Name = "colDofatSarf";
     this.colDofatSarf.Visible = true;
     this.colDofatSarf.VisibleIndex = 0;
     //
     // labelControl6
     //
     this.labelControl6.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl6.Location = new System.Drawing.Point(583, 12);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(42, 19);
     this.labelControl6.TabIndex = 2;
     this.labelControl6.Text = "الدفعة";
     //
     // 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(823, 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);
     //
     // vQry60TableAdapter
     //
     this.vQry60TableAdapter.ClearBeforeFill = true;
     //
     // Qry60Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(969, 462);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.gridControlData);
     this.Name = "Qry60Frm";
     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.vQry60BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdituserin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueDofatSarfAId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLDofatSarf)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).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.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.lkExistingInstitutions = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chkIsInstitutionUsedAtFacility = new DevExpress.XtraEditors.CheckEdit();
     this.dtRegistration = new CalendarLib.DateTimePickerEx();
     this.txtTinNo = new DevExpress.XtraEditors.TextEdit();
     this.btnIssueSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.txtLicenseNo = new DevExpress.XtraEditors.TextEdit();
     this.txtVATNo = new DevExpress.XtraEditors.TextEdit();
     this.lkRUType = new DevExpress.XtraEditors.LookUpEdit();
     this.txtPhone = new DevExpress.XtraEditors.TextEdit();
     this.lkOwnership = new DevExpress.XtraEditors.LookUpEdit();
     this.txtReceivingUnit = new DevExpress.XtraEditors.TextEdit();
     this.lkWoreda = new DevExpress.XtraEditors.LookUpEdit();
     this.txtDescription = new DevExpress.XtraEditors.TextEdit();
     this.lkZone = new DevExpress.XtraEditors.LookUpEdit();
     this.lkRoute = new DevExpress.XtraEditors.LookUpEdit();
     this.lkRegion = new DevExpress.XtraEditors.LookUpEdit();
     this.lcReceivingUnitsDetail = new DevExpress.XtraLayout.LayoutControlGroup();
     this.lcHospitalSettingsDetail = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.groupPrivateDetail = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem45 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcTinNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcVATNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcLicenseNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.lcIsUsedInFacility = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcExistingInstitutions = new DevExpress.XtraLayout.LayoutControlItem();
     this.groupPrivateDetails = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem50 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem42 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem48 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem44 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem43 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcWoreda = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem47 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem46 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem38 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem37 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem36 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem35 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem19 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem40 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem39 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.issueLocationValidation = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkExistingInstitutions.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkIsInstitutionUsedAtFacility.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTinNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLicenseNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVATNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRUType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkOwnership.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceivingUnit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkWoreda.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkZone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRoute.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRegion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcReceivingUnitsDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcHospitalSettingsDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPrivateDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem45)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcTinNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcVATNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcLicenseNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcIsUsedInFacility)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcExistingInstitutions)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPrivateDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem50)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem42)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem48)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem44)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem43)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcWoreda)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem47)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem46)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.issueLocationValidation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.lkExistingInstitutions);
     this.layoutControl1.Controls.Add(this.chkIsInstitutionUsedAtFacility);
     this.layoutControl1.Controls.Add(this.dtRegistration);
     this.layoutControl1.Controls.Add(this.txtTinNo);
     this.layoutControl1.Controls.Add(this.btnIssueSave);
     this.layoutControl1.Controls.Add(this.btnCancel);
     this.layoutControl1.Controls.Add(this.txtLicenseNo);
     this.layoutControl1.Controls.Add(this.txtVATNo);
     this.layoutControl1.Controls.Add(this.lkRUType);
     this.layoutControl1.Controls.Add(this.txtPhone);
     this.layoutControl1.Controls.Add(this.lkOwnership);
     this.layoutControl1.Controls.Add(this.txtReceivingUnit);
     this.layoutControl1.Controls.Add(this.lkWoreda);
     this.layoutControl1.Controls.Add(this.txtDescription);
     this.layoutControl1.Controls.Add(this.lkZone);
     this.layoutControl1.Controls.Add(this.lkRoute);
     this.layoutControl1.Controls.Add(this.lkRegion);
     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(737, 251, 250, 350);
     this.layoutControl1.Root = this.lcReceivingUnitsDetail;
     this.layoutControl1.Size = new System.Drawing.Size(359, 491);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // lkExistingInstitutions
     //
     this.lkExistingInstitutions.EditValue = "Does the Institution Exist?";
     this.lkExistingInstitutions.Location = new System.Drawing.Point(121, 162);
     this.lkExistingInstitutions.Name = "lkExistingInstitutions";
     this.lkExistingInstitutions.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkExistingInstitutions.Properties.DisplayMember = "InstitutionName";
     this.lkExistingInstitutions.Properties.NullText = "Does the institution exist?";
     this.lkExistingInstitutions.Properties.ShowFooter = false;
     this.lkExistingInstitutions.Properties.ValueMember = "InstitutionName";
     this.lkExistingInstitutions.Properties.View = this.gridLookUpEdit1View;
     this.lkExistingInstitutions.Size = new System.Drawing.Size(214, 20);
     this.lkExistingInstitutions.StyleController = this.layoutControl1;
     this.lkExistingInstitutions.TabIndex = 23;
     this.lkExistingInstitutions.EditValueChanged += new System.EventHandler(this.lkExistingInstitutions_EditValueChanged);
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn1});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowAutoFilterRow = true;
     this.gridLookUpEdit1View.OptionsView.ShowColumnHeaders = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     this.gridLookUpEdit1View.OptionsView.ShowIndicator = false;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Name";
     this.gridColumn15.FieldName = "InstitutionName";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Type";
     this.gridColumn1.FieldName = "TypeName";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 1;
     //
     // chkIsInstitutionUsedAtFacility
     //
     this.chkIsInstitutionUsedAtFacility.Location = new System.Drawing.Point(24, 43);
     this.chkIsInstitutionUsedAtFacility.Name = "chkIsInstitutionUsedAtFacility";
     this.chkIsInstitutionUsedAtFacility.Properties.Caption = "Is Used In Facility";
     this.chkIsInstitutionUsedAtFacility.Size = new System.Drawing.Size(311, 19);
     this.chkIsInstitutionUsedAtFacility.StyleController = this.layoutControl1;
     this.chkIsInstitutionUsedAtFacility.TabIndex = 49;
     //
     // dtRegistration
     //
     this.dtRegistration.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.dtRegistration.CalendarFont = new System.Drawing.Font("Nyala", 10.75F);
     this.dtRegistration.CalendarForeColor = System.Drawing.Color.Black;
     this.dtRegistration.DayOfWeekCharacters = 2;
     this.dtRegistration.ForeColor = System.Drawing.Color.Black;
     this.dtRegistration.Location = new System.Drawing.Point(133, 409);
     this.dtRegistration.Name = "dtRegistration";
     this.dtRegistration.PopUpFontSize = 8.75F;
     this.dtRegistration.Size = new System.Drawing.Size(190, 20);
     this.dtRegistration.TabIndex = 30;
     this.dtRegistration.Value = new System.DateTime(2011, 10, 20, 0, 0, 0, 0);
     //
     // txtTinNo
     //
     this.txtTinNo.Location = new System.Drawing.Point(133, 385);
     this.txtTinNo.Name = "txtTinNo";
     this.txtTinNo.Size = new System.Drawing.Size(190, 20);
     this.txtTinNo.StyleController = this.layoutControl1;
     this.txtTinNo.TabIndex = 29;
     //
     // btnIssueSave
     //
     this.btnIssueSave.Location = new System.Drawing.Point(135, 445);
     this.btnIssueSave.Name = "btnIssueSave";
     this.btnIssueSave.Size = new System.Drawing.Size(105, 22);
     this.btnIssueSave.StyleController = this.layoutControl1;
     this.btnIssueSave.TabIndex = 25;
     this.btnIssueSave.Text = "Save";
     this.btnIssueSave.Click += new System.EventHandler(this.btnIssueSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(244, 445);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(91, 22);
     this.btnCancel.StyleController = this.layoutControl1;
     this.btnCancel.TabIndex = 26;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // txtLicenseNo
     //
     this.txtLicenseNo.Location = new System.Drawing.Point(133, 337);
     this.txtLicenseNo.Name = "txtLicenseNo";
     this.txtLicenseNo.Size = new System.Drawing.Size(190, 20);
     this.txtLicenseNo.StyleController = this.layoutControl1;
     this.txtLicenseNo.TabIndex = 27;
     //
     // txtVATNo
     //
     this.txtVATNo.Location = new System.Drawing.Point(133, 361);
     this.txtVATNo.Name = "txtVATNo";
     this.txtVATNo.Size = new System.Drawing.Size(190, 20);
     this.txtVATNo.StyleController = this.layoutControl1;
     this.txtVATNo.TabIndex = 28;
     //
     // lkRUType
     //
     this.lkRUType.Location = new System.Drawing.Point(121, 138);
     this.lkRUType.Name = "lkRUType";
     this.lkRUType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRUType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkRUType.Properties.DisplayMember = "Name";
     this.lkRUType.Properties.NullText = "";
     this.lkRUType.Properties.ShowFooter = false;
     this.lkRUType.Properties.ShowHeader = false;
     this.lkRUType.Properties.ValueMember = "ID";
     this.lkRUType.Size = new System.Drawing.Size(214, 20);
     this.lkRUType.StyleController = this.layoutControl1;
     this.lkRUType.TabIndex = 45;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.NotEquals;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.issueLocationValidation.SetValidationRule(this.lkRUType, conditionValidationRule1);
     //
     // txtPhone
     //
     this.txtPhone.Location = new System.Drawing.Point(121, 210);
     this.txtPhone.Name = "txtPhone";
     this.txtPhone.Size = new System.Drawing.Size(214, 20);
     this.txtPhone.StyleController = this.layoutControl1;
     this.txtPhone.TabIndex = 36;
     //
     // lkOwnership
     //
     this.lkOwnership.Location = new System.Drawing.Point(121, 258);
     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(214, 20);
     this.lkOwnership.StyleController = this.layoutControl1;
     this.lkOwnership.TabIndex = 44;
     this.lkOwnership.EditValueChanged += new System.EventHandler(this.lkOwnership_EditValueChanged);
     //
     // txtReceivingUnit
     //
     this.txtReceivingUnit.Enabled = false;
     this.txtReceivingUnit.Location = new System.Drawing.Point(121, 186);
     this.txtReceivingUnit.Name = "txtReceivingUnit";
     this.txtReceivingUnit.Size = new System.Drawing.Size(214, 20);
     this.txtReceivingUnit.StyleController = this.layoutControl1;
     this.txtReceivingUnit.TabIndex = 35;
     //
     // lkWoreda
     //
     this.lkWoreda.Location = new System.Drawing.Point(121, 114);
     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")});
     this.lkWoreda.Properties.DisplayMember = "WoredaName";
     this.lkWoreda.Properties.NullText = "";
     this.lkWoreda.Properties.ShowFooter = false;
     this.lkWoreda.Properties.ShowHeader = false;
     this.lkWoreda.Properties.ValueMember = "ID";
     this.lkWoreda.Size = new System.Drawing.Size(214, 20);
     this.lkWoreda.StyleController = this.layoutControl1;
     this.lkWoreda.TabIndex = 43;
     this.lkWoreda.EditValueChanged += new System.EventHandler(this.lkWoreda_EditValueChanged);
     //
     // txtDescription
     //
     this.txtDescription.Location = new System.Drawing.Point(121, 282);
     this.txtDescription.Name = "txtDescription";
     this.txtDescription.Size = new System.Drawing.Size(214, 20);
     this.txtDescription.StyleController = this.layoutControl1;
     this.txtDescription.TabIndex = 37;
     //
     // lkZone
     //
     this.lkZone.Location = new System.Drawing.Point(121, 90);
     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")});
     this.lkZone.Properties.DisplayMember = "ZoneName";
     this.lkZone.Properties.NullText = "";
     this.lkZone.Properties.ShowFooter = false;
     this.lkZone.Properties.ShowHeader = false;
     this.lkZone.Properties.ValueMember = "ID";
     this.lkZone.Size = new System.Drawing.Size(214, 20);
     this.lkZone.StyleController = this.layoutControl1;
     this.lkZone.TabIndex = 42;
     this.lkZone.EditValueChanged += new System.EventHandler(this.lkZone_EditValueChanged);
     //
     // lkRoute
     //
     this.lkRoute.Location = new System.Drawing.Point(121, 234);
     this.lkRoute.Name = "lkRoute";
     this.lkRoute.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRoute.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkRoute.Properties.DisplayMember = "Name";
     this.lkRoute.Properties.NullText = "";
     this.lkRoute.Properties.ValueMember = "RouteID";
     this.lkRoute.Size = new System.Drawing.Size(214, 20);
     this.lkRoute.StyleController = this.layoutControl1;
     this.lkRoute.TabIndex = 38;
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.NotEquals;
     conditionValidationRule2.ErrorText = "This value is not valid";
     this.issueLocationValidation.SetValidationRule(this.lkRoute, conditionValidationRule2);
     //
     // lkRegion
     //
     this.lkRegion.Location = new System.Drawing.Point(121, 66);
     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")});
     this.lkRegion.Properties.DisplayMember = "RegionName";
     this.lkRegion.Properties.NullText = "Region Name";
     this.lkRegion.Properties.ShowFooter = false;
     this.lkRegion.Properties.ShowHeader = false;
     this.lkRegion.Properties.ValueMember = "ID";
     this.lkRegion.Size = new System.Drawing.Size(214, 20);
     this.lkRegion.StyleController = this.layoutControl1;
     this.lkRegion.TabIndex = 41;
     this.lkRegion.EditValueChanged += new System.EventHandler(this.lkRegion_EditValueChanged);
     //
     // lcReceivingUnitsDetail
     //
     this.lcReceivingUnitsDetail.CustomizationFormText = "Root";
     this.lcReceivingUnitsDetail.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.lcReceivingUnitsDetail.GroupBordersVisible = false;
     this.lcReceivingUnitsDetail.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.lcHospitalSettingsDetail});
     this.lcReceivingUnitsDetail.Location = new System.Drawing.Point(0, 0);
     this.lcReceivingUnitsDetail.Name = "Root";
     this.lcReceivingUnitsDetail.Size = new System.Drawing.Size(359, 491);
     this.lcReceivingUnitsDetail.Text = "Root";
     this.lcReceivingUnitsDetail.TextVisible = false;
     //
     // lcHospitalSettingsDetail
     //
     this.lcHospitalSettingsDetail.CustomizationFormText = "Details";
     this.lcHospitalSettingsDetail.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem2,
     this.layoutControlItem4,
     this.layoutControlItem10,
     this.layoutControlItem11,
     this.groupPrivateDetail,
     this.layoutControlItem6,
     this.layoutControlItem5,
     this.emptySpaceItem3,
     this.lcIsUsedInFacility,
     this.layoutControlItem14,
     this.layoutControlItem9,
     this.layoutControlItem12,
     this.layoutControlItem13,
     this.layoutControlItem3,
     this.lcExistingInstitutions});
     this.lcHospitalSettingsDetail.Location = new System.Drawing.Point(0, 0);
     this.lcHospitalSettingsDetail.Name = "lcHospitalSettingsDetail";
     this.lcHospitalSettingsDetail.Size = new System.Drawing.Size(339, 471);
     this.lcHospitalSettingsDetail.Text = "Details";
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.txtReceivingUnit;
     this.layoutControlItem2.CustomizationFormText = "Issue Location";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 143);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem2.Text = "Name";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.txtPhone;
     this.layoutControlItem4.CustomizationFormText = "Phone";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 167);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem4.Text = "Phone";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.Control = this.lkOwnership;
     this.layoutControlItem10.CustomizationFormText = "Ownership";
     this.layoutControlItem10.Location = new System.Drawing.Point(0, 215);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem10.Text = "Ownership";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.lkRoute;
     this.layoutControlItem11.CustomizationFormText = "Route";
     this.layoutControlItem11.Location = new System.Drawing.Point(0, 191);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem11.Text = "Route";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(94, 13);
     //
     // groupPrivateDetail
     //
     this.groupPrivateDetail.CustomizationFormText = "Private Institution Details";
     this.groupPrivateDetail.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem45,
     this.lcTinNo,
     this.lcVATNo,
     this.lcLicenseNo});
     this.groupPrivateDetail.Location = new System.Drawing.Point(0, 263);
     this.groupPrivateDetail.Name = "groupPrivateDetail";
     this.groupPrivateDetail.Size = new System.Drawing.Size(315, 139);
     this.groupPrivateDetail.Text = "Private Institution Details";
     this.groupPrivateDetail.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // layoutControlItem45
     //
     this.layoutControlItem45.Control = this.dtRegistration;
     this.layoutControlItem45.CustomizationFormText = "Registration Date";
     this.layoutControlItem45.Location = new System.Drawing.Point(0, 72);
     this.layoutControlItem45.MaxSize = new System.Drawing.Size(0, 24);
     this.layoutControlItem45.MinSize = new System.Drawing.Size(192, 24);
     this.layoutControlItem45.Name = "layoutControlItem45";
     this.layoutControlItem45.Size = new System.Drawing.Size(291, 24);
     this.layoutControlItem45.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem45.Text = "Registration Date";
     this.layoutControlItem45.TextSize = new System.Drawing.Size(94, 13);
     //
     // lcTinNo
     //
     this.lcTinNo.Control = this.txtTinNo;
     this.lcTinNo.CustomizationFormText = "TIN No.";
     this.lcTinNo.Location = new System.Drawing.Point(0, 48);
     this.lcTinNo.Name = "lcTinNo";
     this.lcTinNo.Size = new System.Drawing.Size(291, 24);
     this.lcTinNo.Text = "TIN No.";
     this.lcTinNo.TextSize = new System.Drawing.Size(94, 13);
     //
     // lcVATNo
     //
     this.lcVATNo.Control = this.txtVATNo;
     this.lcVATNo.CustomizationFormText = "VAT Reg. No.";
     this.lcVATNo.Location = new System.Drawing.Point(0, 24);
     this.lcVATNo.Name = "lcVATNo";
     this.lcVATNo.Size = new System.Drawing.Size(291, 24);
     this.lcVATNo.Text = "VAT Reg. No.";
     this.lcVATNo.TextSize = new System.Drawing.Size(94, 13);
     //
     // lcLicenseNo
     //
     this.lcLicenseNo.Control = this.txtLicenseNo;
     this.lcLicenseNo.CustomizationFormText = "License No.";
     this.lcLicenseNo.Location = new System.Drawing.Point(0, 0);
     this.lcLicenseNo.Name = "lcLicenseNo";
     this.lcLicenseNo.Size = new System.Drawing.Size(291, 24);
     this.lcLicenseNo.Text = "License No.";
     this.lcLicenseNo.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnCancel;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem40";
     this.layoutControlItem6.Location = new System.Drawing.Point(220, 402);
     this.layoutControlItem6.MaxSize = new System.Drawing.Size(95, 26);
     this.layoutControlItem6.MinSize = new System.Drawing.Size(95, 26);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(95, 26);
     this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem6.Text = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.btnIssueSave;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem39";
     this.layoutControlItem5.Location = new System.Drawing.Point(111, 402);
     this.layoutControlItem5.MaxSize = new System.Drawing.Size(109, 26);
     this.layoutControlItem5.MinSize = new System.Drawing.Size(109, 26);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(109, 26);
     this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(0, 402);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(111, 26);
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // lcIsUsedInFacility
     //
     this.lcIsUsedInFacility.Control = this.chkIsInstitutionUsedAtFacility;
     this.lcIsUsedInFacility.CustomizationFormText = "layoutControlItem17";
     this.lcIsUsedInFacility.Location = new System.Drawing.Point(0, 0);
     this.lcIsUsedInFacility.Name = "lcIsUsedInFacility";
     this.lcIsUsedInFacility.Size = new System.Drawing.Size(315, 23);
     this.lcIsUsedInFacility.Text = "lcIsUsedInFacility";
     this.lcIsUsedInFacility.TextSize = new System.Drawing.Size(0, 0);
     this.lcIsUsedInFacility.TextToControlDistance = 0;
     this.lcIsUsedInFacility.TextVisible = false;
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.Control = this.lkRegion;
     this.layoutControlItem14.CustomizationFormText = "Region";
     this.layoutControlItem14.Location = new System.Drawing.Point(0, 23);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem14.Text = "Region";
     this.layoutControlItem14.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.lkZone;
     this.layoutControlItem9.CustomizationFormText = "Zone";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 47);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem9.Text = "Zone";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.Control = this.lkWoreda;
     this.layoutControlItem12.CustomizationFormText = "Woreda";
     this.layoutControlItem12.Location = new System.Drawing.Point(0, 71);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem12.Text = "Woreda";
     this.layoutControlItem12.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.Control = this.lkRUType;
     this.layoutControlItem13.CustomizationFormText = "Facility Type";
     this.layoutControlItem13.Location = new System.Drawing.Point(0, 95);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem13.Text = "Facility Type";
     this.layoutControlItem13.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.txtDescription;
     this.layoutControlItem3.CustomizationFormText = "Description";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 239);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem3.Text = "Description";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(94, 13);
     //
     // lcExistingInstitutions
     //
     this.lcExistingInstitutions.Control = this.lkExistingInstitutions;
     this.lcExistingInstitutions.CustomizationFormText = "Existing Institutions";
     this.lcExistingInstitutions.Location = new System.Drawing.Point(0, 119);
     this.lcExistingInstitutions.Name = "lcExistingInstitutions";
     this.lcExistingInstitutions.Size = new System.Drawing.Size(315, 24);
     this.lcExistingInstitutions.Text = "Existing Institutions";
     this.lcExistingInstitutions.TextSize = new System.Drawing.Size(94, 13);
     this.lcExistingInstitutions.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // groupPrivateDetails
     //
     this.groupPrivateDetails.CustomizationFormText = "Private Institution Details";
     this.groupPrivateDetails.Location = new System.Drawing.Point(0, 316);
     this.groupPrivateDetails.Name = "groupPrivateDetails";
     this.groupPrivateDetails.OptionsItemText.TextToControlDistance = 5;
     this.groupPrivateDetails.Size = new System.Drawing.Size(325, 140);
     this.groupPrivateDetails.Text = "Private Institution Details";
     this.groupPrivateDetails.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // layoutControlItem50
     //
     this.layoutControlItem50.CustomizationFormText = "Cash/Credit";
     this.layoutControlItem50.Location = new System.Drawing.Point(0, 292);
     this.layoutControlItem50.Name = "layoutControlItem50";
     this.layoutControlItem50.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem50.Text = "Cash/Credit";
     this.layoutControlItem50.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem50.TextToControlDistance = 5;
     //
     // layoutControlItem42
     //
     this.layoutControlItem42.CustomizationFormText = "Ownership";
     this.layoutControlItem42.Location = new System.Drawing.Point(0, 268);
     this.layoutControlItem42.Name = "layoutControlItem42";
     this.layoutControlItem42.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem42.Text = "Ownership";
     this.layoutControlItem42.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem42.TextToControlDistance = 5;
     //
     // layoutControlItem48
     //
     this.layoutControlItem48.CustomizationFormText = "Facility Type";
     this.layoutControlItem48.Location = new System.Drawing.Point(0, 244);
     this.layoutControlItem48.Name = "layoutControlItem48";
     this.layoutControlItem48.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem48.Text = "Facility Type";
     this.layoutControlItem48.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem48.TextToControlDistance = 5;
     //
     // layoutControlItem44
     //
     this.layoutControlItem44.CustomizationFormText = "Kebele";
     this.layoutControlItem44.Location = new System.Drawing.Point(0, 220);
     this.layoutControlItem44.Name = "layoutControlItem44";
     this.layoutControlItem44.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem44.Text = "Kebele";
     this.layoutControlItem44.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem44.TextToControlDistance = 5;
     //
     // layoutControlItem43
     //
     this.layoutControlItem43.CustomizationFormText = "Town";
     this.layoutControlItem43.Location = new System.Drawing.Point(0, 196);
     this.layoutControlItem43.Name = "layoutControlItem43";
     this.layoutControlItem43.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem43.Text = "Town";
     this.layoutControlItem43.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem43.TextToControlDistance = 5;
     //
     // lcWoreda
     //
     this.lcWoreda.CustomizationFormText = "Woreda";
     this.lcWoreda.Location = new System.Drawing.Point(0, 172);
     this.lcWoreda.Name = "lcWoreda";
     this.lcWoreda.Size = new System.Drawing.Size(325, 24);
     this.lcWoreda.Text = "Woreda";
     this.lcWoreda.TextSize = new System.Drawing.Size(84, 13);
     this.lcWoreda.TextToControlDistance = 5;
     //
     // layoutControlItem47
     //
     this.layoutControlItem47.CustomizationFormText = "Zone";
     this.layoutControlItem47.Location = new System.Drawing.Point(0, 148);
     this.layoutControlItem47.Name = "layoutControlItem47";
     this.layoutControlItem47.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem47.Text = "Zone";
     this.layoutControlItem47.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem47.TextToControlDistance = 5;
     //
     // layoutControlItem46
     //
     this.layoutControlItem46.CustomizationFormText = "Region";
     this.layoutControlItem46.Location = new System.Drawing.Point(0, 124);
     this.layoutControlItem46.Name = "layoutControlItem46";
     this.layoutControlItem46.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem46.Text = "Region";
     this.layoutControlItem46.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem46.TextToControlDistance = 5;
     //
     // layoutControlItem38
     //
     this.layoutControlItem38.CustomizationFormText = "Route";
     this.layoutControlItem38.Location = new System.Drawing.Point(0, 100);
     this.layoutControlItem38.Name = "layoutControlItem38";
     this.layoutControlItem38.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem38.Text = "Route";
     this.layoutControlItem38.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem38.TextToControlDistance = 5;
     //
     // layoutControlItem37
     //
     this.layoutControlItem37.CustomizationFormText = "Description";
     this.layoutControlItem37.Location = new System.Drawing.Point(0, 76);
     this.layoutControlItem37.Name = "layoutControlItem37";
     this.layoutControlItem37.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem37.Text = "Description";
     this.layoutControlItem37.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem37.TextToControlDistance = 5;
     //
     // layoutControlItem36
     //
     this.layoutControlItem36.CustomizationFormText = "Phone";
     this.layoutControlItem36.Location = new System.Drawing.Point(0, 52);
     this.layoutControlItem36.Name = "layoutControlItem36";
     this.layoutControlItem36.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem36.Text = "Phone";
     this.layoutControlItem36.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem36.TextToControlDistance = 5;
     //
     // layoutControlItem35
     //
     this.layoutControlItem35.CustomizationFormText = "Issue Location";
     this.layoutControlItem35.Location = new System.Drawing.Point(0, 28);
     this.layoutControlItem35.Name = "layoutControlItem35";
     this.layoutControlItem35.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem35.Text = "Issue Location";
     this.layoutControlItem35.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem35.TextToControlDistance = 5;
     //
     // emptySpaceItem19
     //
     this.emptySpaceItem19.AllowHotTrack = false;
     this.emptySpaceItem19.CustomizationFormText = "emptySpaceItem19";
     this.emptySpaceItem19.Location = new System.Drawing.Point(0, 456);
     this.emptySpaceItem19.Name = "emptySpaceItem19";
     this.emptySpaceItem19.Size = new System.Drawing.Size(121, 26);
     this.emptySpaceItem19.Text = "emptySpaceItem19";
     this.emptySpaceItem19.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem40
     //
     this.layoutControlItem40.CustomizationFormText = "layoutControlItem40";
     this.layoutControlItem40.Location = new System.Drawing.Point(230, 456);
     this.layoutControlItem40.MaxSize = new System.Drawing.Size(95, 26);
     this.layoutControlItem40.MinSize = new System.Drawing.Size(95, 26);
     this.layoutControlItem40.Name = "layoutControlItem40";
     this.layoutControlItem40.Size = new System.Drawing.Size(95, 26);
     this.layoutControlItem40.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem40.Text = "layoutControlItem40";
     this.layoutControlItem40.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem40.TextToControlDistance = 0;
     this.layoutControlItem40.TextVisible = false;
     //
     // layoutControlItem39
     //
     this.layoutControlItem39.CustomizationFormText = "layoutControlItem39";
     this.layoutControlItem39.Location = new System.Drawing.Point(121, 456);
     this.layoutControlItem39.MaxSize = new System.Drawing.Size(109, 26);
     this.layoutControlItem39.MinSize = new System.Drawing.Size(109, 26);
     this.layoutControlItem39.Name = "layoutControlItem39";
     this.layoutControlItem39.Size = new System.Drawing.Size(109, 26);
     this.layoutControlItem39.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem39.Text = "layoutControlItem39";
     this.layoutControlItem39.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem39.TextToControlDistance = 0;
     this.layoutControlItem39.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.CustomizationFormText = "Issue Location";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 28);
     this.layoutControlItem1.Name = "layoutControlItem35";
     this.layoutControlItem1.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem1.Text = "Issue Location";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem1.TextToControlDistance = 5;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(0, 0);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(0, 0);
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // ReceivingUnitsDetails
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(359, 491);
     this.Controls.Add(this.layoutControl1);
     this.Name = "ReceivingUnitsDetails";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Institution Detail";
     this.Load += new System.EventHandler(this.ReceivingUnitsDetails_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkExistingInstitutions.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkIsInstitutionUsedAtFacility.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTinNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLicenseNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVATNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRUType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkOwnership.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceivingUnit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkWoreda.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkZone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRoute.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRegion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcReceivingUnitsDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcHospitalSettingsDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPrivateDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem45)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcTinNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcVATNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcLicenseNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcIsUsedInFacility)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcExistingInstitutions)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPrivateDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem50)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem42)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem48)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem44)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem43)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcWoreda)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem47)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem46)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.issueLocationValidation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.vQry66BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsQueries1 = new RetirementCenter.DataSources.dsQueries();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colvisanumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsummony = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCurrency = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAction = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatNId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicateId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitteId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsendbankdate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanatmony = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanatwareddate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coluserin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colActivate = 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.repositoryItemDateEditMDY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.panelControlMain = new DevExpress.XtraEditors.PanelControl();
     this.LUETBLDofatSarf = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSTBLDofatSarf = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDofatSarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.btnSaveBackData = new DevExpress.XtraEditors.SimpleButton();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.vQry66TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.vQry66TableAdapter();
     this.colDofatSarfId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarf1 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vQry66BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries1)).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.repositoryItemDateEditMDY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditMDY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMain)).BeginInit();
     this.panelControlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUETBLDofatSarf.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLDofatSarf)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlData.DataSource = this.vQry66BindingSource;
     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, 69);
     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.repositoryItemDateEditMDY});
     this.gridControlData.Size = new System.Drawing.Size(1353, 388);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // vQry66BindingSource
     //
     this.vQry66BindingSource.DataMember = "vQry66";
     this.vQry66BindingSource.DataSource = this.dsQueries1;
     //
     // dsQueries1
     //
     this.dsQueries1.DataSetName = "dsQueries";
     this.dsQueries1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMMashatId,
     this.colvisanumber,
     this.gridColumn2,
     this.colsummony,
     this.colCurrency,
     this.colAction,
     this.colMMashatName,
     this.colMMashatNId,
     this.gridColumn1,
     this.colSyndicateId,
     this.colSubCommitteId,
     this.colsendbankdate,
     this.colamanatmony,
     this.colamanatwareddate,
     this.coldatein,
     this.coluserin,
     this.colsarfnumber,
     this.colSyndicate,
     this.colSubCommitte,
     this.colMMashatName1,
     this.colActivate,
     this.colDofatSarfId,
     this.colDofatSarf1});
     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;
     //
     // 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 = "Customer ID";
     this.colMMashatId.FieldName = "newid";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 0;
     this.colMMashatId.Width = 79;
     //
     // colvisanumber
     //
     this.colvisanumber.AppearanceCell.Options.UseTextOptions = true;
     this.colvisanumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colvisanumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colvisanumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colvisanumber.Caption = "PAN";
     this.colvisanumber.FieldName = "visanumber";
     this.colvisanumber.Name = "colvisanumber";
     this.colvisanumber.Visible = true;
     this.colvisanumber.VisibleIndex = 1;
     //
     // 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 = "Account Number";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 2;
     this.gridColumn2.Width = 98;
     //
     // colsummony
     //
     this.colsummony.AppearanceCell.Options.UseTextOptions = true;
     this.colsummony.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsummony.AppearanceHeader.Options.UseTextOptions = true;
     this.colsummony.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsummony.Caption = "Amount";
     this.colsummony.FieldName = "summony";
     this.colsummony.Name = "colsummony";
     this.colsummony.Visible = true;
     this.colsummony.VisibleIndex = 3;
     //
     // colCurrency
     //
     this.colCurrency.AppearanceCell.Options.UseTextOptions = true;
     this.colCurrency.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCurrency.AppearanceHeader.Options.UseTextOptions = true;
     this.colCurrency.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCurrency.FieldName = "Currency";
     this.colCurrency.Name = "colCurrency";
     this.colCurrency.Visible = true;
     this.colCurrency.VisibleIndex = 4;
     //
     // colAction
     //
     this.colAction.AppearanceCell.Options.UseTextOptions = true;
     this.colAction.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAction.AppearanceHeader.Options.UseTextOptions = true;
     this.colAction.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAction.FieldName = "Action";
     this.colAction.Name = "colAction";
     this.colAction.Visible = true;
     this.colAction.VisibleIndex = 5;
     //
     // 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 = "Customer Name";
     this.colMMashatName.Name = "colMMashatName";
     this.colMMashatName.Visible = true;
     this.colMMashatName.VisibleIndex = 6;
     this.colMMashatName.Width = 95;
     //
     // 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 = "National ID";
     this.colMMashatNId.Name = "colMMashatNId";
     this.colMMashatNId.Visible = true;
     this.colMMashatNId.VisibleIndex = 7;
     //
     // 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 = "Description";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 8;
     //
     // 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.FieldName = "SyndicateId";
     this.colSyndicateId.Name = "colSyndicateId";
     this.colSyndicateId.Visible = true;
     this.colSyndicateId.VisibleIndex = 9;
     this.colSyndicateId.Width = 79;
     //
     // 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.FieldName = "SubCommitteId";
     this.colSubCommitteId.Name = "colSubCommitteId";
     this.colSubCommitteId.Visible = true;
     this.colSubCommitteId.VisibleIndex = 10;
     this.colSubCommitteId.Width = 98;
     //
     // colsendbankdate
     //
     this.colsendbankdate.AppearanceCell.Options.UseTextOptions = true;
     this.colsendbankdate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsendbankdate.AppearanceHeader.Options.UseTextOptions = true;
     this.colsendbankdate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsendbankdate.FieldName = "sendbankdate";
     this.colsendbankdate.Name = "colsendbankdate";
     this.colsendbankdate.Visible = true;
     this.colsendbankdate.VisibleIndex = 11;
     this.colsendbankdate.Width = 87;
     //
     // 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.FieldName = "amanatmony";
     this.colamanatmony.Name = "colamanatmony";
     this.colamanatmony.Visible = true;
     this.colamanatmony.VisibleIndex = 12;
     this.colamanatmony.Width = 81;
     //
     // colamanatwareddate
     //
     this.colamanatwareddate.AppearanceCell.Options.UseTextOptions = true;
     this.colamanatwareddate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatwareddate.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanatwareddate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatwareddate.FieldName = "amanatwareddate";
     this.colamanatwareddate.Name = "colamanatwareddate";
     this.colamanatwareddate.Visible = true;
     this.colamanatwareddate.VisibleIndex = 13;
     this.colamanatwareddate.Width = 107;
     //
     // 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.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 14;
     //
     // 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.FieldName = "userin";
     this.coluserin.Name = "coluserin";
     this.coluserin.Visible = true;
     this.coluserin.VisibleIndex = 15;
     //
     // 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.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 16;
     //
     // 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.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 17;
     //
     // 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.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 18;
     this.colSubCommitte.Width = 85;
     //
     // colMMashatName1
     //
     this.colMMashatName1.FieldName = "MMashatName";
     this.colMMashatName1.Name = "colMMashatName1";
     this.colMMashatName1.Visible = true;
     this.colMMashatName1.VisibleIndex = 19;
     //
     // colActivate
     //
     this.colActivate.AppearanceCell.Options.UseTextOptions = true;
     this.colActivate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colActivate.AppearanceHeader.Options.UseTextOptions = true;
     this.colActivate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colActivate.Caption = "Activate";
     this.colActivate.FieldName = "Activate";
     this.colActivate.Name = "colActivate";
     this.colActivate.Visible = true;
     this.colActivate.VisibleIndex = 20;
     //
     // 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";
     //
     // repositoryItemDateEditMDY
     //
     this.repositoryItemDateEditMDY.AutoHeight = false;
     this.repositoryItemDateEditMDY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditMDY.DisplayFormat.FormatString = "MM/dd/yyyy";
     this.repositoryItemDateEditMDY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditMDY.EditFormat.FormatString = "MM/dd/yyyy";
     this.repositoryItemDateEditMDY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditMDY.Mask.EditMask = "MM/dd/yyyy";
     this.repositoryItemDateEditMDY.Name = "repositoryItemDateEditMDY";
     this.repositoryItemDateEditMDY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // panelControlMain
     //
     this.panelControlMain.Controls.Add(this.LUETBLDofatSarf);
     this.panelControlMain.Controls.Add(this.labelControl7);
     this.panelControlMain.Controls.Add(this.btnSaveBackData);
     this.panelControlMain.Controls.Add(this.btnPrintExport);
     this.panelControlMain.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControlMain.Location = new System.Drawing.Point(0, 0);
     this.panelControlMain.Name = "panelControlMain";
     this.panelControlMain.Size = new System.Drawing.Size(1353, 63);
     this.panelControlMain.TabIndex = 3;
     //
     // LUETBLDofatSarf
     //
     this.LUETBLDofatSarf.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.LUETBLDofatSarf.Location = new System.Drawing.Point(1070, 20);
     this.LUETBLDofatSarf.Name = "LUETBLDofatSarf";
     this.LUETBLDofatSarf.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.LUETBLDofatSarf.Properties.Appearance.Options.UseFont = true;
     this.LUETBLDofatSarf.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUETBLDofatSarf.Properties.DataSource = this.LSMSTBLDofatSarf;
     this.LUETBLDofatSarf.Properties.DisplayMember = "DofatSarf";
     this.LUETBLDofatSarf.Properties.NullText = "";
     this.LUETBLDofatSarf.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUETBLDofatSarf.Properties.ValueMember = "DofatSarfId";
     this.LUETBLDofatSarf.Properties.View = this.gridLookUpEdit1View;
     this.LUETBLDofatSarf.Size = new System.Drawing.Size(236, 22);
     this.LUETBLDofatSarf.TabIndex = 2;
     this.LUETBLDofatSarf.EditValueChanged += new System.EventHandler(this.LUETBLDofatSarf_EditValueChanged);
     //
     // LSMSTBLDofatSarf
     //
     this.LSMSTBLDofatSarf.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLDofatSarf);
     this.LSMSTBLDofatSarf.KeyExpression = "[DofatSarfId]";
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDofatSarf});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colDofatSarf
     //
     this.colDofatSarf.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.Caption = "اسم الدفعة";
     this.colDofatSarf.FieldName = "DofatSarf";
     this.colDofatSarf.Name = "colDofatSarf";
     this.colDofatSarf.Visible = true;
     this.colDofatSarf.VisibleIndex = 0;
     //
     // labelControl7
     //
     this.labelControl7.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelControl7.Location = new System.Drawing.Point(1312, 23);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(29, 13);
     this.labelControl7.TabIndex = 3;
     this.labelControl7.Text = "الدفعة";
     //
     // btnSaveBackData
     //
     this.btnSaveBackData.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnSaveBackData.Image = global::RetirementCenter.Properties.Resources.save_16x16;
     this.btnSaveBackData.Location = new System.Drawing.Point(12, 34);
     this.btnSaveBackData.Name = "btnSaveBackData";
     this.btnSaveBackData.Size = new System.Drawing.Size(134, 23);
     this.btnSaveBackData.TabIndex = 0;
     this.btnSaveBackData.Text = "حفظ بيانات البنك";
     this.btnSaveBackData.Click += new System.EventHandler(this.btnSaveBackData_Click);
     //
     // btnPrintExport
     //
     this.btnPrintExport.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnPrintExport.Location = new System.Drawing.Point(12, 5);
     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);
     //
     // vQry66TableAdapter
     //
     this.vQry66TableAdapter.ClearBeforeFill = true;
     //
     // 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 = "DofatSarfId";
     this.colDofatSarfId.FieldName = "DofatSarfId";
     this.colDofatSarfId.Name = "colDofatSarfId";
     this.colDofatSarfId.Visible = true;
     this.colDofatSarfId.VisibleIndex = 21;
     //
     // colDofatSarf1
     //
     this.colDofatSarf1.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarf1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf1.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarf1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf1.Caption = "DofatSarf";
     this.colDofatSarf1.FieldName = "DofatSarf";
     this.colDofatSarf1.Name = "colDofatSarf1";
     this.colDofatSarf1.Visible = true;
     this.colDofatSarf1.VisibleIndex = 22;
     //
     // Qry66Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1353, 462);
     this.Controls.Add(this.panelControlMain);
     this.Controls.Add(this.gridControlData);
     this.Name = "Qry66Frm";
     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.vQry66BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries1)).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.repositoryItemDateEditMDY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditMDY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMain)).EndInit();
     this.panelControlMain.ResumeLayout(false);
     this.panelControlMain.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUETBLDofatSarf.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLDofatSarf)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.vQry34BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPersonId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonNID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colWarasaType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmonymonth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colrsmmonth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coleshtrakmonth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colestktaa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.calcTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colresponsiblesarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.tbnSearch = new DevExpress.XtraEditors.SimpleButton();
     this.lueSyndicateId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.cDSyndicateBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.lueDofatSarfId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.tBLDofatSarfBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.tBLDofatSarfTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.TBLDofatSarfTableAdapter();
     this.colDofatSarf1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.vQry34TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.vQry34TableAdapter();
     this.cDSyndicateTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.CDSyndicateTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vQry34BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueSyndicateId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDSyndicateBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDofatSarfId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLDofatSarfBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlData.DataSource = this.vQry34BindingSource;
     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, 98);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1});
     this.gridControlData.Size = new System.Drawing.Size(734, 359);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // vQry34BindingSource
     //
     this.vQry34BindingSource.DataMember = "vQry34";
     this.vQry34BindingSource.DataSource = this.dsQueries;
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colPersonId,
     this.colpersonName,
     this.colMMashatId,
     this.colMMashatName,
     this.colsarfnumber,
     this.colpersonNID,
     this.colWarasaType,
     this.colmonymonth,
     this.colrsmmonth,
     this.coleshtrakmonth,
     this.colestktaa,
     this.calcTotal,
     this.colresponsiblesarf});
     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;
     //
     // 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 = 0;
     //
     // colpersonName
     //
     this.colpersonName.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.Caption = "اسم الوريث";
     this.colpersonName.FieldName = "personName";
     this.colpersonName.Name = "colpersonName";
     this.colpersonName.Visible = true;
     this.colpersonName.VisibleIndex = 1;
     //
     // 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 = 2;
     //
     // 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 = 3;
     //
     // 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 = 5;
     //
     // colpersonNID
     //
     this.colpersonNID.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonNID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonNID.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonNID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonNID.Caption = "الرقم القومي";
     this.colpersonNID.FieldName = "personNID";
     this.colpersonNID.Name = "colpersonNID";
     this.colpersonNID.Visible = true;
     this.colpersonNID.VisibleIndex = 6;
     this.colpersonNID.Width = 90;
     //
     // colWarasaType
     //
     this.colWarasaType.AppearanceCell.Options.UseTextOptions = true;
     this.colWarasaType.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWarasaType.AppearanceHeader.Options.UseTextOptions = true;
     this.colWarasaType.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWarasaType.Caption = "نوع الوريث";
     this.colWarasaType.FieldName = "WarasaType";
     this.colWarasaType.Name = "colWarasaType";
     this.colWarasaType.Visible = true;
     this.colWarasaType.VisibleIndex = 4;
     //
     // colmonymonth
     //
     this.colmonymonth.AppearanceCell.Options.UseTextOptions = true;
     this.colmonymonth.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmonymonth.AppearanceHeader.Options.UseTextOptions = true;
     this.colmonymonth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmonymonth.Caption = "مبلغ";
     this.colmonymonth.FieldName = "monymonth";
     this.colmonymonth.Name = "colmonymonth";
     this.colmonymonth.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "monymonth", "{0:0.##}")});
     this.colmonymonth.Visible = true;
     this.colmonymonth.VisibleIndex = 7;
     //
     // colrsmmonth
     //
     this.colrsmmonth.AppearanceCell.Options.UseTextOptions = true;
     this.colrsmmonth.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colrsmmonth.AppearanceHeader.Options.UseTextOptions = true;
     this.colrsmmonth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colrsmmonth.Caption = "رسم";
     this.colrsmmonth.FieldName = "rsmmonth";
     this.colrsmmonth.Name = "colrsmmonth";
     this.colrsmmonth.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "rsmmonth", "{0:0.##}")});
     this.colrsmmonth.Visible = true;
     this.colrsmmonth.VisibleIndex = 8;
     //
     // coleshtrakmonth
     //
     this.coleshtrakmonth.AppearanceCell.Options.UseTextOptions = true;
     this.coleshtrakmonth.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coleshtrakmonth.AppearanceHeader.Options.UseTextOptions = true;
     this.coleshtrakmonth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coleshtrakmonth.Caption = "اشتراك شهري";
     this.coleshtrakmonth.FieldName = "eshtrakmonth";
     this.coleshtrakmonth.Name = "coleshtrakmonth";
     this.coleshtrakmonth.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "eshtrakmonth", "{0:0.##}")});
     this.coleshtrakmonth.Visible = true;
     this.coleshtrakmonth.VisibleIndex = 9;
     this.coleshtrakmonth.Width = 88;
     //
     // 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.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "estktaa", "{0:0.##}")});
     this.colestktaa.Visible = true;
     this.colestktaa.VisibleIndex = 10;
     //
     // calcTotal
     //
     this.calcTotal.AppearanceCell.Options.UseTextOptions = true;
     this.calcTotal.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.calcTotal.AppearanceHeader.Options.UseTextOptions = true;
     this.calcTotal.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.calcTotal.Caption = "صافي";
     this.calcTotal.FieldName = "calcTotal";
     this.calcTotal.Name = "calcTotal";
     this.calcTotal.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "calcTotal", "{0:0.##}")});
     this.calcTotal.UnboundExpression = "[monymonth] - [rsmmonth] - [eshtrakmonth] - [estktaa] \r\n* \r\n1.0";
     this.calcTotal.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     this.calcTotal.Visible = true;
     this.calcTotal.VisibleIndex = 11;
     //
     // colresponsiblesarf
     //
     this.colresponsiblesarf.AppearanceCell.Options.UseTextOptions = true;
     this.colresponsiblesarf.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colresponsiblesarf.AppearanceHeader.Options.UseTextOptions = true;
     this.colresponsiblesarf.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colresponsiblesarf.Caption = "مسئول صرف";
     this.colresponsiblesarf.ColumnEdit = this.repositoryItemCheckEdit1;
     this.colresponsiblesarf.FieldName = "responsiblesarf";
     this.colresponsiblesarf.Name = "colresponsiblesarf";
     this.colresponsiblesarf.Visible = true;
     this.colresponsiblesarf.VisibleIndex = 12;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.tbnSearch);
     this.panelControl1.Controls.Add(this.lueSyndicateId);
     this.panelControl1.Controls.Add(this.labelControl2);
     this.panelControl1.Controls.Add(this.lueDofatSarfId);
     this.panelControl1.Controls.Add(this.labelControl1);
     this.panelControl1.Controls.Add(this.btnPrintExport);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(734, 92);
     this.panelControl1.TabIndex = 0;
     //
     // tbnSearch
     //
     this.tbnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.tbnSearch.Location = new System.Drawing.Point(569, 61);
     this.tbnSearch.Name = "tbnSearch";
     this.tbnSearch.Size = new System.Drawing.Size(120, 23);
     this.tbnSearch.TabIndex = 2;
     this.tbnSearch.Text = "بحث";
     this.tbnSearch.Click += new System.EventHandler(this.tbnSearch_Click);
     //
     // lueSyndicateId
     //
     this.lueSyndicateId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lueSyndicateId.Location = new System.Drawing.Point(489, 35);
     this.lueSyndicateId.Name = "lueSyndicateId";
     this.lueSyndicateId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueSyndicateId.Properties.DataSource = this.cDSyndicateBindingSource;
     this.lueSyndicateId.Properties.DisplayMember = "Syndicate";
     this.lueSyndicateId.Properties.NullText = "";
     this.lueSyndicateId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueSyndicateId.Properties.ValueMember = "SyndicateId";
     this.lueSyndicateId.Properties.View = this.gridView1;
     this.lueSyndicateId.Size = new System.Drawing.Size(200, 20);
     this.lueSyndicateId.TabIndex = 1;
     //
     // cDSyndicateBindingSource
     //
     this.cDSyndicateBindingSource.DataMember = "CDSyndicate";
     this.cDSyndicateBindingSource.DataSource = this.dsQueries;
     //
     // gridView1
     //
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // labelControl2
     //
     this.labelControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl2.Location = new System.Drawing.Point(695, 38);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(34, 13);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "الفرعية";
     //
     // lueDofatSarfId
     //
     this.lueDofatSarfId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lueDofatSarfId.Location = new System.Drawing.Point(489, 9);
     this.lueDofatSarfId.Name = "lueDofatSarfId";
     this.lueDofatSarfId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueDofatSarfId.Properties.DataSource = this.tBLDofatSarfBindingSource;
     this.lueDofatSarfId.Properties.DisplayMember = "DofatSarf";
     this.lueDofatSarfId.Properties.NullText = "";
     this.lueDofatSarfId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueDofatSarfId.Properties.ValueMember = "DofatSarfId";
     this.lueDofatSarfId.Properties.View = this.gridLookUpEdit1View;
     this.lueDofatSarfId.Size = new System.Drawing.Size(200, 20);
     this.lueDofatSarfId.TabIndex = 0;
     //
     // tBLDofatSarfBindingSource
     //
     this.tBLDofatSarfBindingSource.DataMember = "TBLDofatSarf";
     this.tBLDofatSarfBindingSource.DataSource = this.dsQueries;
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl1.Location = new System.Drawing.Point(700, 12);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(29, 13);
     this.labelControl1.TabIndex = 1;
     this.labelControl1.Text = "الدفعة";
     //
     // btnPrintExport
     //
     this.btnPrintExport.Location = new System.Drawing.Point(12, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 3;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // tBLDofatSarfTableAdapter
     //
     this.tBLDofatSarfTableAdapter.ClearBeforeFill = true;
     //
     // colDofatSarf1
     //
     this.colDofatSarf1.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarf1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf1.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarf1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf1.Caption = "أسم الدفعة";
     this.colDofatSarf1.FieldName = "DofatSarf";
     this.colDofatSarf1.Name = "colDofatSarf1";
     this.colDofatSarf1.Visible = true;
     this.colDofatSarf1.VisibleIndex = 0;
     //
     // colSubCommitte1
     //
     this.colSubCommitte1.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte1.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte1.Caption = "اسم اللجنة";
     this.colSubCommitte1.FieldName = "SubCommitte";
     this.colSubCommitte1.Name = "colSubCommitte1";
     this.colSubCommitte1.Visible = true;
     this.colSubCommitte1.VisibleIndex = 0;
     //
     // vQry34TableAdapter
     //
     this.vQry34TableAdapter.ClearBeforeFill = true;
     //
     // cDSyndicateTableAdapter
     //
     this.cDSyndicateTableAdapter.ClearBeforeFill = true;
     //
     // Qry34Frm
     //
     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 = "Qry34Frm";
     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.vQry34BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueSyndicateId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDSyndicateBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDofatSarfId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLDofatSarfBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtpGeneral = new DevExpress.XtraTab.XtraTabPage();
     this.lueamanattypeid = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMScd_amanattype = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colamanattype = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.lueDofatSarfId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSDofatSarfId = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.cesarfcheek = new DevExpress.XtraEditors.CheckEdit();
     this.ceamantvisa = new DevExpress.XtraEditors.CheckEdit();
     this.luePersonId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSTBLWarasa = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = 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.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lueDofatSarfAId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.cdDofaatAmanatBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsRetirementCenter = new RetirementCenter.DataSources.dsRetirementCenter();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tbamanatrem = new DevExpress.XtraEditors.MemoEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.tbsefa = new DevExpress.XtraEditors.TextEdit();
     this.tbmostahek = new DevExpress.XtraEditors.TextEdit();
     this.tbestktaa = new DevExpress.XtraEditors.TextEdit();
     this.tbamanatmony = new DevExpress.XtraEditors.TextEdit();
     this.colMonthName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colYearName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMonthName1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cdDofaatAmanatTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.CdDofaatAmanatTableAdapter();
     this.sessionvtblWarasabank2 = new DevExpress.Xpo.Session(this.components);
     this.XPCvtblWarasabank2 = new DevExpress.Xpo.XPCollection(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtpGeneral.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueamanattypeid.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMScd_amanattype)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDofatSarfId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDofatSarfId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cesarfcheek.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceamantvisa.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luePersonId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLWarasa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDofatSarfAId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cdDofaatAmanatBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbamanatrem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbsefa.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbmostahek.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbestktaa.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbamanatmony.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionvtblWarasabank2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPCvtblWarasabank2)).BeginInit();
     this.SuspendLayout();
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl2.Location = new System.Drawing.Point(419, 59);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(41, 19);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "الاسم";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl4.Location = new System.Drawing.Point(412, 284);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(50, 19);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "ملاحظة";
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.panelControl1.Controls.Add(this.btnClose);
     this.panelControl1.Location = new System.Drawing.Point(10, 614);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(520, 44);
     this.panelControl1.TabIndex = 1;
     //
     // btnClose
     //
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Image = global::RetirementCenter.Properties.Resources.Delete;
     this.btnClose.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleRight;
     this.btnClose.Location = new System.Drawing.Point(7, 7);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(90, 30);
     this.btnClose.TabIndex = 11;
     this.btnClose.Text = "اغلاق";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnSave
     //
     this.btnSave.Image = global::RetirementCenter.Properties.Resources.Save;
     this.btnSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleRight;
     this.btnSave.Location = new System.Drawing.Point(312, 502);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(150, 30);
     this.btnSave.TabIndex = 10;
     this.btnSave.Text = "حفـــــــــــــــــــــــــظ";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(5, 12);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.xtraTabControl1.SelectedTabPage = this.xtpGeneral;
     this.xtraTabControl1.Size = new System.Drawing.Size(525, 596);
     this.xtraTabControl1.TabIndex = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtpGeneral});
     //
     // xtpGeneral
     //
     this.xtpGeneral.Controls.Add(this.lueamanattypeid);
     this.xtpGeneral.Controls.Add(this.labelControl9);
     this.xtpGeneral.Controls.Add(this.lueDofatSarfId);
     this.xtpGeneral.Controls.Add(this.labelControl8);
     this.xtpGeneral.Controls.Add(this.cesarfcheek);
     this.xtpGeneral.Controls.Add(this.ceamantvisa);
     this.xtpGeneral.Controls.Add(this.btnSave);
     this.xtpGeneral.Controls.Add(this.luePersonId);
     this.xtpGeneral.Controls.Add(this.lueDofatSarfAId);
     this.xtpGeneral.Controls.Add(this.tbamanatrem);
     this.xtpGeneral.Controls.Add(this.labelControl6);
     this.xtpGeneral.Controls.Add(this.labelControl2);
     this.xtpGeneral.Controls.Add(this.labelControl7);
     this.xtpGeneral.Controls.Add(this.labelControl5);
     this.xtpGeneral.Controls.Add(this.labelControl3);
     this.xtpGeneral.Controls.Add(this.labelControl1);
     this.xtpGeneral.Controls.Add(this.labelControl4);
     this.xtpGeneral.Controls.Add(this.tbsefa);
     this.xtpGeneral.Controls.Add(this.tbmostahek);
     this.xtpGeneral.Controls.Add(this.tbestktaa);
     this.xtpGeneral.Controls.Add(this.tbamanatmony);
     this.xtpGeneral.Image = global::RetirementCenter.Properties.Resources.Edit;
     this.xtpGeneral.Name = "xtpGeneral";
     this.xtpGeneral.Size = new System.Drawing.Size(519, 549);
     this.xtpGeneral.Text = "بيانات أساسيه";
     //
     // lueamanattypeid
     //
     this.lueamanattypeid.EditValue = "";
     this.lueamanattypeid.Location = new System.Drawing.Point(53, 424);
     this.lueamanattypeid.Name = "lueamanattypeid";
     this.lueamanattypeid.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.lueamanattypeid.Properties.Appearance.Options.UseFont = true;
     this.lueamanattypeid.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueamanattypeid.Properties.DataSource = this.LSMScd_amanattype;
     this.lueamanattypeid.Properties.DisplayMember = "amanattype";
     this.lueamanattypeid.Properties.NullText = "";
     this.lueamanattypeid.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueamanattypeid.Properties.ValueMember = "amanattypeid";
     this.lueamanattypeid.Properties.View = this.gridView3;
     this.lueamanattypeid.Size = new System.Drawing.Size(233, 26);
     this.lueamanattypeid.TabIndex = 8;
     //
     // LSMScd_amanattype
     //
     this.LSMScd_amanattype.ElementType = typeof(RetirementCenter.DataSources.Linq.cd_amanattype);
     this.LSMScd_amanattype.KeyExpression = "[amanattypeid]";
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colamanattype});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // colamanattype
     //
     this.colamanattype.Caption = "الاسم";
     this.colamanattype.FieldName = "amanattype";
     this.colamanattype.Name = "colamanattype";
     this.colamanattype.Visible = true;
     this.colamanattype.VisibleIndex = 0;
     //
     // labelControl9
     //
     this.labelControl9.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl9.Location = new System.Drawing.Point(385, 427);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(75, 19);
     this.labelControl9.TabIndex = 10;
     this.labelControl9.Text = "نوع الامانات";
     //
     // lueDofatSarfId
     //
     this.lueDofatSarfId.EditValue = "";
     this.lueDofatSarfId.Location = new System.Drawing.Point(53, 382);
     this.lueDofatSarfId.Name = "lueDofatSarfId";
     this.lueDofatSarfId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.lueDofatSarfId.Properties.Appearance.Options.UseFont = true;
     this.lueDofatSarfId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueDofatSarfId.Properties.DataSource = this.LSMSDofatSarfId;
     this.lueDofatSarfId.Properties.DisplayMember = "DofatSarfA";
     this.lueDofatSarfId.Properties.NullText = "";
     this.lueDofatSarfId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueDofatSarfId.Properties.ValueMember = "DofatSarfAId";
     this.lueDofatSarfId.Properties.View = this.gridView2;
     this.lueDofatSarfId.Size = new System.Drawing.Size(233, 26);
     this.lueDofatSarfId.TabIndex = 8;
     //
     // LSMSDofatSarfId
     //
     this.LSMSDofatSarfId.ElementType = typeof(RetirementCenter.DataSources.Linq.CdDofaatAmanat);
     this.LSMSDofatSarfId.KeyExpression = "[DofatSarfAId]";
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn2});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // 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 = "DofatSarfA";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // labelControl8
     //
     this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl8.Location = new System.Drawing.Point(353, 385);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(107, 19);
     this.labelControl8.TabIndex = 10;
     this.labelControl8.Text = "سيصرف بالدفعة";
     //
     // cesarfcheek
     //
     this.cesarfcheek.Location = new System.Drawing.Point(345, 466);
     this.cesarfcheek.Name = "cesarfcheek";
     this.cesarfcheek.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.cesarfcheek.Properties.Appearance.Options.UseFont = true;
     this.cesarfcheek.Properties.Appearance.Options.UseTextOptions = true;
     this.cesarfcheek.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.cesarfcheek.Properties.Caption = "تصرف بشيك";
     this.cesarfcheek.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.cesarfcheek.Size = new System.Drawing.Size(115, 24);
     this.cesarfcheek.TabIndex = 9;
     this.cesarfcheek.CheckedChanged += new System.EventHandler(this.ceamantvisa_CheckedChanged);
     //
     // ceamantvisa
     //
     this.ceamantvisa.Location = new System.Drawing.Point(359, 13);
     this.ceamantvisa.Name = "ceamantvisa";
     this.ceamantvisa.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.ceamantvisa.Properties.Appearance.Options.UseFont = true;
     this.ceamantvisa.Properties.Appearance.Options.UseTextOptions = true;
     this.ceamantvisa.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.ceamantvisa.Properties.Caption = "امانات فيزا";
     this.ceamantvisa.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ceamantvisa.Size = new System.Drawing.Size(101, 24);
     this.ceamantvisa.TabIndex = 0;
     this.ceamantvisa.CheckedChanged += new System.EventHandler(this.ceamantvisa_CheckedChanged);
     //
     // luePersonId
     //
     this.luePersonId.EditValue = "";
     this.luePersonId.Location = new System.Drawing.Point(53, 56);
     this.luePersonId.Name = "luePersonId";
     this.luePersonId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.luePersonId.Properties.Appearance.Options.UseFont = true;
     this.luePersonId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luePersonId.Properties.DataSource = this.LSMSTBLWarasa;
     this.luePersonId.Properties.DisplayMember = "personName";
     this.luePersonId.Properties.NullText = "";
     this.luePersonId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.luePersonId.Properties.ValueMember = "PersonId";
     this.luePersonId.Properties.View = this.gridView1;
     this.luePersonId.Size = new System.Drawing.Size(233, 26);
     this.luePersonId.TabIndex = 2;
     this.luePersonId.EditValueChanged += new System.EventHandler(this.luePersonId_EditValueChanged);
     //
     // 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.colMMashatId,
     this.gridColumn1,
     this.colsarfnumber,
     this.colSyndicate1,
     this.colSubCommitte,
     this.colpersonName,
     this.gridColumn3});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowAutoFilterRow = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // 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 = 1;
     //
     // 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 = "MMashatName";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.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 = 5;
     //
     // 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 = 4;
     //
     // 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 = 0;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "كود60";
     this.gridColumn3.FieldName = "CODE60";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 6;
     //
     // lueDofatSarfAId
     //
     this.lueDofatSarfAId.EditValue = "";
     this.lueDofatSarfAId.Location = new System.Drawing.Point(53, 90);
     this.lueDofatSarfAId.Name = "lueDofatSarfAId";
     this.lueDofatSarfAId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.lueDofatSarfAId.Properties.Appearance.Options.UseFont = true;
     this.lueDofatSarfAId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueDofatSarfAId.Properties.DataSource = this.cdDofaatAmanatBindingSource;
     this.lueDofatSarfAId.Properties.DisplayMember = "DofatSarfA";
     this.lueDofatSarfAId.Properties.NullText = "";
     this.lueDofatSarfAId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueDofatSarfAId.Properties.ValueMember = "DofatSarfAId";
     this.lueDofatSarfAId.Properties.View = this.gridLookUpEdit1View;
     this.lueDofatSarfAId.Size = new System.Drawing.Size(233, 26);
     this.lueDofatSarfAId.TabIndex = 0;
     this.lueDofatSarfAId.EditValueChanged += new System.EventHandler(this.lueDofatSarfAId_EditValueChanged);
     //
     // cdDofaatAmanatBindingSource
     //
     this.cdDofaatAmanatBindingSource.DataMember = "CdDofaatAmanat";
     this.cdDofaatAmanatBindingSource.DataSource = this.dsRetirementCenter;
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName = "dsRetirementCenter";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicate});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.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 = "DofatSarfA";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 0;
     //
     // tbamanatrem
     //
     this.tbamanatrem.Location = new System.Drawing.Point(53, 286);
     this.tbamanatrem.Name = "tbamanatrem";
     this.tbamanatrem.Size = new System.Drawing.Size(233, 80);
     this.tbamanatrem.TabIndex = 7;
     //
     // labelControl6
     //
     this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl6.Location = new System.Drawing.Point(418, 93);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(42, 19);
     this.labelControl6.TabIndex = 0;
     this.labelControl6.Text = "الدفعة";
     //
     // labelControl7
     //
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl7.Location = new System.Drawing.Point(422, 247);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(38, 19);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "الصفه";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl5.Location = new System.Drawing.Point(393, 208);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(67, 19);
     this.labelControl5.TabIndex = 0;
     this.labelControl5.Text = "المستحق";
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl3.Location = new System.Drawing.Point(390, 169);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(70, 19);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "الاستقطاع";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl1.Location = new System.Drawing.Point(420, 128);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(40, 19);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "المبلغ";
     //
     // tbsefa
     //
     this.tbsefa.Location = new System.Drawing.Point(53, 244);
     this.tbsefa.Name = "tbsefa";
     this.tbsefa.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.tbsefa.Properties.Appearance.Options.UseFont = true;
     this.tbsefa.Size = new System.Drawing.Size(233, 26);
     this.tbsefa.TabIndex = 6;
     //
     // tbmostahek
     //
     this.tbmostahek.Location = new System.Drawing.Point(53, 205);
     this.tbmostahek.Name = "tbmostahek";
     this.tbmostahek.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.tbmostahek.Properties.Appearance.Options.UseFont = true;
     this.tbmostahek.Size = new System.Drawing.Size(233, 26);
     this.tbmostahek.TabIndex = 5;
     //
     // tbestktaa
     //
     this.tbestktaa.Location = new System.Drawing.Point(53, 166);
     this.tbestktaa.Name = "tbestktaa";
     this.tbestktaa.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.tbestktaa.Properties.Appearance.Options.UseFont = true;
     this.tbestktaa.Properties.DisplayFormat.FormatString = "f2";
     this.tbestktaa.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbestktaa.Properties.EditFormat.FormatString = "f2";
     this.tbestktaa.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbestktaa.Properties.Mask.EditMask = "f2";
     this.tbestktaa.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.tbestktaa.Size = new System.Drawing.Size(233, 26);
     this.tbestktaa.TabIndex = 4;
     //
     // tbamanatmony
     //
     this.tbamanatmony.EditValue = "0";
     this.tbamanatmony.Location = new System.Drawing.Point(53, 125);
     this.tbamanatmony.Name = "tbamanatmony";
     this.tbamanatmony.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.tbamanatmony.Properties.Appearance.Options.UseFont = true;
     this.tbamanatmony.Properties.DisplayFormat.FormatString = "f2";
     this.tbamanatmony.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbamanatmony.Properties.EditFormat.FormatString = "f2";
     this.tbamanatmony.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbamanatmony.Properties.Mask.EditMask = "f2";
     this.tbamanatmony.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.tbamanatmony.Size = new System.Drawing.Size(233, 26);
     this.tbamanatmony.TabIndex = 3;
     //
     // colMonthName
     //
     this.colMonthName.AppearanceCell.Options.UseTextOptions = true;
     this.colMonthName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMonthName.AppearanceHeader.Options.UseTextOptions = true;
     this.colMonthName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMonthName.Caption = "اسم الشهر";
     this.colMonthName.FieldName = "MonthName";
     this.colMonthName.Name = "colMonthName";
     this.colMonthName.Visible = true;
     this.colMonthName.VisibleIndex = 0;
     //
     // colYearName
     //
     this.colYearName.AppearanceCell.Options.UseTextOptions = true;
     this.colYearName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colYearName.AppearanceHeader.Options.UseTextOptions = true;
     this.colYearName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colYearName.Caption = "اسم السنه";
     this.colYearName.FieldName = "YearName";
     this.colYearName.Name = "colYearName";
     this.colYearName.Visible = true;
     this.colYearName.VisibleIndex = 0;
     //
     // colMonthName1
     //
     this.colMonthName1.AppearanceCell.Options.UseTextOptions = true;
     this.colMonthName1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMonthName1.AppearanceHeader.Options.UseTextOptions = true;
     this.colMonthName1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMonthName1.Caption = "اسم الشهر";
     this.colMonthName1.FieldName = "MonthName";
     this.colMonthName1.Name = "colMonthName1";
     this.colMonthName1.Visible = true;
     this.colMonthName1.VisibleIndex = 0;
     //
     // cdDofaatAmanatTableAdapter
     //
     this.cdDofaatAmanatTableAdapter.ClearBeforeFill = true;
     //
     // sessionvtblWarasabank2
     //
     this.sessionvtblWarasabank2.TrackPropertiesModifications = false;
     //
     // XPCvtblWarasabank2
     //
     this.XPCvtblWarasabank2.CriteriaString = "1 = 2";
     this.XPCvtblWarasabank2.ObjectType = typeof(RetirementCenter.DataSources.dsQueries.vtblWarasabank2DataTable);
     this.XPCvtblWarasabank2.Session = this.sessionvtblWarasabank2;
     //
     // TblWarasaAmanatW2Frm
     //
     this.AcceptButton = this.btnSave;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnClose;
     this.ClientSize = new System.Drawing.Size(542, 666);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox = false;
     this.Name = "TblWarasaAmanatW2Frm";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "تحرير";
     this.Load += new System.EventHandler(this.FormWFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtpGeneral.ResumeLayout(false);
     this.xtpGeneral.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueamanattypeid.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMScd_amanattype)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDofatSarfId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDofatSarfId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cesarfcheek.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceamantvisa.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luePersonId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLWarasa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDofatSarfAId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cdDofaatAmanatBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbamanatrem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbsefa.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbmostahek.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbestktaa.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbamanatmony.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionvtblWarasabank2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPCvtblWarasabank2)).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(DataSellStuBillBarCodeFrm));
     this.xtraTabControlBuyBill = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageAdd = new DevExpress.XtraTab.XtraTabPage();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.LblItemCountNoStore1 = new DevExpress.XtraEditors.LabelControl();
     this.LblItemCount1 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.TxtItemCount = new DevExpress.XtraEditors.TextEdit();
     this.TxtBarCode = new System.Windows.Forms.TextBox();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.LblItemCountNoStore2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.LblItemCount2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.LblBarcode = new System.Windows.Forms.Label();
     this.BtnAddSanf = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.CBESanf = new DevExpress.XtraEditors.ComboBoxEdit();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.BtnAddTasnef = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.CBETasnef = new DevExpress.XtraEditors.ComboBoxEdit();
     this.GridControlAddDetials = new DevExpress.XtraGrid.GridControl();
     this.gridViewAdd = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GCharakatype = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditharakatype = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.GCSanfID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditAddSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.GCoutQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditNumirc = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.GCoutPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditMoney = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.GCDiscountPercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GCDiscountTypeId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditDiscountTypeId = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.GCTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.BtnNew = new DevExpress.XtraEditors.SimpleButton();
     this.BtnSave = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.LblTotal = new DevExpress.XtraEditors.TextEdit();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.MemInfo = new DevExpress.XtraEditors.MemoEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.LUEDiscountTypeId = new DevExpress.XtraEditors.LookUpEdit();
     this.TxtTotalkasm = new DevExpress.XtraEditors.TextEdit();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.LUEStoreID = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEBillPayType = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEEMPID = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEPERSONID = new DevExpress.XtraEditors.LookUpEdit();
     this.studentBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsBookStoreQueries = new BookStore.DataSources.dsBookStoreQueries();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.DEStoreTrDate = new DevExpress.XtraEditors.DateEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.TxtStoreTrIDDAY = new DevExpress.XtraEditors.TextEdit();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.TxtBillID = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.LUESaf = new DevExpress.XtraEditors.GridLookUpEdit();
     this.cDalsofofBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colalsofof_NAME = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabPageEdit = new DevExpress.XtraTab.XtraTabPage();
     this.GCEditBarcode = new DevExpress.XtraEditors.GroupControl();
     this.TxtEditBarcode = new System.Windows.Forms.TextBox();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.gridControlEditDetails = new DevExpress.XtraGrid.GridControl();
     this.gridViewEditDetails = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GCEditharakatype = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditharakatype = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.GCEditSanfID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.GCEditQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditEditN = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.GCEditPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditEditC2 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.GCEditDiscount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GCEditDiscountTypeIdDetail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditDiscountTypeIdDetail = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.GCEditTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GCEditDetails = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditDetails = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.GCDelDetails = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDelDetails = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.GridControlEdit = new DevExpress.XtraGrid.GridControl();
     this.gridViewEdit = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GCEditBillPayType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditBillPayType = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.GCEditStoreTrDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditEditStoreTrDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.GCEditPERSONID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditPERSONID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.studentBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.GCEditEMPID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditEMPID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.GCEditTotalkasm = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditEditCalc = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.GCEditREM = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditEditREM = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.GCEditStoreID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditStoreID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.GCStoreTrIDDAY = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GCStoreTrIDTYPE = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GCEditDiscountTypeId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditDiscountTypeId = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.GCEditDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.GCEditUpdate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditUpdate = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEditTRHEL = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.GCTarhel = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditTRHEL = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditPrint = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.xtraTabPageTarhel = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.TxtBarcodeClose = new System.Windows.Forms.TextBox();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.LBBarCodeCloseLog = new System.Windows.Forms.ListBox();
     this.cDalsofofTableAdapter = new BookStore.DataSources.dsBookStoreQueriesTableAdapters.CDalsofofTableAdapter();
     this.studentTableAdapter = new BookStore.DataSources.dsBookStoreQueriesTableAdapters.studentTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlBuyBill)).BeginInit();
     this.xtraTabControlBuyBill.SuspendLayout();
     this.xtraTabPageAdd.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtItemCount.Properties)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CBESanf.Properties)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CBETasnef.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlAddDetials)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditharakatype)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditAddSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditNumirc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditMoney)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDiscountTypeId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LblTotal.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MemInfo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEDiscountTypeId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtTotalkasm.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEStoreID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEBillPayType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEEMPID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEPERSONID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.studentBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsBookStoreQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDDAY.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtBillID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUESaf.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDalsofofBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     this.xtraTabPageEdit.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GCEditBarcode)).BeginInit();
     this.GCEditBarcode.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewEditDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditharakatype)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditN)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditC2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditDiscountTypeIdDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDelDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlEdit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewEdit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditBillPayType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditPERSONID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.studentBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditEMPID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditCalc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditEditREM)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditStoreID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditDiscountTypeId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditUpdate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditTRHEL)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditTRHEL)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditPrint)).BeginInit();
     this.xtraTabPageTarhel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     this.SuspendLayout();
     //
     // xtraTabControlBuyBill
     //
     this.xtraTabControlBuyBill.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.xtraTabControlBuyBill.Location = new System.Drawing.Point(12, 12);
     this.xtraTabControlBuyBill.Name = "xtraTabControlBuyBill";
     this.xtraTabControlBuyBill.SelectedTabPage = this.xtraTabPageAdd;
     this.xtraTabControlBuyBill.Size = new System.Drawing.Size(760, 556);
     this.xtraTabControlBuyBill.TabIndex = 0;
     this.xtraTabControlBuyBill.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageAdd,
     this.xtraTabPageEdit,
     this.xtraTabPageTarhel});
     this.xtraTabControlBuyBill.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControlBuyBill_SelectedPageChanged);
     //
     // xtraTabPageAdd
     //
     this.xtraTabPageAdd.Controls.Add(this.labelControl21);
     this.xtraTabPageAdd.Controls.Add(this.labelControl20);
     this.xtraTabPageAdd.Controls.Add(this.labelControl14);
     this.xtraTabPageAdd.Controls.Add(this.xtraTabControl1);
     this.xtraTabPageAdd.Controls.Add(this.GridControlAddDetials);
     this.xtraTabPageAdd.Controls.Add(this.BtnNew);
     this.xtraTabPageAdd.Controls.Add(this.BtnSave);
     this.xtraTabPageAdd.Controls.Add(this.groupControl3);
     this.xtraTabPageAdd.Controls.Add(this.groupControl2);
     this.xtraTabPageAdd.Controls.Add(this.groupControl1);
     this.xtraTabPageAdd.Name = "xtraTabPageAdd";
     this.xtraTabPageAdd.Size = new System.Drawing.Size(754, 528);
     this.xtraTabPageAdd.Text = "اضافه";
     //
     // labelControl21
     //
     this.labelControl21.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl21.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.labelControl21.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl21.Location = new System.Drawing.Point(642, 508);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(36, 13);
     this.labelControl21.TabIndex = 11;
     this.labelControl21.Text = "F6 حفظ";
     //
     // labelControl20
     //
     this.labelControl20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl20.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.labelControl20.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl20.Location = new System.Drawing.Point(598, 508);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(38, 13);
     this.labelControl20.TabIndex = 11;
     this.labelControl20.Text = "F8 حذف";
     //
     // labelControl14
     //
     this.labelControl14.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl14.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.labelControl14.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl14.Location = new System.Drawing.Point(684, 508);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(37, 13);
     this.labelControl14.TabIndex = 11;
     this.labelControl14.Text = "F5 جديد";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(247, 5);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size = new System.Drawing.Size(499, 110);
     this.xtraTabControl1.TabIndex = 2;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     this.xtraTabControl1.TabStop = false;
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.LblItemCountNoStore1);
     this.xtraTabPage1.Controls.Add(this.LblItemCount1);
     this.xtraTabPage1.Controls.Add(this.labelControl18);
     this.xtraTabPage1.Controls.Add(this.labelControl19);
     this.xtraTabPage1.Controls.Add(this.TxtItemCount);
     this.xtraTabPage1.Controls.Add(this.TxtBarCode);
     this.xtraTabPage1.Controls.Add(this.labelControl9);
     this.xtraTabPage1.Controls.Add(this.labelControl10);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(493, 82);
     this.xtraTabPage1.Text = "باركود";
     //
     // LblItemCountNoStore1
     //
     this.LblItemCountNoStore1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.LblItemCountNoStore1.Location = new System.Drawing.Point(428, 66);
     this.LblItemCountNoStore1.Name = "LblItemCountNoStore1";
     this.LblItemCountNoStore1.Size = new System.Drawing.Size(6, 13);
     this.LblItemCountNoStore1.TabIndex = 8;
     this.LblItemCountNoStore1.Text = "0";
     //
     // LblItemCount1
     //
     this.LblItemCount1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.LblItemCount1.Location = new System.Drawing.Point(428, 47);
     this.LblItemCount1.Name = "LblItemCount1";
     this.LblItemCount1.Size = new System.Drawing.Size(6, 13);
     this.LblItemCount1.TabIndex = 9;
     this.LblItemCount1.Text = "0";
     //
     // labelControl18
     //
     this.labelControl18.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl18.Location = new System.Drawing.Point(453, 66);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(37, 13);
     this.labelControl18.TabIndex = 6;
     this.labelControl18.Text = "لم يرحل";
     //
     // labelControl19
     //
     this.labelControl19.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl19.Location = new System.Drawing.Point(460, 47);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(30, 13);
     this.labelControl19.TabIndex = 7;
     this.labelControl19.Text = "الرصيد";
     //
     // TxtItemCount
     //
     this.TxtItemCount.EditValue = "1";
     this.TxtItemCount.Location = new System.Drawing.Point(47, 14);
     this.TxtItemCount.Name = "TxtItemCount";
     this.TxtItemCount.Properties.Mask.EditMask = "n0";
     this.TxtItemCount.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.TxtItemCount.Size = new System.Drawing.Size(45, 20);
     this.TxtItemCount.TabIndex = 1;
     this.TxtItemCount.Visible = false;
     //
     // TxtBarCode
     //
     this.TxtBarCode.Location = new System.Drawing.Point(148, 14);
     this.TxtBarCode.Name = "TxtBarCode";
     this.TxtBarCode.Size = new System.Drawing.Size(228, 20);
     this.TxtBarCode.TabIndex = 0;
     this.TxtBarCode.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtBarCode_KeyPress);
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(382, 17);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(66, 13);
     this.labelControl9.TabIndex = 2;
     this.labelControl9.Text = "اسحب الباركود";
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(96, 17);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(44, 13);
     this.labelControl10.TabIndex = 2;
     this.labelControl10.Text = "الكميـــــه";
     this.labelControl10.Visible = false;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.LblItemCountNoStore2);
     this.xtraTabPage2.Controls.Add(this.labelControl22);
     this.xtraTabPage2.Controls.Add(this.LblItemCount2);
     this.xtraTabPage2.Controls.Add(this.labelControl17);
     this.xtraTabPage2.Controls.Add(this.LblBarcode);
     this.xtraTabPage2.Controls.Add(this.BtnAddSanf);
     this.xtraTabPage2.Controls.Add(this.labelControl16);
     this.xtraTabPage2.Controls.Add(this.CBESanf);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(493, 82);
     this.xtraTabPage2.Text = "بحث بالاسم";
     //
     // LblItemCountNoStore2
     //
     this.LblItemCountNoStore2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.LblItemCountNoStore2.Location = new System.Drawing.Point(430, 66);
     this.LblItemCountNoStore2.Name = "LblItemCountNoStore2";
     this.LblItemCountNoStore2.Size = new System.Drawing.Size(6, 13);
     this.LblItemCountNoStore2.TabIndex = 11;
     this.LblItemCountNoStore2.Text = "0";
     //
     // labelControl22
     //
     this.labelControl22.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl22.Location = new System.Drawing.Point(453, 66);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(37, 13);
     this.labelControl22.TabIndex = 10;
     this.labelControl22.Text = "لم يرحل";
     //
     // LblItemCount2
     //
     this.LblItemCount2.Location = new System.Drawing.Point(430, 49);
     this.LblItemCount2.Name = "LblItemCount2";
     this.LblItemCount2.Size = new System.Drawing.Size(6, 13);
     this.LblItemCount2.TabIndex = 8;
     this.LblItemCount2.Text = "0";
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(460, 49);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(30, 13);
     this.labelControl17.TabIndex = 9;
     this.labelControl17.Text = "الرصيد";
     //
     // LblBarcode
     //
     this.LblBarcode.AutoSize = true;
     this.LblBarcode.Location = new System.Drawing.Point(229, 39);
     this.LblBarcode.Name = "LblBarcode";
     this.LblBarcode.Size = new System.Drawing.Size(0, 13);
     this.LblBarcode.TabIndex = 5;
     //
     // BtnAddSanf
     //
     this.BtnAddSanf.Location = new System.Drawing.Point(71, 13);
     this.BtnAddSanf.Name = "BtnAddSanf";
     this.BtnAddSanf.Size = new System.Drawing.Size(75, 23);
     this.BtnAddSanf.TabIndex = 4;
     this.BtnAddSanf.Text = "اضافه";
     this.BtnAddSanf.Click += new System.EventHandler(this.BtnAddSanf_Click);
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(355, 20);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(45, 13);
     this.labelControl16.TabIndex = 3;
     this.labelControl16.Text = "احتر صنف";
     //
     // CBESanf
     //
     this.CBESanf.Location = new System.Drawing.Point(152, 17);
     this.CBESanf.Name = "CBESanf";
     this.CBESanf.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.CBESanf.Properties.HideSelection = false;
     this.CBESanf.Size = new System.Drawing.Size(197, 20);
     this.CBESanf.TabIndex = 0;
     this.CBESanf.SelectedIndexChanged += new System.EventHandler(this.CBESanf_SelectedIndexChanged);
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.BtnAddTasnef);
     this.xtraTabPage3.Controls.Add(this.labelControl24);
     this.xtraTabPage3.Controls.Add(this.CBETasnef);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(493, 82);
     this.xtraTabPage3.Text = "بحث بالتصنيف";
     //
     // BtnAddTasnef
     //
     this.BtnAddTasnef.Location = new System.Drawing.Point(82, 29);
     this.BtnAddTasnef.Name = "BtnAddTasnef";
     this.BtnAddTasnef.Size = new System.Drawing.Size(75, 23);
     this.BtnAddTasnef.TabIndex = 7;
     this.BtnAddTasnef.Text = "اضافه";
     this.BtnAddTasnef.Click += new System.EventHandler(this.BtnAddTasnef_Click);
     //
     // labelControl24
     //
     this.labelControl24.Location = new System.Drawing.Point(366, 36);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(52, 13);
     this.labelControl24.TabIndex = 6;
     this.labelControl24.Text = "اختر تصنيف";
     //
     // CBETasnef
     //
     this.CBETasnef.Location = new System.Drawing.Point(163, 33);
     this.CBETasnef.Name = "CBETasnef";
     this.CBETasnef.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.CBETasnef.Properties.HideSelection = false;
     this.CBETasnef.Size = new System.Drawing.Size(197, 20);
     this.CBETasnef.TabIndex = 5;
     //
     // GridControlAddDetials
     //
     this.GridControlAddDetials.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.First.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.GridControlAddDetials.Location = new System.Drawing.Point(247, 123);
     this.GridControlAddDetials.MainView = this.gridViewAdd;
     this.GridControlAddDetials.Name = "GridControlAddDetials";
     this.GridControlAddDetials.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditAddSanfID,
     this.repositoryItemCalcEditNumirc,
     this.repositoryItemCalcEditMoney,
     this.repositoryItemLookUpEditharakatype,
     this.repositoryItemLookUpEditDiscountTypeId});
     this.GridControlAddDetials.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.GridControlAddDetials.Size = new System.Drawing.Size(499, 398);
     this.GridControlAddDetials.TabIndex = 3;
     this.GridControlAddDetials.UseEmbeddedNavigator = true;
     this.GridControlAddDetials.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewAdd});
     this.GridControlAddDetials.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEventGrid);
     //
     // gridViewAdd
     //
     this.gridViewAdd.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.GCharakatype,
     this.GCSanfID,
     this.GCoutQuantity,
     this.GCoutPrice,
     this.GCDiscountPercent,
     this.GCDiscountTypeId,
     this.GCTotal});
     this.gridViewAdd.GridControl = this.GridControlAddDetials;
     this.gridViewAdd.Name = "gridViewAdd";
     this.gridViewAdd.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     this.gridViewAdd.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewAdd.OptionsNavigation.UseTabKey = false;
     this.gridViewAdd.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewAdd_CellValueChanged);
     this.gridViewAdd.RowCountChanged += new System.EventHandler(this.gridViewAdd_RowCountChanged);
     //
     // GCharakatype
     //
     this.GCharakatype.AppearanceCell.Options.UseTextOptions = true;
     this.GCharakatype.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCharakatype.AppearanceHeader.Options.UseTextOptions = true;
     this.GCharakatype.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCharakatype.Caption = "نوع الحركه";
     this.GCharakatype.ColumnEdit = this.repositoryItemLookUpEditharakatype;
     this.GCharakatype.FieldName = "harakatype";
     this.GCharakatype.Name = "GCharakatype";
     this.GCharakatype.Visible = true;
     this.GCharakatype.VisibleIndex = 6;
     //
     // repositoryItemLookUpEditharakatype
     //
     this.repositoryItemLookUpEditharakatype.AutoHeight = false;
     this.repositoryItemLookUpEditharakatype.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditharakatype.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("haraka", "اسم نوع الحركه")});
     this.repositoryItemLookUpEditharakatype.Name = "repositoryItemLookUpEditharakatype";
     this.repositoryItemLookUpEditharakatype.NullText = "";
     //
     // GCSanfID
     //
     this.GCSanfID.AppearanceCell.Options.UseTextOptions = true;
     this.GCSanfID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCSanfID.AppearanceHeader.Options.UseTextOptions = true;
     this.GCSanfID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCSanfID.Caption = "الصنف";
     this.GCSanfID.ColumnEdit = this.repositoryItemLookUpEditAddSanfID;
     this.GCSanfID.FieldName = "SanfID";
     this.GCSanfID.Name = "GCSanfID";
     this.GCSanfID.Visible = true;
     this.GCSanfID.VisibleIndex = 5;
     this.GCSanfID.Width = 105;
     //
     // repositoryItemLookUpEditAddSanfID
     //
     this.repositoryItemLookUpEditAddSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditAddSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditAddSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Sanfbarcode", "باركود"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنف")});
     this.repositoryItemLookUpEditAddSanfID.Name = "repositoryItemLookUpEditAddSanfID";
     this.repositoryItemLookUpEditAddSanfID.NullText = "";
     this.repositoryItemLookUpEditAddSanfID.NullValuePrompt = "اختار صنف";
     this.repositoryItemLookUpEditAddSanfID.EditValueChanged += new System.EventHandler(this.repositoryItemLookUpEditAddSanfID_EditValueChanged);
     //
     // GCoutQuantity
     //
     this.GCoutQuantity.AppearanceCell.Options.UseTextOptions = true;
     this.GCoutQuantity.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCoutQuantity.AppearanceHeader.Options.UseTextOptions = true;
     this.GCoutQuantity.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCoutQuantity.Caption = "الكميـــه";
     this.GCoutQuantity.ColumnEdit = this.repositoryItemCalcEditNumirc;
     this.GCoutQuantity.FieldName = "Quantity";
     this.GCoutQuantity.Name = "GCoutQuantity";
     this.GCoutQuantity.Visible = true;
     this.GCoutQuantity.VisibleIndex = 4;
     this.GCoutQuantity.Width = 92;
     //
     // repositoryItemCalcEditNumirc
     //
     this.repositoryItemCalcEditNumirc.AutoHeight = false;
     this.repositoryItemCalcEditNumirc.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditNumirc.DisplayFormat.FormatString = "d";
     this.repositoryItemCalcEditNumirc.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditNumirc.EditFormat.FormatString = "d";
     this.repositoryItemCalcEditNumirc.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditNumirc.Mask.EditMask = "d";
     this.repositoryItemCalcEditNumirc.Name = "repositoryItemCalcEditNumirc";
     this.repositoryItemCalcEditNumirc.NullValuePrompt = "ادخل رقم";
     this.repositoryItemCalcEditNumirc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEventGrid);
     //
     // GCoutPrice
     //
     this.GCoutPrice.AppearanceCell.Options.UseTextOptions = true;
     this.GCoutPrice.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCoutPrice.AppearanceHeader.Options.UseTextOptions = true;
     this.GCoutPrice.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCoutPrice.Caption = "سعر الوحــده";
     this.GCoutPrice.ColumnEdit = this.repositoryItemCalcEditMoney;
     this.GCoutPrice.FieldName = "Price";
     this.GCoutPrice.Name = "GCoutPrice";
     this.GCoutPrice.OptionsColumn.AllowEdit = false;
     this.GCoutPrice.Visible = true;
     this.GCoutPrice.VisibleIndex = 3;
     this.GCoutPrice.Width = 94;
     //
     // repositoryItemCalcEditMoney
     //
     this.repositoryItemCalcEditMoney.AutoHeight = false;
     this.repositoryItemCalcEditMoney.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditMoney.DisplayFormat.FormatString = "f";
     this.repositoryItemCalcEditMoney.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditMoney.EditFormat.FormatString = "f";
     this.repositoryItemCalcEditMoney.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditMoney.Mask.EditMask = "f";
     this.repositoryItemCalcEditMoney.Name = "repositoryItemCalcEditMoney";
     this.repositoryItemCalcEditMoney.NullValuePrompt = "ادخل قيمه";
     //
     // GCDiscountPercent
     //
     this.GCDiscountPercent.AppearanceCell.Options.UseTextOptions = true;
     this.GCDiscountPercent.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCDiscountPercent.AppearanceHeader.Options.UseTextOptions = true;
     this.GCDiscountPercent.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCDiscountPercent.Caption = "خصــــم";
     this.GCDiscountPercent.ColumnEdit = this.repositoryItemCalcEditMoney;
     this.GCDiscountPercent.FieldName = "Discount";
     this.GCDiscountPercent.Name = "GCDiscountPercent";
     this.GCDiscountPercent.Visible = true;
     this.GCDiscountPercent.VisibleIndex = 1;
     this.GCDiscountPercent.Width = 76;
     //
     // GCDiscountTypeId
     //
     this.GCDiscountTypeId.AppearanceCell.Options.UseTextOptions = true;
     this.GCDiscountTypeId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCDiscountTypeId.AppearanceHeader.Options.UseTextOptions = true;
     this.GCDiscountTypeId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCDiscountTypeId.Caption = "نوع الخصم";
     this.GCDiscountTypeId.ColumnEdit = this.repositoryItemLookUpEditDiscountTypeId;
     this.GCDiscountTypeId.FieldName = "DiscountTypeId";
     this.GCDiscountTypeId.Name = "GCDiscountTypeId";
     this.GCDiscountTypeId.Visible = true;
     this.GCDiscountTypeId.VisibleIndex = 2;
     this.GCDiscountTypeId.Width = 105;
     //
     // repositoryItemLookUpEditDiscountTypeId
     //
     this.repositoryItemLookUpEditDiscountTypeId.AutoHeight = false;
     this.repositoryItemLookUpEditDiscountTypeId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditDiscountTypeId.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("DiscountType", "اسم نوع الخصم")});
     this.repositoryItemLookUpEditDiscountTypeId.Name = "repositoryItemLookUpEditDiscountTypeId";
     this.repositoryItemLookUpEditDiscountTypeId.NullText = "";
     this.repositoryItemLookUpEditDiscountTypeId.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemLookUpEditDiscountTypeId_ButtonClick);
     //
     // GCTotal
     //
     this.GCTotal.AppearanceCell.Options.UseTextOptions = true;
     this.GCTotal.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCTotal.AppearanceHeader.Options.UseTextOptions = true;
     this.GCTotal.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCTotal.Caption = "المجموع";
     this.GCTotal.FieldName = "Total";
     this.GCTotal.Name = "GCTotal";
     this.GCTotal.OptionsColumn.AllowEdit = false;
     this.GCTotal.OptionsColumn.AllowFocus = false;
     this.GCTotal.OptionsColumn.ReadOnly = true;
     this.GCTotal.Visible = true;
     this.GCTotal.VisibleIndex = 0;
     this.GCTotal.Width = 86;
     //
     // BtnNew
     //
     this.BtnNew.Location = new System.Drawing.Point(6, 5);
     this.BtnNew.Name = "BtnNew";
     this.BtnNew.Size = new System.Drawing.Size(235, 32);
     this.BtnNew.TabIndex = 5;
     this.BtnNew.Text = "جديــــــــــــــد";
     this.BtnNew.Click += new System.EventHandler(this.BtnNew_Click);
     //
     // BtnSave
     //
     this.BtnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.BtnSave.Location = new System.Drawing.Point(6, 488);
     this.BtnSave.Name = "BtnSave";
     this.BtnSave.Size = new System.Drawing.Size(235, 36);
     this.BtnSave.TabIndex = 4;
     this.BtnSave.Text = "حفـــــــــــــــظ";
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.labelControl6);
     this.groupControl3.Controls.Add(this.LblTotal);
     this.groupControl3.Location = new System.Drawing.Point(6, 39);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(235, 78);
     this.groupControl3.TabIndex = 10;
     this.groupControl3.Text = "الاجمالي";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(153, 24);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(69, 13);
     this.labelControl6.TabIndex = 2;
     this.labelControl6.Text = "اجمالي الفاتوره";
     //
     // LblTotal
     //
     this.LblTotal.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.LblTotal.EditValue = "0";
     this.LblTotal.Location = new System.Drawing.Point(2, 44);
     this.LblTotal.Name = "LblTotal";
     this.LblTotal.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 16F, System.Drawing.FontStyle.Bold);
     this.LblTotal.Properties.Appearance.ForeColor = System.Drawing.Color.Green;
     this.LblTotal.Properties.Appearance.Options.UseFont = true;
     this.LblTotal.Properties.Appearance.Options.UseForeColor = true;
     this.LblTotal.Properties.DisplayFormat.FormatString = "f2";
     this.LblTotal.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.LblTotal.Properties.EditFormat.FormatString = "f2";
     this.LblTotal.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.LblTotal.Properties.Mask.EditMask = "f2";
     this.LblTotal.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.LblTotal.Properties.NullText = "0";
     this.LblTotal.Properties.NullValuePrompt = "0";
     this.LblTotal.Properties.ReadOnly = true;
     this.LblTotal.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.LblTotal.Size = new System.Drawing.Size(231, 32);
     this.LblTotal.TabIndex = 7;
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.MemInfo);
     this.groupControl2.Controls.Add(this.labelControl12);
     this.groupControl2.Controls.Add(this.LUEDiscountTypeId);
     this.groupControl2.Controls.Add(this.TxtTotalkasm);
     this.groupControl2.Controls.Add(this.labelControl13);
     this.groupControl2.Controls.Add(this.labelControl8);
     this.groupControl2.Location = new System.Drawing.Point(6, 123);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControl2.Size = new System.Drawing.Size(235, 125);
     this.groupControl2.TabIndex = 1;
     this.groupControl2.Text = "مصاريف اضافيه و الخصم";
     //
     // MemInfo
     //
     this.MemInfo.Location = new System.Drawing.Point(5, 83);
     this.MemInfo.Name = "MemInfo";
     this.MemInfo.Properties.MaxLength = 100;
     this.MemInfo.Properties.NullValuePrompt = "معلومات عن الفاتوره";
     this.MemInfo.Size = new System.Drawing.Size(150, 37);
     this.MemInfo.TabIndex = 2;
     this.MemInfo.TabStop = false;
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(183, 86);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(39, 13);
     this.labelControl12.TabIndex = 4;
     this.labelControl12.Text = "معلومات";
     //
     // LUEDiscountTypeId
     //
     this.LUEDiscountTypeId.Location = new System.Drawing.Point(5, 33);
     this.LUEDiscountTypeId.Name = "LUEDiscountTypeId";
     this.LUEDiscountTypeId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEDiscountTypeId.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("DiscountType", "اسم النوع")});
     this.LUEDiscountTypeId.Properties.NullText = "";
     this.LUEDiscountTypeId.Size = new System.Drawing.Size(150, 20);
     this.LUEDiscountTypeId.TabIndex = 0;
     this.LUEDiscountTypeId.TabStop = false;
     this.LUEDiscountTypeId.EditValueChanged += new System.EventHandler(this.LUEDiscountTypeId_EditValueChanged);
     //
     // TxtTotalkasm
     //
     this.TxtTotalkasm.EditValue = "0";
     this.TxtTotalkasm.Location = new System.Drawing.Point(5, 58);
     this.TxtTotalkasm.Name = "TxtTotalkasm";
     this.TxtTotalkasm.Properties.DisplayFormat.FormatString = "f";
     this.TxtTotalkasm.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtTotalkasm.Properties.EditFormat.FormatString = "f";
     this.TxtTotalkasm.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtTotalkasm.Properties.Mask.EditMask = "f";
     this.TxtTotalkasm.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.TxtTotalkasm.Properties.NullValuePrompt = "ادخل قيمة الخصم الكلي";
     this.TxtTotalkasm.Size = new System.Drawing.Size(150, 20);
     this.TxtTotalkasm.TabIndex = 1;
     this.TxtTotalkasm.TabStop = false;
     this.TxtTotalkasm.EditValueChanged += new System.EventHandler(this.TxtDiscount_EditValueChanged);
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(174, 36);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(48, 13);
     this.labelControl13.TabIndex = 0;
     this.labelControl13.Text = "نوع الخصم";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(175, 61);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(47, 13);
     this.labelControl8.TabIndex = 0;
     this.labelControl8.Text = "خصم كلي";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.LUEStoreID);
     this.groupControl1.Controls.Add(this.LUEBillPayType);
     this.groupControl1.Controls.Add(this.LUEEMPID);
     this.groupControl1.Controls.Add(this.LUEPERSONID);
     this.groupControl1.Controls.Add(this.labelControl11);
     this.groupControl1.Controls.Add(this.DEStoreTrDate);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.TxtStoreTrIDDAY);
     this.groupControl1.Controls.Add(this.labelControl25);
     this.groupControl1.Controls.Add(this.TxtBillID);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.labelControl5);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Controls.Add(this.LUESaf);
     this.groupControl1.Location = new System.Drawing.Point(6, 249);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControl1.Size = new System.Drawing.Size(235, 233);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "بيانات عامــه";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(181, 206);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(41, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "نوع الدفع";
     //
     // LUEStoreID
     //
     this.LUEStoreID.Location = new System.Drawing.Point(5, 178);
     this.LUEStoreID.Name = "LUEStoreID";
     this.LUEStoreID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEStoreID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreName", "اسم المخزن"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StorePlace", "عنوان"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreTel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreMobil", "موبيل")});
     this.LUEStoreID.Properties.NullText = "";
     this.LUEStoreID.Properties.NullValuePrompt = "اختار اسم المخزن";
     this.LUEStoreID.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUEStoreID.Size = new System.Drawing.Size(150, 20);
     this.LUEStoreID.TabIndex = 3;
     this.LUEStoreID.TabStop = false;
     //
     // LUEBillPayType
     //
     this.LUEBillPayType.Location = new System.Drawing.Point(5, 203);
     this.LUEBillPayType.Name = "LUEBillPayType";
     this.LUEBillPayType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEBillPayType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeName", "اسم نوع الدفع")});
     this.LUEBillPayType.Properties.NullText = "";
     this.LUEBillPayType.Properties.NullValuePrompt = "اختار نوع الدفع";
     this.LUEBillPayType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUEBillPayType.Size = new System.Drawing.Size(150, 20);
     this.LUEBillPayType.TabIndex = 4;
     this.LUEBillPayType.TabStop = false;
     //
     // LUEEMPID
     //
     this.LUEEMPID.Location = new System.Drawing.Point(5, 153);
     this.LUEEMPID.Name = "LUEEMPID";
     this.LUEEMPID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEEMPID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPNAME", "اسم المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPPHONE", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPMOBIL", "موبيل")});
     this.LUEEMPID.Properties.NullText = "";
     this.LUEEMPID.Properties.NullValuePrompt = "اختار اسم المستــلم";
     this.LUEEMPID.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUEEMPID.Size = new System.Drawing.Size(150, 20);
     this.LUEEMPID.TabIndex = 2;
     this.LUEEMPID.TabStop = false;
     //
     // LUEPERSONID
     //
     this.LUEPERSONID.EnterMoveNextControl = true;
     this.LUEPERSONID.Location = new System.Drawing.Point(5, 128);
     this.LUEPERSONID.Name = "LUEPERSONID";
     this.LUEPERSONID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEPERSONID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("stu_name", "اسم الطالب")});
     this.LUEPERSONID.Properties.DataSource = this.studentBindingSource;
     this.LUEPERSONID.Properties.DisplayMember = "stu_name";
     this.LUEPERSONID.Properties.NullText = "";
     this.LUEPERSONID.Properties.NullValuePrompt = "اختار اسم";
     this.LUEPERSONID.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUEPERSONID.Properties.ValueMember = "stu_code";
     this.LUEPERSONID.Size = new System.Drawing.Size(150, 20);
     this.LUEPERSONID.TabIndex = 0;
     this.LUEPERSONID.EditValueChanged += new System.EventHandler(this.LUEPERSONID_EditValueChanged);
     //
     // studentBindingSource
     //
     this.studentBindingSource.DataMember = "student";
     this.studentBindingSource.DataSource = this.dsBookStoreQueries;
     //
     // dsBookStoreQueries
     //
     this.dsBookStoreQueries.DataSetName = "dsBookStoreQueries";
     this.dsBookStoreQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(190, 181);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(32, 13);
     this.labelControl11.TabIndex = 0;
     this.labelControl11.Text = "المخزن";
     //
     // DEStoreTrDate
     //
     this.DEStoreTrDate.EditValue = null;
     this.DEStoreTrDate.Location = new System.Drawing.Point(5, 76);
     this.DEStoreTrDate.Name = "DEStoreTrDate";
     this.DEStoreTrDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DEStoreTrDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.DEStoreTrDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.DEStoreTrDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.NullValuePrompt = "ادخل تاريخ الفاتوره";
     this.DEStoreTrDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DEStoreTrDate.Size = new System.Drawing.Size(150, 20);
     this.DEStoreTrDate.TabIndex = 1;
     this.DEStoreTrDate.TabStop = false;
     this.DEStoreTrDate.EditValueChanged += new System.EventHandler(this.DEStoreTrDate_EditValueChanged);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(181, 156);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(41, 13);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "المسئول";
     //
     // TxtStoreTrIDDAY
     //
     this.TxtStoreTrIDDAY.Location = new System.Drawing.Point(5, 26);
     this.TxtStoreTrIDDAY.Name = "TxtStoreTrIDDAY";
     this.TxtStoreTrIDDAY.Properties.ReadOnly = true;
     this.TxtStoreTrIDDAY.Size = new System.Drawing.Size(150, 20);
     this.TxtStoreTrIDDAY.TabIndex = 10;
     this.TxtStoreTrIDDAY.TabStop = false;
     //
     // labelControl25
     //
     this.labelControl25.Location = new System.Drawing.Point(197, 105);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(25, 13);
     this.labelControl25.TabIndex = 0;
     this.labelControl25.Text = "الصف";
     //
     // TxtBillID
     //
     this.TxtBillID.Location = new System.Drawing.Point(5, 51);
     this.TxtBillID.Name = "TxtBillID";
     this.TxtBillID.Properties.ReadOnly = true;
     this.TxtBillID.Size = new System.Drawing.Size(150, 20);
     this.TxtBillID.TabIndex = 10;
     this.TxtBillID.TabStop = false;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(167, 131);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(55, 13);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "اسم الطالب";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(174, 29);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(48, 13);
     this.labelControl5.TabIndex = 0;
     this.labelControl5.Text = "رقم الطلب";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(166, 79);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(56, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "تاريخ الفاتوره";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(170, 54);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(52, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "رقم الفاتوره";
     //
     // LUESaf
     //
     this.LUESaf.Location = new System.Drawing.Point(5, 102);
     this.LUESaf.Name = "LUESaf";
     this.LUESaf.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUESaf.Properties.DataSource = this.cDalsofofBindingSource;
     this.LUESaf.Properties.DisplayMember = "alsofof_NAME";
     this.LUESaf.Properties.NullText = "";
     this.LUESaf.Properties.NullValuePrompt = "اختار اسم";
     this.LUESaf.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUESaf.Properties.ValueMember = "alsofof_code";
     this.LUESaf.Properties.View = this.gridLookUpEdit1View;
     this.LUESaf.Size = new System.Drawing.Size(150, 20);
     this.LUESaf.TabIndex = 0;
     this.LUESaf.EditValueChanged += new System.EventHandler(this.LUESaf_EditValueChanged);
     //
     // cDalsofofBindingSource
     //
     this.cDalsofofBindingSource.DataMember = "CDalsofof";
     this.cDalsofofBindingSource.DataSource = this.dsBookStoreQueries;
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colalsofof_NAME});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colalsofof_NAME
     //
     this.colalsofof_NAME.AppearanceCell.Options.UseTextOptions = true;
     this.colalsofof_NAME.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colalsofof_NAME.AppearanceHeader.Options.UseTextOptions = true;
     this.colalsofof_NAME.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colalsofof_NAME.Caption = "الاسم";
     this.colalsofof_NAME.FieldName = "alsofof_NAME";
     this.colalsofof_NAME.Name = "colalsofof_NAME";
     this.colalsofof_NAME.Visible = true;
     this.colalsofof_NAME.VisibleIndex = 0;
     //
     // xtraTabPageEdit
     //
     this.xtraTabPageEdit.Controls.Add(this.GCEditBarcode);
     this.xtraTabPageEdit.Controls.Add(this.gridControlEditDetails);
     this.xtraTabPageEdit.Controls.Add(this.GridControlEdit);
     this.xtraTabPageEdit.Name = "xtraTabPageEdit";
     this.xtraTabPageEdit.Size = new System.Drawing.Size(754, 528);
     this.xtraTabPageEdit.Text = "تعديل";
     //
     // GCEditBarcode
     //
     this.GCEditBarcode.AppearanceCaption.Options.UseTextOptions = true;
     this.GCEditBarcode.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditBarcode.Controls.Add(this.TxtEditBarcode);
     this.GCEditBarcode.Controls.Add(this.labelControl15);
     this.GCEditBarcode.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.GCEditBarcode.Location = new System.Drawing.Point(0, 221);
     this.GCEditBarcode.Name = "GCEditBarcode";
     this.GCEditBarcode.Size = new System.Drawing.Size(754, 50);
     this.GCEditBarcode.TabIndex = 12;
     this.GCEditBarcode.Text = "الباركـــــــــــــود";
     //
     // TxtEditBarcode
     //
     this.TxtEditBarcode.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.TxtEditBarcode.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.TxtEditBarcode.Location = new System.Drawing.Point(227, 29);
     this.TxtEditBarcode.Name = "TxtEditBarcode";
     this.TxtEditBarcode.Size = new System.Drawing.Size(228, 13);
     this.TxtEditBarcode.TabIndex = 4;
     this.TxtEditBarcode.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.TxtEditBarcode.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtEditBarcode_KeyPress_1);
     //
     // labelControl15
     //
     this.labelControl15.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl15.Location = new System.Drawing.Point(461, 29);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(66, 13);
     this.labelControl15.TabIndex = 2;
     this.labelControl15.Text = "اسحب الباركود";
     //
     // gridControlEditDetails
     //
     this.gridControlEditDetails.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridControlEditDetails.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlEditDetails.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlEditDetails.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlEditDetails.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gridControlEditDetails.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gridControlEditDetails.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gridControlEditDetails.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gridControlEditDetails.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gridControlEditDetails.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gridControlEditDetails.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.gridControlEditDetails.Location = new System.Drawing.Point(0, 271);
     this.gridControlEditDetails.MainView = this.gridViewEditDetails;
     this.gridControlEditDetails.Name = "gridControlEditDetails";
     this.gridControlEditDetails.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditEditSanfID,
     this.repositoryItemCalcEditEditN,
     this.repositoryItemCalcEditEditC2,
     this.repositoryItemLookUpEditEditharakatype,
     this.repositoryItemLookUpEditEditDiscountTypeIdDetail,
     this.repositoryItemButtonEditEditDetails,
     this.repositoryItemButtonEditDelDetails});
     this.gridControlEditDetails.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.gridControlEditDetails.Size = new System.Drawing.Size(754, 257);
     this.gridControlEditDetails.TabIndex = 7;
     this.gridControlEditDetails.UseEmbeddedNavigator = true;
     this.gridControlEditDetails.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewEditDetails});
     //
     // gridViewEditDetails
     //
     this.gridViewEditDetails.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.GCEditharakatype,
     this.GCEditSanfID,
     this.GCEditQuantity,
     this.GCEditPrice,
     this.GCEditDiscount,
     this.GCEditDiscountTypeIdDetail,
     this.GCEditTotal,
     this.GCEditDetails,
     this.GCDelDetails});
     this.gridViewEditDetails.GridControl = this.gridControlEditDetails;
     this.gridViewEditDetails.Name = "gridViewEditDetails";
     this.gridViewEditDetails.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     //
     // GCEditharakatype
     //
     this.GCEditharakatype.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditharakatype.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditharakatype.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditharakatype.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditharakatype.Caption = "نوع الحركه";
     this.GCEditharakatype.ColumnEdit = this.repositoryItemLookUpEditEditharakatype;
     this.GCEditharakatype.FieldName = "harakatype";
     this.GCEditharakatype.Name = "GCEditharakatype";
     this.GCEditharakatype.Visible = true;
     this.GCEditharakatype.VisibleIndex = 6;
     //
     // repositoryItemLookUpEditEditharakatype
     //
     this.repositoryItemLookUpEditEditharakatype.AutoHeight = false;
     this.repositoryItemLookUpEditEditharakatype.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditharakatype.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("haraka", "اسم نوع الحركه")});
     this.repositoryItemLookUpEditEditharakatype.Name = "repositoryItemLookUpEditEditharakatype";
     this.repositoryItemLookUpEditEditharakatype.NullText = "";
     //
     // GCEditSanfID
     //
     this.GCEditSanfID.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditSanfID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditSanfID.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditSanfID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditSanfID.Caption = "الصنف";
     this.GCEditSanfID.ColumnEdit = this.repositoryItemLookUpEditEditSanfID;
     this.GCEditSanfID.FieldName = "SanfID";
     this.GCEditSanfID.Name = "GCEditSanfID";
     this.GCEditSanfID.Visible = true;
     this.GCEditSanfID.VisibleIndex = 5;
     this.GCEditSanfID.Width = 105;
     //
     // repositoryItemLookUpEditEditSanfID
     //
     this.repositoryItemLookUpEditEditSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditEditSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Sanfbarcode", "باركود الصنف"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنف")});
     this.repositoryItemLookUpEditEditSanfID.Name = "repositoryItemLookUpEditEditSanfID";
     this.repositoryItemLookUpEditEditSanfID.NullText = "";
     this.repositoryItemLookUpEditEditSanfID.NullValuePrompt = "اختار صنف";
     //
     // GCEditQuantity
     //
     this.GCEditQuantity.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditQuantity.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditQuantity.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditQuantity.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditQuantity.Caption = "الكميـــه";
     this.GCEditQuantity.ColumnEdit = this.repositoryItemCalcEditEditN;
     this.GCEditQuantity.FieldName = "Quantity";
     this.GCEditQuantity.Name = "GCEditQuantity";
     this.GCEditQuantity.Visible = true;
     this.GCEditQuantity.VisibleIndex = 4;
     this.GCEditQuantity.Width = 92;
     //
     // repositoryItemCalcEditEditN
     //
     this.repositoryItemCalcEditEditN.AutoHeight = false;
     this.repositoryItemCalcEditEditN.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditEditN.DisplayFormat.FormatString = "d";
     this.repositoryItemCalcEditEditN.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditN.EditFormat.FormatString = "d";
     this.repositoryItemCalcEditEditN.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditN.Mask.EditMask = "d";
     this.repositoryItemCalcEditEditN.Name = "repositoryItemCalcEditEditN";
     this.repositoryItemCalcEditEditN.NullValuePrompt = "ادخل رقم";
     //
     // GCEditPrice
     //
     this.GCEditPrice.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditPrice.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditPrice.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditPrice.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditPrice.Caption = "سعر الوحــده";
     this.GCEditPrice.ColumnEdit = this.repositoryItemCalcEditEditC2;
     this.GCEditPrice.FieldName = "Price";
     this.GCEditPrice.Name = "GCEditPrice";
     this.GCEditPrice.OptionsColumn.AllowEdit = false;
     this.GCEditPrice.Visible = true;
     this.GCEditPrice.VisibleIndex = 3;
     this.GCEditPrice.Width = 94;
     //
     // repositoryItemCalcEditEditC2
     //
     this.repositoryItemCalcEditEditC2.AutoHeight = false;
     this.repositoryItemCalcEditEditC2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditEditC2.DisplayFormat.FormatString = "f";
     this.repositoryItemCalcEditEditC2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditC2.EditFormat.FormatString = "f";
     this.repositoryItemCalcEditEditC2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditC2.Mask.EditMask = "f";
     this.repositoryItemCalcEditEditC2.Name = "repositoryItemCalcEditEditC2";
     this.repositoryItemCalcEditEditC2.NullValuePrompt = "ادخل قيمه";
     //
     // GCEditDiscount
     //
     this.GCEditDiscount.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditDiscount.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditDiscount.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditDiscount.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditDiscount.Caption = "خصــــم";
     this.GCEditDiscount.ColumnEdit = this.repositoryItemCalcEditEditC2;
     this.GCEditDiscount.FieldName = "Discount";
     this.GCEditDiscount.Name = "GCEditDiscount";
     this.GCEditDiscount.Visible = true;
     this.GCEditDiscount.VisibleIndex = 1;
     this.GCEditDiscount.Width = 76;
     //
     // GCEditDiscountTypeIdDetail
     //
     this.GCEditDiscountTypeIdDetail.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditDiscountTypeIdDetail.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditDiscountTypeIdDetail.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditDiscountTypeIdDetail.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditDiscountTypeIdDetail.Caption = "نوع الخصم";
     this.GCEditDiscountTypeIdDetail.ColumnEdit = this.repositoryItemLookUpEditEditDiscountTypeIdDetail;
     this.GCEditDiscountTypeIdDetail.FieldName = "DiscountTypeId";
     this.GCEditDiscountTypeIdDetail.Name = "GCEditDiscountTypeIdDetail";
     this.GCEditDiscountTypeIdDetail.OptionsColumn.AllowEdit = false;
     this.GCEditDiscountTypeIdDetail.OptionsColumn.ReadOnly = true;
     this.GCEditDiscountTypeIdDetail.Visible = true;
     this.GCEditDiscountTypeIdDetail.VisibleIndex = 2;
     this.GCEditDiscountTypeIdDetail.Width = 105;
     //
     // repositoryItemLookUpEditEditDiscountTypeIdDetail
     //
     this.repositoryItemLookUpEditEditDiscountTypeIdDetail.AutoHeight = false;
     this.repositoryItemLookUpEditEditDiscountTypeIdDetail.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditDiscountTypeIdDetail.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("DiscountType", "اسم نوع الخصم")});
     this.repositoryItemLookUpEditEditDiscountTypeIdDetail.Name = "repositoryItemLookUpEditEditDiscountTypeIdDetail";
     this.repositoryItemLookUpEditEditDiscountTypeIdDetail.NullText = "";
     //
     // GCEditTotal
     //
     this.GCEditTotal.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditTotal.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditTotal.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditTotal.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditTotal.Caption = "المجموع";
     this.GCEditTotal.FieldName = "Total";
     this.GCEditTotal.Name = "GCEditTotal";
     this.GCEditTotal.OptionsColumn.AllowEdit = false;
     this.GCEditTotal.OptionsColumn.ReadOnly = true;
     this.GCEditTotal.Visible = true;
     this.GCEditTotal.VisibleIndex = 0;
     this.GCEditTotal.Width = 86;
     //
     // GCEditDetails
     //
     this.GCEditDetails.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditDetails.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditDetails.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditDetails.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditDetails.Caption = "تعديل";
     this.GCEditDetails.ColumnEdit = this.repositoryItemButtonEditEditDetails;
     this.GCEditDetails.Name = "GCEditDetails";
     this.GCEditDetails.OptionsColumn.ShowInCustomizationForm = false;
     //
     // repositoryItemButtonEditEditDetails
     //
     this.repositoryItemButtonEditEditDetails.AutoHeight = false;
     this.repositoryItemButtonEditEditDetails.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditEditDetails.Name = "repositoryItemButtonEditEditDetails";
     this.repositoryItemButtonEditEditDetails.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditEditDetails.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditEditDetails_ButtonClick);
     //
     // GCDelDetails
     //
     this.GCDelDetails.AppearanceCell.Options.UseTextOptions = true;
     this.GCDelDetails.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCDelDetails.AppearanceHeader.Options.UseTextOptions = true;
     this.GCDelDetails.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCDelDetails.Caption = "حذف";
     this.GCDelDetails.ColumnEdit = this.repositoryItemButtonEditDelDetails;
     this.GCDelDetails.Name = "GCDelDetails";
     this.GCDelDetails.OptionsColumn.ShowInCustomizationForm = false;
     //
     // repositoryItemButtonEditDelDetails
     //
     this.repositoryItemButtonEditDelDetails.AutoHeight = false;
     this.repositoryItemButtonEditDelDetails.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDelDetails.Name = "repositoryItemButtonEditDelDetails";
     this.repositoryItemButtonEditDelDetails.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDelDetails.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDelDetails_ButtonClick);
     //
     // GridControlEdit
     //
     this.GridControlEdit.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.GridControlEdit.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.GridControlEdit.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.GridControlEdit.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.GridControlEdit.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.GridControlEdit.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.GridControlEdit.Location = new System.Drawing.Point(3, 3);
     this.GridControlEdit.MainView = this.gridViewEdit;
     this.GridControlEdit.Name = "GridControlEdit";
     this.GridControlEdit.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditEditBillPayType,
     this.repositoryItemDateEditEditStoreTrDate,
     this.repositoryItemLookUpEditEditPERSONID,
     this.repositoryItemLookUpEditEditEMPID,
     this.repositoryItemCalcEditEditCalc,
     this.repositoryItemMemoExEditEditREM,
     this.repositoryItemLookUpEditEditStoreID,
     this.repositoryItemButtonEditEditDelete,
     this.repositoryItemButtonEditEditUpdate,
     this.repositoryItemLookUpEditEditDiscountTypeId,
     this.repositoryItemButtonEditTRHEL,
     this.repositoryItemCheckEditTRHEL,
     this.repositoryItemButtonEditPrint});
     this.GridControlEdit.Size = new System.Drawing.Size(747, 194);
     this.GridControlEdit.TabIndex = 0;
     this.GridControlEdit.UseEmbeddedNavigator = true;
     this.GridControlEdit.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewEdit});
     //
     // gridViewEdit
     //
     this.gridViewEdit.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.GCEditBillPayType,
     this.GCEditStoreTrDate,
     this.GCEditPERSONID,
     this.GCEditEMPID,
     this.GCEditTotalkasm,
     this.GCEditREM,
     this.GCEditStoreID,
     this.GCStoreTrIDDAY,
     this.GCStoreTrIDTYPE,
     this.GCEditDiscountTypeId,
     this.GCEditDelete,
     this.GCEditUpdate,
     this.gridColumn1,
     this.GCTarhel,
     this.gridColumn2});
     this.gridViewEdit.GridControl = this.GridControlEdit;
     this.gridViewEdit.Name = "gridViewEdit";
     this.gridViewEdit.OptionsView.ColumnAutoWidth = false;
     this.gridViewEdit.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewEdit_FocusedRowChanged);
     //
     // GCEditBillPayType
     //
     this.GCEditBillPayType.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditBillPayType.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditBillPayType.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditBillPayType.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditBillPayType.Caption = "نوع الدفع";
     this.GCEditBillPayType.ColumnEdit = this.repositoryItemLookUpEditEditBillPayType;
     this.GCEditBillPayType.FieldName = "BillPayTypeID";
     this.GCEditBillPayType.Name = "GCEditBillPayType";
     this.GCEditBillPayType.Visible = true;
     this.GCEditBillPayType.VisibleIndex = 5;
     this.GCEditBillPayType.Width = 96;
     //
     // repositoryItemLookUpEditEditBillPayType
     //
     this.repositoryItemLookUpEditEditBillPayType.AutoHeight = false;
     this.repositoryItemLookUpEditEditBillPayType.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditBillPayType.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeName", "اسم النوع")});
     this.repositoryItemLookUpEditEditBillPayType.Name = "repositoryItemLookUpEditEditBillPayType";
     this.repositoryItemLookUpEditEditBillPayType.NullText = "";
     this.repositoryItemLookUpEditEditBillPayType.NullValuePrompt = "اختار نوع الدفع";
     this.repositoryItemLookUpEditEditBillPayType.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     //
     // GCEditStoreTrDate
     //
     this.GCEditStoreTrDate.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditStoreTrDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditStoreTrDate.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditStoreTrDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditStoreTrDate.Caption = "تاريخ الفاتوره";
     this.GCEditStoreTrDate.ColumnEdit = this.repositoryItemDateEditEditStoreTrDate;
     this.GCEditStoreTrDate.FieldName = "StoreTrDate";
     this.GCEditStoreTrDate.Name = "GCEditStoreTrDate";
     this.GCEditStoreTrDate.Visible = true;
     this.GCEditStoreTrDate.VisibleIndex = 8;
     this.GCEditStoreTrDate.Width = 84;
     //
     // repositoryItemDateEditEditStoreTrDate
     //
     this.repositoryItemDateEditEditStoreTrDate.AutoHeight = false;
     this.repositoryItemDateEditEditStoreTrDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditEditStoreTrDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditEditStoreTrDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditEditStoreTrDate.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditEditStoreTrDate.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditEditStoreTrDate.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditEditStoreTrDate.Name = "repositoryItemDateEditEditStoreTrDate";
     this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // GCEditPERSONID
     //
     this.GCEditPERSONID.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditPERSONID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditPERSONID.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditPERSONID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditPERSONID.Caption = "العميـــل";
     this.GCEditPERSONID.ColumnEdit = this.repositoryItemLookUpEditEditPERSONID;
     this.GCEditPERSONID.FieldName = "PERSONID";
     this.GCEditPERSONID.Name = "GCEditPERSONID";
     this.GCEditPERSONID.Visible = true;
     this.GCEditPERSONID.VisibleIndex = 6;
     this.GCEditPERSONID.Width = 140;
     //
     // repositoryItemLookUpEditEditPERSONID
     //
     this.repositoryItemLookUpEditEditPERSONID.AutoHeight = false;
     this.repositoryItemLookUpEditEditPERSONID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditPERSONID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("stu_name", "الاسم")});
     this.repositoryItemLookUpEditEditPERSONID.DataSource = this.studentBindingSource1;
     this.repositoryItemLookUpEditEditPERSONID.DisplayMember = "stu_name";
     this.repositoryItemLookUpEditEditPERSONID.Name = "repositoryItemLookUpEditEditPERSONID";
     this.repositoryItemLookUpEditEditPERSONID.NullText = "";
     this.repositoryItemLookUpEditEditPERSONID.NullValuePrompt = "اختار عميــل";
     this.repositoryItemLookUpEditEditPERSONID.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditEditPERSONID.ValueMember = "stu_code";
     //
     // studentBindingSource1
     //
     this.studentBindingSource1.DataMember = "student";
     this.studentBindingSource1.DataSource = this.dsBookStoreQueries;
     //
     // GCEditEMPID
     //
     this.GCEditEMPID.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditEMPID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditEMPID.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditEMPID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditEMPID.Caption = "المسئـــول";
     this.GCEditEMPID.ColumnEdit = this.repositoryItemLookUpEditEditEMPID;
     this.GCEditEMPID.FieldName = "EMPID";
     this.GCEditEMPID.Name = "GCEditEMPID";
     this.GCEditEMPID.Visible = true;
     this.GCEditEMPID.VisibleIndex = 7;
     this.GCEditEMPID.Width = 146;
     //
     // repositoryItemLookUpEditEditEMPID
     //
     this.repositoryItemLookUpEditEditEMPID.AutoHeight = false;
     this.repositoryItemLookUpEditEditEMPID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditEMPID.Name = "repositoryItemLookUpEditEditEMPID";
     this.repositoryItemLookUpEditEditEMPID.NullText = "";
     this.repositoryItemLookUpEditEditEMPID.NullValuePrompt = "اختار مسئول";
     this.repositoryItemLookUpEditEditEMPID.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     //
     // GCEditTotalkasm
     //
     this.GCEditTotalkasm.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditTotalkasm.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditTotalkasm.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditTotalkasm.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditTotalkasm.Caption = "خصم كلـــي";
     this.GCEditTotalkasm.ColumnEdit = this.repositoryItemCalcEditEditCalc;
     this.GCEditTotalkasm.FieldName = "Totalkasm";
     this.GCEditTotalkasm.Name = "GCEditTotalkasm";
     this.GCEditTotalkasm.Visible = true;
     this.GCEditTotalkasm.VisibleIndex = 3;
     this.GCEditTotalkasm.Width = 73;
     //
     // repositoryItemCalcEditEditCalc
     //
     this.repositoryItemCalcEditEditCalc.AutoHeight = false;
     this.repositoryItemCalcEditEditCalc.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditEditCalc.DisplayFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditCalc.EditFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditCalc.Mask.EditMask = "c2";
     this.repositoryItemCalcEditEditCalc.Name = "repositoryItemCalcEditEditCalc";
     this.repositoryItemCalcEditEditCalc.NullValuePrompt = "ادخل قيمه";
     //
     // GCEditREM
     //
     this.GCEditREM.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditREM.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditREM.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditREM.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditREM.Caption = "معلومات";
     this.GCEditREM.ColumnEdit = this.repositoryItemMemoExEditEditREM;
     this.GCEditREM.FieldName = "REM";
     this.GCEditREM.Name = "GCEditREM";
     //
     // repositoryItemMemoExEditEditREM
     //
     this.repositoryItemMemoExEditEditREM.AutoHeight = false;
     this.repositoryItemMemoExEditEditREM.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditEditREM.Name = "repositoryItemMemoExEditEditREM";
     this.repositoryItemMemoExEditEditREM.NullValuePrompt = "ادخل معلومه";
     //
     // GCEditStoreID
     //
     this.GCEditStoreID.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditStoreID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditStoreID.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditStoreID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditStoreID.Caption = "المخــزن";
     this.GCEditStoreID.ColumnEdit = this.repositoryItemLookUpEditEditStoreID;
     this.GCEditStoreID.FieldName = "StoreID";
     this.GCEditStoreID.Name = "GCEditStoreID";
     //
     // repositoryItemLookUpEditEditStoreID
     //
     this.repositoryItemLookUpEditEditStoreID.AutoHeight = false;
     this.repositoryItemLookUpEditEditStoreID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditStoreID.Name = "repositoryItemLookUpEditEditStoreID";
     this.repositoryItemLookUpEditEditStoreID.NullText = "";
     this.repositoryItemLookUpEditEditStoreID.NullValuePrompt = "اختار مخزن";
     this.repositoryItemLookUpEditEditStoreID.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     //
     // GCStoreTrIDDAY
     //
     this.GCStoreTrIDDAY.AppearanceCell.Options.UseTextOptions = true;
     this.GCStoreTrIDDAY.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCStoreTrIDDAY.AppearanceHeader.Options.UseTextOptions = true;
     this.GCStoreTrIDDAY.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCStoreTrIDDAY.Caption = "رقم الطلب";
     this.GCStoreTrIDDAY.FieldName = "StoreTrIDDAY";
     this.GCStoreTrIDDAY.Name = "GCStoreTrIDDAY";
     this.GCStoreTrIDDAY.Visible = true;
     this.GCStoreTrIDDAY.VisibleIndex = 10;
     this.GCStoreTrIDDAY.Width = 89;
     //
     // GCStoreTrIDTYPE
     //
     this.GCStoreTrIDTYPE.AppearanceCell.Options.UseTextOptions = true;
     this.GCStoreTrIDTYPE.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCStoreTrIDTYPE.AppearanceHeader.Options.UseTextOptions = true;
     this.GCStoreTrIDTYPE.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCStoreTrIDTYPE.Caption = "رقم الفاتوره";
     this.GCStoreTrIDTYPE.FieldName = "StoreTrIDTYPE";
     this.GCStoreTrIDTYPE.Name = "GCStoreTrIDTYPE";
     this.GCStoreTrIDTYPE.Visible = true;
     this.GCStoreTrIDTYPE.VisibleIndex = 9;
     //
     // GCEditDiscountTypeId
     //
     this.GCEditDiscountTypeId.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditDiscountTypeId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditDiscountTypeId.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditDiscountTypeId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditDiscountTypeId.Caption = "نوع الخصم";
     this.GCEditDiscountTypeId.ColumnEdit = this.repositoryItemLookUpEditEditDiscountTypeId;
     this.GCEditDiscountTypeId.FieldName = "DiscountTypeId";
     this.GCEditDiscountTypeId.Name = "GCEditDiscountTypeId";
     this.GCEditDiscountTypeId.Visible = true;
     this.GCEditDiscountTypeId.VisibleIndex = 4;
     this.GCEditDiscountTypeId.Width = 67;
     //
     // repositoryItemLookUpEditEditDiscountTypeId
     //
     this.repositoryItemLookUpEditEditDiscountTypeId.AutoHeight = false;
     this.repositoryItemLookUpEditEditDiscountTypeId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditDiscountTypeId.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("DiscountType", "اسم النوع")});
     this.repositoryItemLookUpEditEditDiscountTypeId.Name = "repositoryItemLookUpEditEditDiscountTypeId";
     this.repositoryItemLookUpEditEditDiscountTypeId.NullText = "";
     this.repositoryItemLookUpEditEditDiscountTypeId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     //
     // GCEditDelete
     //
     this.GCEditDelete.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditDelete.Caption = "حـــــــــذف";
     this.GCEditDelete.ColumnEdit = this.repositoryItemButtonEditEditDelete;
     this.GCEditDelete.Name = "GCEditDelete";
     this.GCEditDelete.Visible = true;
     this.GCEditDelete.VisibleIndex = 11;
     //
     // repositoryItemButtonEditEditDelete
     //
     this.repositoryItemButtonEditEditDelete.AutoHeight = false;
     this.repositoryItemButtonEditEditDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditEditDelete.Name = "repositoryItemButtonEditEditDelete";
     this.repositoryItemButtonEditEditDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditEditDelete.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditEditDelete_ButtonClick);
     //
     // GCEditUpdate
     //
     this.GCEditUpdate.AppearanceCell.Options.UseTextOptions = true;
     this.GCEditUpdate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditUpdate.AppearanceHeader.Options.UseTextOptions = true;
     this.GCEditUpdate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCEditUpdate.Caption = "تعديــــــل";
     this.GCEditUpdate.ColumnEdit = this.repositoryItemButtonEditEditUpdate;
     this.GCEditUpdate.Name = "GCEditUpdate";
     this.GCEditUpdate.OptionsColumn.ShowInCustomizationForm = false;
     this.GCEditUpdate.Width = 54;
     //
     // repositoryItemButtonEditEditUpdate
     //
     this.repositoryItemButtonEditEditUpdate.AutoHeight = false;
     this.repositoryItemButtonEditEditUpdate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditEditUpdate.Name = "repositoryItemButtonEditEditUpdate";
     this.repositoryItemButtonEditEditUpdate.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditEditUpdate.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditEditUpdate_ButtonClick);
     //
     // 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.ColumnEdit = this.repositoryItemCheckEditTRHEL;
     this.gridColumn1.FieldName = "TRHEL";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 2;
     this.gridColumn1.Width = 67;
     //
     // repositoryItemCheckEditTRHEL
     //
     this.repositoryItemCheckEditTRHEL.AutoHeight = false;
     this.repositoryItemCheckEditTRHEL.Name = "repositoryItemCheckEditTRHEL";
     //
     // GCTarhel
     //
     this.GCTarhel.AppearanceCell.Options.UseTextOptions = true;
     this.GCTarhel.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCTarhel.AppearanceHeader.Options.UseTextOptions = true;
     this.GCTarhel.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.GCTarhel.Caption = "اغلاق";
     this.GCTarhel.ColumnEdit = this.repositoryItemButtonEditTRHEL;
     this.GCTarhel.Name = "GCTarhel";
     this.GCTarhel.Visible = true;
     this.GCTarhel.VisibleIndex = 0;
     this.GCTarhel.Width = 64;
     //
     // repositoryItemButtonEditTRHEL
     //
     this.repositoryItemButtonEditTRHEL.AutoHeight = false;
     this.repositoryItemButtonEditTRHEL.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Redo)});
     this.repositoryItemButtonEditTRHEL.Name = "repositoryItemButtonEditTRHEL";
     this.repositoryItemButtonEditTRHEL.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditTRHEL.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditEditTarhel_ButtonClick);
     //
     // 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.repositoryItemButtonEditPrint;
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // repositoryItemButtonEditPrint
     //
     this.repositoryItemButtonEditPrint.AutoHeight = false;
     this.repositoryItemButtonEditPrint.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemButtonEditPrint.Name = "repositoryItemButtonEditPrint";
     this.repositoryItemButtonEditPrint.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditPrint.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditPrint_ButtonClick);
     //
     // xtraTabPageTarhel
     //
     this.xtraTabPageTarhel.Controls.Add(this.groupControl4);
     this.xtraTabPageTarhel.Controls.Add(this.groupControl5);
     this.xtraTabPageTarhel.Name = "xtraTabPageTarhel";
     this.xtraTabPageTarhel.Size = new System.Drawing.Size(754, 528);
     this.xtraTabPageTarhel.Text = "اغلاق";
     //
     // groupControl4
     //
     this.groupControl4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl4.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControl4.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControl4.Controls.Add(this.TxtBarcodeClose);
     this.groupControl4.Controls.Add(this.labelControl23);
     this.groupControl4.Location = new System.Drawing.Point(3, 3);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(748, 86);
     this.groupControl4.TabIndex = 0;
     this.groupControl4.Text = "الباركـــــــــــــود";
     //
     // TxtBarcodeClose
     //
     this.TxtBarcodeClose.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.TxtBarcodeClose.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.TxtBarcodeClose.Location = new System.Drawing.Point(224, 47);
     this.TxtBarcodeClose.Name = "TxtBarcodeClose";
     this.TxtBarcodeClose.Size = new System.Drawing.Size(228, 13);
     this.TxtBarcodeClose.TabIndex = 0;
     this.TxtBarcodeClose.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.TxtBarcodeClose.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtBarcodeClose_KeyPress);
     //
     // labelControl23
     //
     this.labelControl23.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl23.Location = new System.Drawing.Point(458, 47);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(66, 13);
     this.labelControl23.TabIndex = 2;
     this.labelControl23.Text = "اسحب الباركود";
     //
     // groupControl5
     //
     this.groupControl5.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.groupControl5.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControl5.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControl5.Controls.Add(this.LBBarCodeCloseLog);
     this.groupControl5.Location = new System.Drawing.Point(3, 95);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(748, 412);
     this.groupControl5.TabIndex = 1;
     this.groupControl5.Text = "...";
     //
     // LBBarCodeCloseLog
     //
     this.LBBarCodeCloseLog.Dock = System.Windows.Forms.DockStyle.Fill;
     this.LBBarCodeCloseLog.FormattingEnabled = true;
     this.LBBarCodeCloseLog.Location = new System.Drawing.Point(2, 21);
     this.LBBarCodeCloseLog.Name = "LBBarCodeCloseLog";
     this.LBBarCodeCloseLog.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.LBBarCodeCloseLog.Size = new System.Drawing.Size(744, 389);
     this.LBBarCodeCloseLog.TabIndex = 0;
     //
     // cDalsofofTableAdapter
     //
     this.cDalsofofTableAdapter.ClearBeforeFill = true;
     //
     // studentTableAdapter
     //
     this.studentTableAdapter.ClearBeforeFill = true;
     //
     // DataSellStuBillBarCodeFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 580);
     this.Controls.Add(this.xtraTabControlBuyBill);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "DataSellStuBillBarCodeFrm";
     this.Text = "اذن صرف للطالب";
     this.Load += new System.EventHandler(this.DataSellBillBarCodeFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlBuyBill)).EndInit();
     this.xtraTabControlBuyBill.ResumeLayout(false);
     this.xtraTabPageAdd.ResumeLayout(false);
     this.xtraTabPageAdd.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtItemCount.Properties)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     this.xtraTabPage2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CBESanf.Properties)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     this.xtraTabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CBETasnef.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlAddDetials)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditharakatype)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditAddSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditNumirc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditMoney)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDiscountTypeId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LblTotal.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MemInfo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEDiscountTypeId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtTotalkasm.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEStoreID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEBillPayType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEEMPID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEPERSONID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.studentBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsBookStoreQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDDAY.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtBillID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUESaf.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDalsofofBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     this.xtraTabPageEdit.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GCEditBarcode)).EndInit();
     this.GCEditBarcode.ResumeLayout(false);
     this.GCEditBarcode.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewEditDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditharakatype)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditN)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditC2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditDiscountTypeIdDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDelDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlEdit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewEdit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditBillPayType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditPERSONID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.studentBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditEMPID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditCalc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditEditREM)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditStoreID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditDiscountTypeId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditUpdate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditTRHEL)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditTRHEL)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditPrint)).EndInit();
     this.xtraTabPageTarhel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.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.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.qry09BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicateWarasa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitteWarasa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicateM = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitteM = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonNameR = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonNID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colyasref = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = 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.LSMSTBLDofatSarf = new DevExpress.Data.Linq.LinqServerModeSource();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.LUETBLDofatSarf = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDofatSarf1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.colDofatSarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.qry09TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.Qry09TableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.qry09BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).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.LSMSTBLDofatSarf)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUETBLDofatSarf.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlData.DataSource = this.qry09BindingSource;
     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, 404);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // qry09BindingSource
     //
     this.qry09BindingSource.DataMember = "Qry09";
     this.qry09BindingSource.DataSource = this.dsQueries;
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colpersonName,
     this.colMMashatName,
     this.colSyndicateWarasa,
     this.colSubCommitteWarasa,
     this.colSyndicateM,
     this.colSubCommitteM,
     this.colpersonNameR,
     this.colpersonNID,
     this.colsarfnumber,
     this.colyasref,
     this.coldatein,
     this.colRealName,
     this.colPersonId,
     this.colMMashatId});
     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;
     //
     // 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 = 0;
     //
     // 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 = 4;
     //
     // colSyndicateWarasa
     //
     this.colSyndicateWarasa.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicateWarasa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateWarasa.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicateWarasa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateWarasa.Caption = "فرعية الوريث";
     this.colSyndicateWarasa.FieldName = "SyndicateW";
     this.colSyndicateWarasa.Name = "colSyndicateWarasa";
     this.colSyndicateWarasa.Visible = true;
     this.colSyndicateWarasa.VisibleIndex = 2;
     this.colSyndicateWarasa.Width = 77;
     //
     // colSubCommitteWarasa
     //
     this.colSubCommitteWarasa.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitteWarasa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteWarasa.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitteWarasa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteWarasa.Caption = "لجنة الوريث";
     this.colSubCommitteWarasa.FieldName = "SubCommitteW";
     this.colSubCommitteWarasa.Name = "colSubCommitteWarasa";
     this.colSubCommitteWarasa.Visible = true;
     this.colSubCommitteWarasa.VisibleIndex = 3;
     //
     // colSyndicateM
     //
     this.colSyndicateM.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicateM.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateM.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicateM.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateM.Caption = "فرعية العضو";
     this.colSyndicateM.FieldName = "SyndicateM";
     this.colSyndicateM.Name = "colSyndicateM";
     this.colSyndicateM.Visible = true;
     this.colSyndicateM.VisibleIndex = 5;
     //
     // colSubCommitteM
     //
     this.colSubCommitteM.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitteM.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteM.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitteM.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteM.Caption = "لجنة العضو";
     this.colSubCommitteM.FieldName = "SubCommitteM";
     this.colSubCommitteM.Name = "colSubCommitteM";
     this.colSubCommitteM.Visible = true;
     this.colSubCommitteM.VisibleIndex = 6;
     //
     // colpersonNameR
     //
     this.colpersonNameR.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonNameR.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonNameR.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonNameR.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonNameR.Caption = "اسم المسئول";
     this.colpersonNameR.FieldName = "personNameR";
     this.colpersonNameR.Name = "colpersonNameR";
     this.colpersonNameR.Visible = true;
     this.colpersonNameR.VisibleIndex = 1;
     this.colpersonNameR.Width = 92;
     //
     // colpersonNID
     //
     this.colpersonNID.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonNID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonNID.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonNID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonNID.Caption = "الرقم القومي";
     this.colpersonNID.FieldName = "personNID";
     this.colpersonNID.Name = "colpersonNID";
     this.colpersonNID.Visible = true;
     this.colpersonNID.VisibleIndex = 9;
     this.colpersonNID.Width = 80;
     //
     // 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 = 7;
     //
     // 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 = 8;
     this.colyasref.Width = 46;
     //
     // 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 = 11;
     //
     // 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 = 10;
     //
     // 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 = 12;
     //
     // 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 = 13;
     //
     // 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()});
     //
     // LSMSTBLDofatSarf
     //
     this.LSMSTBLDofatSarf.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLDofatSarf);
     this.LSMSTBLDofatSarf.KeyExpression = "[DofatSarfId]";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.LUETBLDofatSarf);
     this.panelControl1.Controls.Add(this.labelControl1);
     this.panelControl1.Controls.Add(this.btnPrintExport);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.panelControl1.Size = new System.Drawing.Size(734, 47);
     this.panelControl1.TabIndex = 3;
     //
     // LUETBLDofatSarf
     //
     this.LUETBLDofatSarf.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.LUETBLDofatSarf.Location = new System.Drawing.Point(426, 15);
     this.LUETBLDofatSarf.Name = "LUETBLDofatSarf";
     this.LUETBLDofatSarf.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.LUETBLDofatSarf.Properties.Appearance.Options.UseFont = true;
     this.LUETBLDofatSarf.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUETBLDofatSarf.Properties.DataSource = this.LSMSTBLDofatSarf;
     this.LUETBLDofatSarf.Properties.DisplayMember = "DofatSarf";
     this.LUETBLDofatSarf.Properties.NullText = "";
     this.LUETBLDofatSarf.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUETBLDofatSarf.Properties.ValueMember = "DofatSarfId";
     this.LUETBLDofatSarf.Properties.View = this.gridLookUpEdit1View;
     this.LUETBLDofatSarf.Size = new System.Drawing.Size(249, 22);
     this.LUETBLDofatSarf.TabIndex = 3;
     this.LUETBLDofatSarf.EditValueChanged += new System.EventHandler(this.LUETBLDofatSarf_EditValueChanged);
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDofatSarf1});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colDofatSarf1
     //
     this.colDofatSarf1.Caption = "الدفعة";
     this.colDofatSarf1.FieldName = "DofatSarf";
     this.colDofatSarf1.Name = "colDofatSarf1";
     this.colDofatSarf1.Visible = true;
     this.colDofatSarf1.VisibleIndex = 0;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelControl1.Location = new System.Drawing.Point(681, 20);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(41, 13);
     this.labelControl1.TabIndex = 2;
     this.labelControl1.Text = "الدفعــــة";
     //
     // 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(12, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 1;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // colDofatSarf
     //
     this.colDofatSarf.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.Caption = "الدفعـــــــة";
     this.colDofatSarf.FieldName = "DofatSarf";
     this.colDofatSarf.Name = "colDofatSarf";
     this.colDofatSarf.Visible = true;
     this.colDofatSarf.VisibleIndex = 0;
     //
     // qry09TableAdapter
     //
     this.qry09TableAdapter.ClearBeforeFill = true;
     //
     // Qry09Frm
     //
     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 = "Qry09Frm";
     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.qry09BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).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.LSMSTBLDofatSarf)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUETBLDofatSarf.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #16
0
 public static object GetSelectData(DevExpress.XtraEditors.GridLookUpEdit grlLoaiTSCD)
 {
     return(grlLoaiTSCD.Properties.GetRowByKeyValue(grlLoaiTSCD.EditValue));
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.grpPhong = new DevExpress.XtraEditors.GroupControl();
     this.glkTinhTrang = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMaTT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTenTT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnDongY = new System.Windows.Forms.Button();
     this.btnHuy = new System.Windows.Forms.Button();
     this.btnThem = new System.Windows.Forms.Button();
     this.btnXoa = new System.Windows.Forms.Button();
     this.btnSua = new System.Windows.Forms.Button();
     this.txtGiaPhong = new System.Windows.Forms.TextBox();
     this.lblGia = new System.Windows.Forms.Label();
     this.txtGhiChu = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.lblTinhTrang = new System.Windows.Forms.Label();
     this.glkLoaiPhong = new DevExpress.XtraEditors.GridLookUpEdit();
     this.lblLP = new System.Windows.Forms.Label();
     this.glkKieuPhong = new DevExpress.XtraEditors.GridLookUpEdit();
     this.lblKP = new System.Windows.Forms.Label();
     this.txtMaPhong = new System.Windows.Forms.TextBox();
     this.lblMaPhong = new System.Windows.Forms.Label();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridControlPhong = new DevExpress.XtraGrid.GridControl();
     this.gridViewPhong = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.grpPhong)).BeginInit();
     this.grpPhong.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.glkTinhTrang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.glkLoaiPhong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.glkKieuPhong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPhong)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPhong)).BeginInit();
     this.SuspendLayout();
     //
     // grpPhong
     //
     this.grpPhong.Controls.Add(this.glkTinhTrang);
     this.grpPhong.Controls.Add(this.btnDongY);
     this.grpPhong.Controls.Add(this.btnHuy);
     this.grpPhong.Controls.Add(this.btnThem);
     this.grpPhong.Controls.Add(this.btnXoa);
     this.grpPhong.Controls.Add(this.btnSua);
     this.grpPhong.Controls.Add(this.txtGiaPhong);
     this.grpPhong.Controls.Add(this.lblGia);
     this.grpPhong.Controls.Add(this.txtGhiChu);
     this.grpPhong.Controls.Add(this.label6);
     this.grpPhong.Controls.Add(this.lblTinhTrang);
     this.grpPhong.Controls.Add(this.glkLoaiPhong);
     this.grpPhong.Controls.Add(this.lblLP);
     this.grpPhong.Controls.Add(this.glkKieuPhong);
     this.grpPhong.Controls.Add(this.lblKP);
     this.grpPhong.Controls.Add(this.txtMaPhong);
     this.grpPhong.Controls.Add(this.lblMaPhong);
     this.grpPhong.Dock = System.Windows.Forms.DockStyle.Left;
     this.grpPhong.Location = new System.Drawing.Point(0, 0);
     this.grpPhong.Name = "grpPhong";
     this.grpPhong.Size = new System.Drawing.Size(346, 591);
     this.grpPhong.TabIndex = 0;
     this.grpPhong.Text = "Thông tin phòng";
     //
     // glkTinhTrang
     //
     this.glkTinhTrang.Enabled = false;
     this.glkTinhTrang.Location = new System.Drawing.Point(61, 132);
     this.glkTinhTrang.Name = "glkTinhTrang";
     this.glkTinhTrang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.glkTinhTrang.Properties.View = this.gridView3;
     this.glkTinhTrang.Size = new System.Drawing.Size(255, 20);
     this.glkTinhTrang.TabIndex = 42;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMaTT,
     this.colTenTT});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // colMaTT
     //
     this.colMaTT.Caption = "Mã tình trạng";
     this.colMaTT.FieldName = "MATT";
     this.colMaTT.Name = "colMaTT";
     this.colMaTT.Visible = true;
     this.colMaTT.VisibleIndex = 0;
     //
     // colTenTT
     //
     this.colTenTT.Caption = "Tình trạng";
     this.colTenTT.FieldName = "TENTT";
     this.colTenTT.Name = "colTenTT";
     this.colTenTT.Visible = true;
     this.colTenTT.VisibleIndex = 1;
     //
     // btnDongY
     //
     this.btnDongY.Location = new System.Drawing.Point(83, 256);
     this.btnDongY.Name = "btnDongY";
     this.btnDongY.Size = new System.Drawing.Size(74, 29);
     this.btnDongY.TabIndex = 41;
     this.btnDongY.Text = "Đồng ý";
     this.btnDongY.UseVisualStyleBackColor = true;
     this.btnDongY.Visible = false;
     this.btnDongY.Click += new System.EventHandler(this.btnDongY_Click);
     //
     // btnHuy
     //
     this.btnHuy.Location = new System.Drawing.Point(163, 256);
     this.btnHuy.Name = "btnHuy";
     this.btnHuy.Size = new System.Drawing.Size(74, 29);
     this.btnHuy.TabIndex = 40;
     this.btnHuy.Text = "Hủy";
     this.btnHuy.UseVisualStyleBackColor = true;
     this.btnHuy.Visible = false;
     this.btnHuy.Click += new System.EventHandler(this.btnHuy_Click);
     //
     // btnThem
     //
     this.btnThem.Location = new System.Drawing.Point(83, 256);
     this.btnThem.Name = "btnThem";
     this.btnThem.Size = new System.Drawing.Size(74, 29);
     this.btnThem.TabIndex = 39;
     this.btnThem.Text = "Thêm";
     this.btnThem.UseVisualStyleBackColor = true;
     this.btnThem.Click += new System.EventHandler(this.btnThem_Click);
     //
     // btnXoa
     //
     this.btnXoa.Location = new System.Drawing.Point(163, 256);
     this.btnXoa.Name = "btnXoa";
     this.btnXoa.Size = new System.Drawing.Size(74, 29);
     this.btnXoa.TabIndex = 38;
     this.btnXoa.Text = "Xóa";
     this.btnXoa.UseVisualStyleBackColor = true;
     this.btnXoa.Click += new System.EventHandler(this.btnXoa_Click);
     //
     // btnSua
     //
     this.btnSua.Location = new System.Drawing.Point(243, 256);
     this.btnSua.Name = "btnSua";
     this.btnSua.Size = new System.Drawing.Size(74, 29);
     this.btnSua.TabIndex = 37;
     this.btnSua.Text = "Sửa";
     this.btnSua.UseVisualStyleBackColor = true;
     this.btnSua.Click += new System.EventHandler(this.btnSua_Click);
     //
     // txtGiaPhong
     //
     this.txtGiaPhong.Enabled = false;
     this.txtGiaPhong.Location = new System.Drawing.Point(62, 105);
     this.txtGiaPhong.Name = "txtGiaPhong";
     this.txtGiaPhong.Size = new System.Drawing.Size(254, 21);
     this.txtGiaPhong.TabIndex = 36;
     //
     // lblGia
     //
     this.lblGia.AutoSize = true;
     this.lblGia.Enabled = false;
     this.lblGia.Location = new System.Drawing.Point(3, 105);
     this.lblGia.Name = "lblGia";
     this.lblGia.Size = new System.Drawing.Size(55, 13);
     this.lblGia.TabIndex = 35;
     this.lblGia.Text = "Giá phòng";
     //
     // txtGhiChu
     //
     this.txtGhiChu.Enabled = false;
     this.txtGhiChu.Location = new System.Drawing.Point(62, 158);
     this.txtGhiChu.Multiline = true;
     this.txtGhiChu.Name = "txtGhiChu";
     this.txtGhiChu.Size = new System.Drawing.Size(254, 92);
     this.txtGhiChu.TabIndex = 31;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(3, 161);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(42, 13);
     this.label6.TabIndex = 30;
     this.label6.Text = "Ghi chú";
     //
     // lblTinhTrang
     //
     this.lblTinhTrang.AutoSize = true;
     this.lblTinhTrang.Location = new System.Drawing.Point(3, 135);
     this.lblTinhTrang.Name = "lblTinhTrang";
     this.lblTinhTrang.Size = new System.Drawing.Size(56, 13);
     this.lblTinhTrang.TabIndex = 6;
     this.lblTinhTrang.Text = "Tình trạng";
     //
     // glkLoaiPhong
     //
     this.glkLoaiPhong.EditValue = "";
     this.glkLoaiPhong.Enabled = false;
     this.glkLoaiPhong.Location = new System.Drawing.Point(62, 79);
     this.glkLoaiPhong.Name = "glkLoaiPhong";
     this.glkLoaiPhong.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.glkLoaiPhong.Size = new System.Drawing.Size(254, 20);
     this.glkLoaiPhong.TabIndex = 5;
     //
     // lblLP
     //
     this.lblLP.AutoSize = true;
     this.lblLP.Location = new System.Drawing.Point(3, 82);
     this.lblLP.Name = "lblLP";
     this.lblLP.Size = new System.Drawing.Size(59, 13);
     this.lblLP.TabIndex = 4;
     this.lblLP.Text = "Loại phòng";
     //
     // glkKieuPhong
     //
     this.glkKieuPhong.EditValue = "";
     this.glkKieuPhong.Enabled = false;
     this.glkKieuPhong.Location = new System.Drawing.Point(62, 53);
     this.glkKieuPhong.Name = "glkKieuPhong";
     this.glkKieuPhong.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.glkKieuPhong.Size = new System.Drawing.Size(254, 20);
     this.glkKieuPhong.TabIndex = 3;
     //
     // lblKP
     //
     this.lblKP.AutoSize = true;
     this.lblKP.Location = new System.Drawing.Point(3, 59);
     this.lblKP.Name = "lblKP";
     this.lblKP.Size = new System.Drawing.Size(60, 13);
     this.lblKP.TabIndex = 2;
     this.lblKP.Text = "Kiểu phòng";
     //
     // txtMaPhong
     //
     this.txtMaPhong.Enabled = false;
     this.txtMaPhong.Location = new System.Drawing.Point(62, 27);
     this.txtMaPhong.Name = "txtMaPhong";
     this.txtMaPhong.Size = new System.Drawing.Size(254, 21);
     this.txtMaPhong.TabIndex = 1;
     this.txtMaPhong.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMaPhong_KeyPress);
     //
     // lblMaPhong
     //
     this.lblMaPhong.AutoSize = true;
     this.lblMaPhong.Location = new System.Drawing.Point(3, 30);
     this.lblMaPhong.Name = "lblMaPhong";
     this.lblMaPhong.Size = new System.Drawing.Size(54, 13);
     this.lblMaPhong.TabIndex = 0;
     this.lblMaPhong.Text = "Mã phòng";
     //
     // gridView2
     //
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridView1
     //
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // gridControlPhong
     //
     this.gridControlPhong.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlPhong.Location = new System.Drawing.Point(346, 0);
     this.gridControlPhong.MainView = this.gridViewPhong;
     this.gridControlPhong.Name = "gridControlPhong";
     this.gridControlPhong.Size = new System.Drawing.Size(936, 591);
     this.gridControlPhong.TabIndex = 1;
     this.gridControlPhong.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewPhong});
     //
     // gridViewPhong
     //
     this.gridViewPhong.GridControl = this.gridControlPhong;
     this.gridViewPhong.Name = "gridViewPhong";
     this.gridViewPhong.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridViewPhong.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridViewPhong.OptionsBehavior.AllowFixedGroups = DevExpress.Utils.DefaultBoolean.False;
     this.gridViewPhong.OptionsBehavior.Editable = false;
     this.gridViewPhong.OptionsView.ShowGroupPanel = false;
     //
     // backgroundWorker1
     //
     this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
     this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
     //
     // usrDanhSachPhong
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.gridControlPhong);
     this.Controls.Add(this.grpPhong);
     this.Name = "usrDanhSachPhong";
     this.Size = new System.Drawing.Size(1282, 591);
     this.Load += new System.EventHandler(this.usrDanhSachPhong_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpPhong)).EndInit();
     this.grpPhong.ResumeLayout(false);
     this.grpPhong.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.glkTinhTrang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.glkLoaiPhong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.glkKieuPhong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPhong)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPhong)).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(Material));
     this.iclSmall = new DevExpress.Utils.ImageCollection(this.components);
     this.tabctrlMain = new DevExpress.XtraTab.XtraTabControl();
     this.tabpageMaterial = new DevExpress.XtraTab.XtraTabPage();
     this.cbxActive = new DevExpress.XtraEditors.CheckEdit();
     this.cbxBroken = new DevExpress.XtraEditors.CheckEdit();
     this.louResponsable = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.louCreator = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gdcoName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gdcoSurname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtName = new DevExpress.XtraEditors.TextEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.louSubType = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.louType = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.louCategory = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.louVehicle = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.louSupplier = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.memoDescription = new DevExpress.XtraEditors.MemoEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.txtInternalNumber = new DevExpress.XtraEditors.TextEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.txtSerieNumber = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.tabpageHistory = new DevExpress.XtraTab.XtraTabPage();
     this.btnRemoveMemo = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddMemo = new DevExpress.XtraEditors.SimpleButton();
     this.gdcMemo = new DevExpress.XtraGrid.GridControl();
     this.gdvMemo = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gdcoMemoDateTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gdcoMemo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.tabpageMaintenance = new DevExpress.XtraTab.XtraTabPage();
     this.btnRemoveMaintenance = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddMaintenance = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.spinMaintenanceFrequency = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.dteNextMaintenance = new DevExpress.XtraEditors.DateEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.gdcMaintenance = new DevExpress.XtraGrid.GridControl();
     this.gdvMaintenance = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gdcoDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gdcoRemark = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEditRemark = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.tabpageFinancial = new DevExpress.XtraTab.XtraTabPage();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.calcPrice = new DevExpress.XtraEditors.CalcEdit();
     this.dtePurchasedOn = new DevExpress.XtraEditors.DateEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.tabpageDocuments = new DevExpress.XtraTab.XtraTabPage();
     this.iclMedium = new DevExpress.Utils.ImageCollection(this.components);
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.gdcoMemoDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutViewField_gdcoMileage = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     ((System.ComponentModel.ISupportInitialize)(this.iclSmall)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabctrlMain)).BeginInit();
     this.tabctrlMain.SuspendLayout();
     this.tabpageMaterial.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxActive.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxBroken.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louResponsable.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louCreator.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.louSubType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louVehicle.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louSupplier.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInternalNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSerieNumber.Properties)).BeginInit();
     this.tabpageHistory.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gdcMemo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdvMemo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit)).BeginInit();
     this.tabpageMaintenance.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinMaintenanceFrequency.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dteNextMaintenance.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dteNextMaintenance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdcMaintenance)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdvMaintenance)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEditRemark)).BeginInit();
     this.tabpageFinancial.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.calcPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtePurchasedOn.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtePurchasedOn.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.iclMedium)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_gdcoMileage)).BeginInit();
     this.SuspendLayout();
     //
     // iclSmall
     //
     this.iclSmall.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("iclSmall.ImageStream")));
     this.iclSmall.Images.SetKeyName(0, "add_user_16.png");
     this.iclSmall.Images.SetKeyName(1, "arrow_left_16.png");
     this.iclSmall.Images.SetKeyName(2, "arrow_left_16_d.png");
     this.iclSmall.Images.SetKeyName(3, "arrow_left_16_h.png");
     this.iclSmall.Images.SetKeyName(4, "arrow_right_16.png");
     this.iclSmall.Images.SetKeyName(5, "arrow_right_16_d.png");
     this.iclSmall.Images.SetKeyName(6, "arrow_right_16_h.png");
     this.iclSmall.Images.SetKeyName(7, "copy_clipboard_16.png");
     this.iclSmall.Images.SetKeyName(8, "copy_clipboard_16_d.png");
     this.iclSmall.Images.SetKeyName(9, "copy_clipboard_16_h.png");
     this.iclSmall.Images.SetKeyName(10, "copy_clipboard_lined_16.png");
     this.iclSmall.Images.SetKeyName(11, "copy_clipboard_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(12, "copy_clipboard_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(13, "copy_to_folder_16.png");
     this.iclSmall.Images.SetKeyName(14, "copy_to_folder_16_d.png");
     this.iclSmall.Images.SetKeyName(15, "copy_to_folder_16_h.png");
     this.iclSmall.Images.SetKeyName(16, "cut_clipboard_16.png");
     this.iclSmall.Images.SetKeyName(17, "cut_clipboard_16_d.png");
     this.iclSmall.Images.SetKeyName(18, "cut_clipboard_16_h.png");
     this.iclSmall.Images.SetKeyName(19, "delete_16.png");
     this.iclSmall.Images.SetKeyName(20, "delete_16_d.png");
     this.iclSmall.Images.SetKeyName(21, "delete_16_h.png");
     this.iclSmall.Images.SetKeyName(22, "dollar_16.png");
     this.iclSmall.Images.SetKeyName(23, "equipment_16.png");
     this.iclSmall.Images.SetKeyName(24, "excel-16.png");
     this.iclSmall.Images.SetKeyName(25, "favorites_16.png");
     this.iclSmall.Images.SetKeyName(26, "favorites_16_d.png");
     this.iclSmall.Images.SetKeyName(27, "favorites_16_h.png");
     this.iclSmall.Images.SetKeyName(28, "folder_closed_16.png");
     this.iclSmall.Images.SetKeyName(29, "folder_closed_16_d.png");
     this.iclSmall.Images.SetKeyName(30, "folder_closed_16_h.png");
     this.iclSmall.Images.SetKeyName(31, "folder_open_16.png");
     this.iclSmall.Images.SetKeyName(32, "folder_open_16_d.png");
     this.iclSmall.Images.SetKeyName(33, "folder_open_16_h.png");
     this.iclSmall.Images.SetKeyName(34, "folder_options_16.png");
     this.iclSmall.Images.SetKeyName(35, "folder_options_16_d.png");
     this.iclSmall.Images.SetKeyName(36, "folder_options_16_h.png");
     this.iclSmall.Images.SetKeyName(37, "folder_options_b_16.png");
     this.iclSmall.Images.SetKeyName(38, "folder_options_b_16_d.png");
     this.iclSmall.Images.SetKeyName(39, "folder_options_b_16_h.png");
     this.iclSmall.Images.SetKeyName(40, "folders_16.png");
     this.iclSmall.Images.SetKeyName(41, "folders_16_d.png");
     this.iclSmall.Images.SetKeyName(42, "folders_16_h.png");
     this.iclSmall.Images.SetKeyName(43, "help-16.png");
     this.iclSmall.Images.SetKeyName(44, "history_1_16.png");
     this.iclSmall.Images.SetKeyName(45, "history_1_16_d.png");
     this.iclSmall.Images.SetKeyName(46, "history_1_16_h.png");
     this.iclSmall.Images.SetKeyName(47, "history_16.png");
     this.iclSmall.Images.SetKeyName(48, "history_16_d.png");
     this.iclSmall.Images.SetKeyName(49, "history_16_h.png");
     this.iclSmall.Images.SetKeyName(50, "history_b1_16.png");
     this.iclSmall.Images.SetKeyName(51, "history_b1_16_d.png");
     this.iclSmall.Images.SetKeyName(52, "history_b1_16_h.png");
     this.iclSmall.Images.SetKeyName(53, "history_b_16.png");
     this.iclSmall.Images.SetKeyName(54, "history_b_16_d.png");
     this.iclSmall.Images.SetKeyName(55, "history_b_16_h.png");
     this.iclSmall.Images.SetKeyName(56, "home_16.png");
     this.iclSmall.Images.SetKeyName(57, "home_16_d.png");
     this.iclSmall.Images.SetKeyName(58, "home_16_h.png");
     this.iclSmall.Images.SetKeyName(59, "info-16.png");
     this.iclSmall.Images.SetKeyName(60, "logout_16.png");
     this.iclSmall.Images.SetKeyName(61, "mail_16.png");
     this.iclSmall.Images.SetKeyName(62, "mail_16_d.png");
     this.iclSmall.Images.SetKeyName(63, "mail_16_h.png");
     this.iclSmall.Images.SetKeyName(64, "mail_b_16.png");
     this.iclSmall.Images.SetKeyName(65, "mail_b_16_d.png");
     this.iclSmall.Images.SetKeyName(66, "mail_b_16_h.png");
     this.iclSmall.Images.SetKeyName(67, "move_to_folder_16.png");
     this.iclSmall.Images.SetKeyName(68, "move_to_folder_16_d.png");
     this.iclSmall.Images.SetKeyName(69, "move_to_folder_16_h.png");
     this.iclSmall.Images.SetKeyName(70, "new_document_16.png");
     this.iclSmall.Images.SetKeyName(71, "new_document_16_d.png");
     this.iclSmall.Images.SetKeyName(72, "new_document_16_h.png");
     this.iclSmall.Images.SetKeyName(73, "new_document_lined_16.png");
     this.iclSmall.Images.SetKeyName(74, "new_document_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(75, "new_document_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(76, "ok_16.png");
     this.iclSmall.Images.SetKeyName(77, "open_document_16.png");
     this.iclSmall.Images.SetKeyName(78, "open_document_16_d.png");
     this.iclSmall.Images.SetKeyName(79, "open_document_16_h.png");
     this.iclSmall.Images.SetKeyName(80, "paste_clipboard_16.png");
     this.iclSmall.Images.SetKeyName(81, "paste_clipboard_16_d.png");
     this.iclSmall.Images.SetKeyName(82, "paste_clipboard_16_h.png");
     this.iclSmall.Images.SetKeyName(83, "paste_clipboard_lined_16.png");
     this.iclSmall.Images.SetKeyName(84, "paste_clipboard_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(85, "paste_clipboard_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(86, "print_16.png");
     this.iclSmall.Images.SetKeyName(87, "print_16_d.png");
     this.iclSmall.Images.SetKeyName(88, "print_16_h.png");
     this.iclSmall.Images.SetKeyName(89, "print_preview_16.png");
     this.iclSmall.Images.SetKeyName(90, "print_preview_16_d.png");
     this.iclSmall.Images.SetKeyName(91, "print_preview_16_h.png");
     this.iclSmall.Images.SetKeyName(92, "print_preview_lined_16.png");
     this.iclSmall.Images.SetKeyName(93, "print_preview_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(94, "print_preview_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(95, "properties_document_16.png");
     this.iclSmall.Images.SetKeyName(96, "properties_document_16_d.png");
     this.iclSmall.Images.SetKeyName(97, "properties_document_16_h.png");
     this.iclSmall.Images.SetKeyName(98, "properties_document_b_16.png");
     this.iclSmall.Images.SetKeyName(99, "properties_document_b_16_d.png");
     this.iclSmall.Images.SetKeyName(100, "properties_document_b_16_h.png");
     this.iclSmall.Images.SetKeyName(101, "properties_document_b_lined_16.png");
     this.iclSmall.Images.SetKeyName(102, "properties_document_b_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(103, "properties_document_b_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(104, "properties_document_lined_16.png");
     this.iclSmall.Images.SetKeyName(105, "properties_document_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(106, "properties_document_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(107, "redo_16.png");
     this.iclSmall.Images.SetKeyName(108, "redo_16_d.png");
     this.iclSmall.Images.SetKeyName(109, "redo_16_h.png");
     this.iclSmall.Images.SetKeyName(110, "redo_square_16.png");
     this.iclSmall.Images.SetKeyName(111, "redo_square_16_d.png");
     this.iclSmall.Images.SetKeyName(112, "redo_square_16_h.png");
     this.iclSmall.Images.SetKeyName(113, "refresh_document_16.png");
     this.iclSmall.Images.SetKeyName(114, "refresh_document_16_d.png");
     this.iclSmall.Images.SetKeyName(115, "refresh_document_16_h.png");
     this.iclSmall.Images.SetKeyName(116, "run_16.png");
     this.iclSmall.Images.SetKeyName(117, "save_16.png");
     this.iclSmall.Images.SetKeyName(118, "save_16_d.png");
     this.iclSmall.Images.SetKeyName(119, "save_16_h.png");
     this.iclSmall.Images.SetKeyName(120, "search_16.png");
     this.iclSmall.Images.SetKeyName(121, "search_16_d.png");
     this.iclSmall.Images.SetKeyName(122, "search_16_h.png");
     this.iclSmall.Images.SetKeyName(123, "stop_16.png");
     this.iclSmall.Images.SetKeyName(124, "stop_16_d.png");
     this.iclSmall.Images.SetKeyName(125, "stop_16_h.png");
     this.iclSmall.Images.SetKeyName(126, "undo_16.png");
     this.iclSmall.Images.SetKeyName(127, "undo_16_d.png");
     this.iclSmall.Images.SetKeyName(128, "undo_16_h.png");
     this.iclSmall.Images.SetKeyName(129, "undo_square_16.png");
     this.iclSmall.Images.SetKeyName(130, "undo_square_16_d.png");
     this.iclSmall.Images.SetKeyName(131, "undo_square_16_h.png");
     this.iclSmall.Images.SetKeyName(132, "up_folder_16.png");
     this.iclSmall.Images.SetKeyName(133, "up_folder_16_d.png");
     this.iclSmall.Images.SetKeyName(134, "up_folder_16_h.png");
     this.iclSmall.Images.SetKeyName(135, "user_16.png");
     this.iclSmall.Images.SetKeyName(136, "users_16.png");
     this.iclSmall.Images.SetKeyName(137, "view_16.png");
     this.iclSmall.Images.SetKeyName(138, "view_16_d.png");
     this.iclSmall.Images.SetKeyName(139, "view_16_h.png");
     this.iclSmall.Images.SetKeyName(140, "label_16.png");
     //
     // tabctrlMain
     //
     this.tabctrlMain.Location = new System.Drawing.Point(12, 12);
     this.tabctrlMain.Name = "tabctrlMain";
     this.tabctrlMain.SelectedTabPage = this.tabpageMaterial;
     this.tabctrlMain.Size = new System.Drawing.Size(754, 413);
     this.tabctrlMain.TabIndex = 0;
     this.tabctrlMain.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabpageMaterial,
     this.tabpageHistory,
     this.tabpageMaintenance,
     this.tabpageFinancial,
     this.tabpageDocuments});
     //
     // tabpageMaterial
     //
     this.tabpageMaterial.Controls.Add(this.cbxActive);
     this.tabpageMaterial.Controls.Add(this.cbxBroken);
     this.tabpageMaterial.Controls.Add(this.louResponsable);
     this.tabpageMaterial.Controls.Add(this.louCreator);
     this.tabpageMaterial.Controls.Add(this.labelControl4);
     this.tabpageMaterial.Controls.Add(this.labelControl2);
     this.tabpageMaterial.Controls.Add(this.labelControl1);
     this.tabpageMaterial.Controls.Add(this.txtName);
     this.tabpageMaterial.Controls.Add(this.panelControl1);
     this.tabpageMaterial.Name = "tabpageMaterial";
     this.tabpageMaterial.Size = new System.Drawing.Size(748, 385);
     this.tabpageMaterial.Text = "Algemeen";
     //
     // cbxActive
     //
     this.cbxActive.Location = new System.Drawing.Point(22, 63);
     this.cbxActive.Name = "cbxActive";
     this.cbxActive.Properties.Caption = "Actief";
     this.cbxActive.Size = new System.Drawing.Size(75, 19);
     this.cbxActive.TabIndex = 15;
     //
     // cbxBroken
     //
     this.cbxBroken.Location = new System.Drawing.Point(103, 63);
     this.cbxBroken.Name = "cbxBroken";
     this.cbxBroken.Properties.Caption = "Gebroken";
     this.cbxBroken.Size = new System.Drawing.Size(75, 19);
     this.cbxBroken.TabIndex = 14;
     //
     // louResponsable
     //
     this.louResponsable.Location = new System.Drawing.Point(537, 52);
     this.louResponsable.Name = "louResponsable";
     this.louResponsable.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louResponsable.Properties.DisplayMember = "DisplayName";
     this.louResponsable.Properties.NullText = "";
     this.louResponsable.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louResponsable.Properties.View = this.gridView1;
     this.louResponsable.Size = new System.Drawing.Size(180, 20);
     this.louResponsable.TabIndex = 2;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn3,
     this.gridColumn4});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowAutoFilterRow = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Naam";
     this.gridColumn3.FieldName = "Name";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 150;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Achternaam";
     this.gridColumn4.FieldName = "Surname";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     this.gridColumn4.Width = 150;
     //
     // louCreator
     //
     this.louCreator.Location = new System.Drawing.Point(537, 26);
     this.louCreator.Name = "louCreator";
     this.louCreator.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louCreator.Properties.DisplayMember = "DisplayName";
     this.louCreator.Properties.NullText = "";
     this.louCreator.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louCreator.Properties.View = this.gridLookUpEdit1View;
     this.louCreator.Size = new System.Drawing.Size(180, 20);
     this.louCreator.TabIndex = 1;
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gdcoName,
     this.gdcoSurname});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowAutoFilterRow = true;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // gdcoName
     //
     this.gdcoName.Caption = "Naam";
     this.gdcoName.FieldName = "Name";
     this.gdcoName.Name = "gdcoName";
     this.gdcoName.OptionsColumn.AllowEdit = false;
     this.gdcoName.Visible = true;
     this.gdcoName.VisibleIndex = 0;
     this.gdcoName.Width = 150;
     //
     // gdcoSurname
     //
     this.gdcoSurname.Caption = "Achternaam";
     this.gdcoSurname.FieldName = "Surname";
     this.gdcoSurname.Name = "gdcoSurname";
     this.gdcoSurname.Visible = true;
     this.gdcoSurname.VisibleIndex = 1;
     this.gdcoSurname.Width = 150;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(24, 29);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(31, 13);
     this.labelControl4.TabIndex = 8;
     this.labelControl4.Text = "Naam:";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(427, 55);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(90, 13);
     this.labelControl2.TabIndex = 6;
     this.labelControl2.Text = "Verantwoordelijke:";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(427, 29);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(89, 13);
     this.labelControl1.TabIndex = 5;
     this.labelControl1.Text = "Aangemaakt door:";
     //
     // txtName
     //
     this.txtName.Location = new System.Drawing.Point(79, 26);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(183, 20);
     this.txtName.TabIndex = 0;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.louSubType);
     this.panelControl1.Controls.Add(this.louType);
     this.panelControl1.Controls.Add(this.louCategory);
     this.panelControl1.Controls.Add(this.labelControl16);
     this.panelControl1.Controls.Add(this.labelControl15);
     this.panelControl1.Controls.Add(this.labelControl5);
     this.panelControl1.Controls.Add(this.louVehicle);
     this.panelControl1.Controls.Add(this.louSupplier);
     this.panelControl1.Controls.Add(this.labelControl14);
     this.panelControl1.Controls.Add(this.memoDescription);
     this.panelControl1.Controls.Add(this.labelControl10);
     this.panelControl1.Controls.Add(this.labelControl9);
     this.panelControl1.Controls.Add(this.txtInternalNumber);
     this.panelControl1.Controls.Add(this.labelControl7);
     this.panelControl1.Controls.Add(this.txtSerieNumber);
     this.panelControl1.Controls.Add(this.labelControl3);
     this.panelControl1.Location = new System.Drawing.Point(24, 88);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(693, 272);
     this.panelControl1.TabIndex = 13;
     //
     // louSubType
     //
     this.louSubType.Location = new System.Drawing.Point(503, 32);
     this.louSubType.Name = "louSubType";
     this.louSubType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louSubType.Properties.DisplayMember = "SubType";
     this.louSubType.Properties.NullText = "";
     this.louSubType.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louSubType.Properties.View = this.gridView6;
     this.louSubType.Size = new System.Drawing.Size(157, 20);
     this.louSubType.TabIndex = 5;
     //
     // gridView6
     //
     this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15});
     this.gridView6.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView6.Name = "gridView6";
     this.gridView6.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView6.OptionsView.ColumnAutoWidth = false;
     this.gridView6.OptionsView.ShowAutoFilterRow = true;
     this.gridView6.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Subtype";
     this.gridColumn15.FieldName = "SubType";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 150;
     //
     // louType
     //
     this.louType.Location = new System.Drawing.Point(312, 32);
     this.louType.Name = "louType";
     this.louType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louType.Properties.DisplayMember = "Type";
     this.louType.Properties.NullText = "";
     this.louType.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louType.Properties.View = this.gridView5;
     this.louType.Size = new System.Drawing.Size(185, 20);
     this.louType.TabIndex = 4;
     this.louType.EditValueChanged += new System.EventHandler(this.louType_EditValueChanged);
     //
     // gridView5
     //
     this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn14});
     this.gridView5.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView5.Name = "gridView5";
     this.gridView5.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView5.OptionsView.ColumnAutoWidth = false;
     this.gridView5.OptionsView.ShowAutoFilterRow = true;
     this.gridView5.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Type";
     this.gridColumn14.FieldName = "Type";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 0;
     this.gridColumn14.Width = 84;
     //
     // louCategory
     //
     this.louCategory.Location = new System.Drawing.Point(121, 32);
     this.louCategory.Name = "louCategory";
     this.louCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louCategory.Properties.DisplayMember = "Category";
     this.louCategory.Properties.NullText = "";
     this.louCategory.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louCategory.Properties.View = this.gridView4;
     this.louCategory.Size = new System.Drawing.Size(185, 20);
     this.louCategory.TabIndex = 3;
     this.louCategory.EditValueChanged += new System.EventHandler(this.louCategory_EditValueChanged);
     //
     // gridView4
     //
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1});
     this.gridView4.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView4.OptionsView.ColumnAutoWidth = false;
     this.gridView4.OptionsView.ShowAutoFilterRow = true;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Categorie";
     this.gridColumn1.FieldName = "Category";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 150;
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(499, 13);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(40, 13);
     this.labelControl16.TabIndex = 23;
     this.labelControl16.Text = "Subtype";
     //
     // labelControl15
     //
     this.labelControl15.Location = new System.Drawing.Point(310, 13);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(24, 13);
     this.labelControl15.TabIndex = 22;
     this.labelControl15.Text = "Type";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(121, 13);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(47, 13);
     this.labelControl5.TabIndex = 19;
     this.labelControl5.Text = "Categorie";
     //
     // louVehicle
     //
     this.louVehicle.Location = new System.Drawing.Point(121, 84);
     this.louVehicle.Name = "louVehicle";
     this.louVehicle.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louVehicle.Properties.DisplayMember = "Name";
     this.louVehicle.Properties.NullText = "";
     this.louVehicle.Properties.View = this.gridView3;
     this.louVehicle.Size = new System.Drawing.Size(185, 20);
     this.louVehicle.TabIndex = 7;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn7,
     this.gridColumn8});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowAutoFilterRow = true;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Naam";
     this.gridColumn7.FieldName = "Name";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 0;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Kenteken";
     this.gridColumn8.FieldName = "LicenseNumber";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 1;
     //
     // louSupplier
     //
     this.louSupplier.Location = new System.Drawing.Point(121, 58);
     this.louSupplier.Name = "louSupplier";
     this.louSupplier.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louSupplier.Properties.DisplayMember = "Name";
     this.louSupplier.Properties.NullText = "";
     this.louSupplier.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louSupplier.Properties.View = this.gridView2;
     this.louSupplier.Size = new System.Drawing.Size(185, 20);
     this.louSupplier.TabIndex = 6;
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn5,
     this.gridColumn9,
     this.gridColumn10});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ColumnAutoWidth = false;
     this.gridView2.OptionsView.ShowAutoFilterRow = true;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Naam";
     this.gridColumn5.FieldName = "Name";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 0;
     this.gridColumn5.Width = 150;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "straat";
     this.gridColumn9.FieldName = "Street";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 1;
     this.gridColumn9.Width = 150;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "postcode";
     this.gridColumn10.FieldName = "Zipcode";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 2;
     this.gridColumn10.Width = 84;
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(17, 163);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(65, 13);
     this.labelControl14.TabIndex = 17;
     this.labelControl14.Text = "Omschrijving:";
     //
     // memoDescription
     //
     this.memoDescription.Location = new System.Drawing.Point(121, 160);
     this.memoDescription.Name = "memoDescription";
     this.memoDescription.Size = new System.Drawing.Size(539, 97);
     this.memoDescription.TabIndex = 10;
     this.memoDescription.UseOptimizedRendering = true;
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(17, 87);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(44, 13);
     this.labelControl10.TabIndex = 14;
     this.labelControl10.Text = "Voertuig:";
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(17, 61);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(60, 13);
     this.labelControl9.TabIndex = 12;
     this.labelControl9.Text = "Leverancier:";
     //
     // txtInternalNumber
     //
     this.txtInternalNumber.Location = new System.Drawing.Point(121, 134);
     this.txtInternalNumber.Name = "txtInternalNumber";
     this.txtInternalNumber.Size = new System.Drawing.Size(185, 20);
     this.txtInternalNumber.TabIndex = 9;
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(17, 137);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(75, 13);
     this.labelControl7.TabIndex = 9;
     this.labelControl7.Text = "Intern nummer:";
     //
     // txtSerieNumber
     //
     this.txtSerieNumber.Location = new System.Drawing.Point(121, 110);
     this.txtSerieNumber.Name = "txtSerieNumber";
     this.txtSerieNumber.Size = new System.Drawing.Size(185, 20);
     this.txtSerieNumber.TabIndex = 8;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(17, 113);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(69, 13);
     this.labelControl3.TabIndex = 7;
     this.labelControl3.Text = "Serie nummer:";
     //
     // tabpageHistory
     //
     this.tabpageHistory.Controls.Add(this.btnRemoveMemo);
     this.tabpageHistory.Controls.Add(this.btnAddMemo);
     this.tabpageHistory.Controls.Add(this.gdcMemo);
     this.tabpageHistory.Name = "tabpageHistory";
     this.tabpageHistory.Size = new System.Drawing.Size(748, 385);
     this.tabpageHistory.Text = "Historiek";
     //
     // btnRemoveMemo
     //
     this.btnRemoveMemo.ImageIndex = 21;
     this.btnRemoveMemo.ImageList = this.iclSmall;
     this.btnRemoveMemo.Location = new System.Drawing.Point(9, 44);
     this.btnRemoveMemo.Name = "btnRemoveMemo";
     this.btnRemoveMemo.Size = new System.Drawing.Size(24, 24);
     this.btnRemoveMemo.TabIndex = 20;
     this.btnRemoveMemo.Click += new System.EventHandler(this.btnRemoveMemo_Click);
     //
     // btnAddMemo
     //
     this.btnAddMemo.ImageIndex = 27;
     this.btnAddMemo.ImageList = this.iclSmall;
     this.btnAddMemo.Location = new System.Drawing.Point(9, 14);
     this.btnAddMemo.Name = "btnAddMemo";
     this.btnAddMemo.Size = new System.Drawing.Size(24, 24);
     this.btnAddMemo.TabIndex = 19;
     this.btnAddMemo.Click += new System.EventHandler(this.btnAddMemo_Click);
     //
     // gdcMemo
     //
     this.gdcMemo.Location = new System.Drawing.Point(39, 13);
     this.gdcMemo.MainView = this.gdvMemo;
     this.gdcMemo.Name = "gdcMemo";
     this.gdcMemo.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemMemoEdit});
     this.gdcMemo.Size = new System.Drawing.Size(707, 369);
     this.gdcMemo.TabIndex = 2;
     this.gdcMemo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gdvMemo});
     //
     // gdvMemo
     //
     this.gdvMemo.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gdcoMemoDateTime,
     this.gdcoMemo});
     this.gdvMemo.DetailHeight = 500;
     this.gdvMemo.GridControl = this.gdcMemo;
     this.gdvMemo.Name = "gdvMemo";
     this.gdvMemo.OptionsView.RowAutoHeight = true;
     this.gdvMemo.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.ShowAlways;
     this.gdvMemo.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gdcoMemoDateTime, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gdvMemo.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gdvMemo_RowUpdated);
     //
     // gdcoMemoDateTime
     //
     this.gdcoMemoDateTime.Caption = "Datum";
     this.gdcoMemoDateTime.DisplayFormat.FormatString = "g";
     this.gdcoMemoDateTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gdcoMemoDateTime.FieldName = "DateTime";
     this.gdcoMemoDateTime.Name = "gdcoMemoDateTime";
     this.gdcoMemoDateTime.OptionsColumn.AllowEdit = false;
     this.gdcoMemoDateTime.Visible = true;
     this.gdcoMemoDateTime.VisibleIndex = 0;
     //
     // gdcoMemo
     //
     this.gdcoMemo.Caption = "Memo";
     this.gdcoMemo.ColumnEdit = this.repositoryItemMemoEdit;
     this.gdcoMemo.FieldName = "Memo";
     this.gdcoMemo.Name = "gdcoMemo";
     this.gdcoMemo.Visible = true;
     this.gdcoMemo.VisibleIndex = 1;
     //
     // repositoryItemMemoEdit
     //
     this.repositoryItemMemoEdit.Name = "repositoryItemMemoEdit";
     //
     // tabpageMaintenance
     //
     this.tabpageMaintenance.Controls.Add(this.btnRemoveMaintenance);
     this.tabpageMaintenance.Controls.Add(this.btnAddMaintenance);
     this.tabpageMaintenance.Controls.Add(this.labelControl13);
     this.tabpageMaintenance.Controls.Add(this.spinMaintenanceFrequency);
     this.tabpageMaintenance.Controls.Add(this.labelControl12);
     this.tabpageMaintenance.Controls.Add(this.dteNextMaintenance);
     this.tabpageMaintenance.Controls.Add(this.labelControl11);
     this.tabpageMaintenance.Controls.Add(this.gdcMaintenance);
     this.tabpageMaintenance.Name = "tabpageMaintenance";
     this.tabpageMaintenance.Size = new System.Drawing.Size(748, 385);
     this.tabpageMaintenance.Text = "Onderhoud";
     //
     // btnRemoveMaintenance
     //
     this.btnRemoveMaintenance.ImageIndex = 21;
     this.btnRemoveMaintenance.ImageList = this.iclSmall;
     this.btnRemoveMaintenance.Location = new System.Drawing.Point(7, 103);
     this.btnRemoveMaintenance.Name = "btnRemoveMaintenance";
     this.btnRemoveMaintenance.Size = new System.Drawing.Size(24, 24);
     this.btnRemoveMaintenance.TabIndex = 18;
     this.btnRemoveMaintenance.Click += new System.EventHandler(this.btnRemoveMaintenance_Click);
     //
     // btnAddMaintenance
     //
     this.btnAddMaintenance.ImageIndex = 27;
     this.btnAddMaintenance.ImageList = this.iclSmall;
     this.btnAddMaintenance.Location = new System.Drawing.Point(7, 73);
     this.btnAddMaintenance.Name = "btnAddMaintenance";
     this.btnAddMaintenance.Size = new System.Drawing.Size(24, 24);
     this.btnAddMaintenance.TabIndex = 17;
     this.btnAddMaintenance.Click += new System.EventHandler(this.btnAddMaintenance_Click);
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(273, 40);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(30, 13);
     this.labelControl13.TabIndex = 16;
     this.labelControl13.Text = "dagen";
     //
     // spinMaintenanceFrequency
     //
     this.spinMaintenanceFrequency.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinMaintenanceFrequency.Location = new System.Drawing.Point(157, 37);
     this.spinMaintenanceFrequency.Name = "spinMaintenanceFrequency";
     this.spinMaintenanceFrequency.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinMaintenanceFrequency.Size = new System.Drawing.Size(99, 20);
     this.spinMaintenanceFrequency.TabIndex = 12;
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(13, 40);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(111, 13);
     this.labelControl12.TabIndex = 14;
     this.labelControl12.Text = "Onderhoud frequentie:";
     //
     // dteNextMaintenance
     //
     this.dteNextMaintenance.EditValue = null;
     this.dteNextMaintenance.Location = new System.Drawing.Point(157, 11);
     this.dteNextMaintenance.Name = "dteNextMaintenance";
     this.dteNextMaintenance.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dteNextMaintenance.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dteNextMaintenance.Properties.ReadOnly = true;
     this.dteNextMaintenance.Size = new System.Drawing.Size(146, 20);
     this.dteNextMaintenance.TabIndex = 11;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(13, 14);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(103, 13);
     this.labelControl11.TabIndex = 12;
     this.labelControl11.Text = "Volgende onderhoud:";
     //
     // gdcMaintenance
     //
     this.gdcMaintenance.Location = new System.Drawing.Point(37, 73);
     this.gdcMaintenance.MainView = this.gdvMaintenance;
     this.gdcMaintenance.Name = "gdcMaintenance";
     this.gdcMaintenance.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemMemoEditRemark});
     this.gdcMaintenance.Size = new System.Drawing.Size(695, 295);
     this.gdcMaintenance.TabIndex = 1;
     this.gdcMaintenance.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gdvMaintenance});
     //
     // gdvMaintenance
     //
     this.gdvMaintenance.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gdcoDate,
     this.gdcoRemark});
     this.gdvMaintenance.GridControl = this.gdcMaintenance;
     this.gdvMaintenance.Name = "gdvMaintenance";
     this.gdvMaintenance.OptionsView.RowAutoHeight = true;
     this.gdvMaintenance.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.ShowAlways;
     this.gdvMaintenance.OptionsView.ShowGroupPanel = false;
     this.gdvMaintenance.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gdvMaintenance_RowUpdated);
     this.gdvMaintenance.DoubleClick += new System.EventHandler(this.gdvMaintenance_DoubleClick);
     //
     // gdcoDate
     //
     this.gdcoDate.Caption = "Start onderhoud";
     this.gdcoDate.DisplayFormat.FormatString = "g";
     this.gdcoDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gdcoDate.FieldName = "StartMaintenance";
     this.gdcoDate.Name = "gdcoDate";
     this.gdcoDate.OptionsColumn.AllowEdit = false;
     this.gdcoDate.Visible = true;
     this.gdcoDate.VisibleIndex = 0;
     this.gdcoDate.Width = 100;
     //
     // gdcoRemark
     //
     this.gdcoRemark.Caption = "Opmerking";
     this.gdcoRemark.ColumnEdit = this.repositoryItemMemoEditRemark;
     this.gdcoRemark.FieldName = "Remark";
     this.gdcoRemark.Name = "gdcoRemark";
     this.gdcoRemark.Visible = true;
     this.gdcoRemark.VisibleIndex = 1;
     this.gdcoRemark.Width = 577;
     //
     // repositoryItemMemoEditRemark
     //
     this.repositoryItemMemoEditRemark.Name = "repositoryItemMemoEditRemark";
     //
     // tabpageFinancial
     //
     this.tabpageFinancial.Controls.Add(this.labelControl8);
     this.tabpageFinancial.Controls.Add(this.calcPrice);
     this.tabpageFinancial.Controls.Add(this.dtePurchasedOn);
     this.tabpageFinancial.Controls.Add(this.labelControl6);
     this.tabpageFinancial.Name = "tabpageFinancial";
     this.tabpageFinancial.Size = new System.Drawing.Size(748, 385);
     this.tabpageFinancial.Text = "Financieel";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(17, 49);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(24, 13);
     this.labelControl8.TabIndex = 13;
     this.labelControl8.Text = "Prijs:";
     //
     // calcPrice
     //
     this.calcPrice.Location = new System.Drawing.Point(109, 46);
     this.calcPrice.Name = "calcPrice";
     this.calcPrice.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.calcPrice.Properties.Mask.EditMask = "c";
     this.calcPrice.Size = new System.Drawing.Size(146, 20);
     this.calcPrice.TabIndex = 14;
     //
     // dtePurchasedOn
     //
     this.dtePurchasedOn.EditValue = null;
     this.dtePurchasedOn.Location = new System.Drawing.Point(109, 20);
     this.dtePurchasedOn.Name = "dtePurchasedOn";
     this.dtePurchasedOn.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtePurchasedOn.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtePurchasedOn.Size = new System.Drawing.Size(146, 20);
     this.dtePurchasedOn.TabIndex = 13;
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(17, 23);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(76, 13);
     this.labelControl6.TabIndex = 10;
     this.labelControl6.Text = "Datum gekocht:";
     //
     // tabpageDocuments
     //
     this.tabpageDocuments.Name = "tabpageDocuments";
     this.tabpageDocuments.Size = new System.Drawing.Size(748, 385);
     this.tabpageDocuments.Text = "Documenten";
     //
     // iclMedium
     //
     this.iclMedium.ImageSize = new System.Drawing.Size(24, 24);
     this.iclMedium.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("iclMedium.ImageStream")));
     this.iclMedium.Images.SetKeyName(0, "add_user_24.png");
     this.iclMedium.Images.SetKeyName(1, "arrow_left_24.png");
     this.iclMedium.Images.SetKeyName(2, "arrow_left_24_d.png");
     this.iclMedium.Images.SetKeyName(3, "arrow_left_24_h.png");
     this.iclMedium.Images.SetKeyName(4, "arrow_right_24.png");
     this.iclMedium.Images.SetKeyName(5, "arrow_right_24_d.png");
     this.iclMedium.Images.SetKeyName(6, "arrow_right_24_h.png");
     this.iclMedium.Images.SetKeyName(7, "copy_clipboard_24.png");
     this.iclMedium.Images.SetKeyName(8, "copy_clipboard_24_d.png");
     this.iclMedium.Images.SetKeyName(9, "copy_clipboard_24_h.png");
     this.iclMedium.Images.SetKeyName(10, "copy_clipboard_lined_24.png");
     this.iclMedium.Images.SetKeyName(11, "copy_clipboard_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(12, "copy_clipboard_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(13, "copy_to_folder_24.png");
     this.iclMedium.Images.SetKeyName(14, "copy_to_folder_24_d.png");
     this.iclMedium.Images.SetKeyName(15, "copy_to_folder_24_h.png");
     this.iclMedium.Images.SetKeyName(16, "cut_clipboard_24.png");
     this.iclMedium.Images.SetKeyName(17, "cut_clipboard_24_d.png");
     this.iclMedium.Images.SetKeyName(18, "cut_clipboard_24_h.png");
     this.iclMedium.Images.SetKeyName(19, "delete_24.png");
     this.iclMedium.Images.SetKeyName(20, "delete_24_d.png");
     this.iclMedium.Images.SetKeyName(21, "delete_24_h.png");
     this.iclMedium.Images.SetKeyName(22, "equipment_24.png");
     this.iclMedium.Images.SetKeyName(23, "excel-24.png");
     this.iclMedium.Images.SetKeyName(24, "favorites_24.png");
     this.iclMedium.Images.SetKeyName(25, "favorites_24_d.png");
     this.iclMedium.Images.SetKeyName(26, "favorites_24_h.png");
     this.iclMedium.Images.SetKeyName(27, "folder_closed_24.png");
     this.iclMedium.Images.SetKeyName(28, "folder_closed_24_d.png");
     this.iclMedium.Images.SetKeyName(29, "folder_closed_24_h.png");
     this.iclMedium.Images.SetKeyName(30, "folder_open_24.png");
     this.iclMedium.Images.SetKeyName(31, "folder_open_24_d.png");
     this.iclMedium.Images.SetKeyName(32, "folder_open_24_h.png");
     this.iclMedium.Images.SetKeyName(33, "folder_options_24.png");
     this.iclMedium.Images.SetKeyName(34, "folder_options_24_d.png");
     this.iclMedium.Images.SetKeyName(35, "folder_options_24_h.png");
     this.iclMedium.Images.SetKeyName(36, "folder_options_b_24.png");
     this.iclMedium.Images.SetKeyName(37, "folder_options_b_24_d.png");
     this.iclMedium.Images.SetKeyName(38, "folder_options_b_24_h.png");
     this.iclMedium.Images.SetKeyName(39, "folders_24.png");
     this.iclMedium.Images.SetKeyName(40, "folders_24_d.png");
     this.iclMedium.Images.SetKeyName(41, "folders_24_h.png");
     this.iclMedium.Images.SetKeyName(42, "help-24.png");
     this.iclMedium.Images.SetKeyName(43, "history_1_24.png");
     this.iclMedium.Images.SetKeyName(44, "history_1_24_d.png");
     this.iclMedium.Images.SetKeyName(45, "history_1_24_h.png");
     this.iclMedium.Images.SetKeyName(46, "history_24.png");
     this.iclMedium.Images.SetKeyName(47, "history_24_d.png");
     this.iclMedium.Images.SetKeyName(48, "history_24_h.png");
     this.iclMedium.Images.SetKeyName(49, "history_b1_24.png");
     this.iclMedium.Images.SetKeyName(50, "history_b1_24_d.png");
     this.iclMedium.Images.SetKeyName(51, "history_b1_24_h.png");
     this.iclMedium.Images.SetKeyName(52, "history_b_24.png");
     this.iclMedium.Images.SetKeyName(53, "history_b_24_d.png");
     this.iclMedium.Images.SetKeyName(54, "history_b_24_h.png");
     this.iclMedium.Images.SetKeyName(55, "home_24.png");
     this.iclMedium.Images.SetKeyName(56, "home_24_d.png");
     this.iclMedium.Images.SetKeyName(57, "home_24_h.png");
     this.iclMedium.Images.SetKeyName(58, "info-24.png");
     this.iclMedium.Images.SetKeyName(59, "logo-24.png");
     this.iclMedium.Images.SetKeyName(60, "mail_24.png");
     this.iclMedium.Images.SetKeyName(61, "mail_24_d.png");
     this.iclMedium.Images.SetKeyName(62, "mail_24_h.png");
     this.iclMedium.Images.SetKeyName(63, "mail_b_24.png");
     this.iclMedium.Images.SetKeyName(64, "mail_b_24_d.png");
     this.iclMedium.Images.SetKeyName(65, "mail_b_24_h.png");
     this.iclMedium.Images.SetKeyName(66, "move_to_folder_24.png");
     this.iclMedium.Images.SetKeyName(67, "move_to_folder_24_d.png");
     this.iclMedium.Images.SetKeyName(68, "move_to_folder_24_h.png");
     this.iclMedium.Images.SetKeyName(69, "new_document_24.png");
     this.iclMedium.Images.SetKeyName(70, "new_document_24_d.png");
     this.iclMedium.Images.SetKeyName(71, "new_document_24_h.png");
     this.iclMedium.Images.SetKeyName(72, "new_document_lined_24.png");
     this.iclMedium.Images.SetKeyName(73, "new_document_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(74, "new_document_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(75, "open_document_24.png");
     this.iclMedium.Images.SetKeyName(76, "open_document_24_d.png");
     this.iclMedium.Images.SetKeyName(77, "open_document_24_h.png");
     this.iclMedium.Images.SetKeyName(78, "paste_clipboard_24.png");
     this.iclMedium.Images.SetKeyName(79, "paste_clipboard_24_d.png");
     this.iclMedium.Images.SetKeyName(80, "paste_clipboard_24_h.png");
     this.iclMedium.Images.SetKeyName(81, "paste_clipboard_lined_24.png");
     this.iclMedium.Images.SetKeyName(82, "paste_clipboard_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(83, "paste_clipboard_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(84, "print_24.png");
     this.iclMedium.Images.SetKeyName(85, "print_24_d.png");
     this.iclMedium.Images.SetKeyName(86, "print_24_h.png");
     this.iclMedium.Images.SetKeyName(87, "print_preview_24.png");
     this.iclMedium.Images.SetKeyName(88, "print_preview_24_d.png");
     this.iclMedium.Images.SetKeyName(89, "print_preview_24_h.png");
     this.iclMedium.Images.SetKeyName(90, "print_preview_lined_24.png");
     this.iclMedium.Images.SetKeyName(91, "print_preview_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(92, "print_preview_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(93, "properties_document_24.png");
     this.iclMedium.Images.SetKeyName(94, "properties_document_24_d.png");
     this.iclMedium.Images.SetKeyName(95, "properties_document_24_h.png");
     this.iclMedium.Images.SetKeyName(96, "properties_document_b_24.png");
     this.iclMedium.Images.SetKeyName(97, "properties_document_b_24_d.png");
     this.iclMedium.Images.SetKeyName(98, "properties_document_b_24_h.png");
     this.iclMedium.Images.SetKeyName(99, "properties_document_b_lined_24.png");
     this.iclMedium.Images.SetKeyName(100, "properties_document_b_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(101, "properties_document_b_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(102, "properties_document_lined_24.png");
     this.iclMedium.Images.SetKeyName(103, "properties_document_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(104, "properties_document_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(105, "redo_24.png");
     this.iclMedium.Images.SetKeyName(106, "redo_24_d.png");
     this.iclMedium.Images.SetKeyName(107, "redo_24_h.png");
     this.iclMedium.Images.SetKeyName(108, "redo_square_24.png");
     this.iclMedium.Images.SetKeyName(109, "redo_square_24_d.png");
     this.iclMedium.Images.SetKeyName(110, "redo_square_24_h.png");
     this.iclMedium.Images.SetKeyName(111, "refresh_document_24.png");
     this.iclMedium.Images.SetKeyName(112, "refresh_document_24_d.png");
     this.iclMedium.Images.SetKeyName(113, "refresh_document_24_h.png");
     this.iclMedium.Images.SetKeyName(114, "save_24.png");
     this.iclMedium.Images.SetKeyName(115, "save_24_d.png");
     this.iclMedium.Images.SetKeyName(116, "save_24_h.png");
     this.iclMedium.Images.SetKeyName(117, "search_24.png");
     this.iclMedium.Images.SetKeyName(118, "search_24_d.png");
     this.iclMedium.Images.SetKeyName(119, "search_24_h.png");
     this.iclMedium.Images.SetKeyName(120, "stop_24.png");
     this.iclMedium.Images.SetKeyName(121, "stop_24_d.png");
     this.iclMedium.Images.SetKeyName(122, "stop_24_h.png");
     this.iclMedium.Images.SetKeyName(123, "undo_24.png");
     this.iclMedium.Images.SetKeyName(124, "undo_24_d.png");
     this.iclMedium.Images.SetKeyName(125, "undo_24_h.png");
     this.iclMedium.Images.SetKeyName(126, "undo_square_24.png");
     this.iclMedium.Images.SetKeyName(127, "undo_square_24_d.png");
     this.iclMedium.Images.SetKeyName(128, "undo_square_24_h.png");
     this.iclMedium.Images.SetKeyName(129, "up_folder_24.png");
     this.iclMedium.Images.SetKeyName(130, "up_folder_24_d.png");
     this.iclMedium.Images.SetKeyName(131, "up_folder_24_h.png");
     this.iclMedium.Images.SetKeyName(132, "users_24.png");
     this.iclMedium.Images.SetKeyName(133, "view_24.png");
     this.iclMedium.Images.SetKeyName(134, "view_24_d.png");
     this.iclMedium.Images.SetKeyName(135, "view_24_h.png");
     this.iclMedium.Images.SetKeyName(136, "ok_24.png");
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.ImageIndex = 120;
     this.btnCancel.ImageList = this.iclMedium;
     this.btnCancel.Location = new System.Drawing.Point(674, 431);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(92, 32);
     this.btnCancel.TabIndex = 5;
     this.btnCancel.Text = "Annuleren";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnSave
     //
     this.btnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnSave.ImageIndex = 114;
     this.btnSave.ImageList = this.iclMedium;
     this.btnSave.Location = new System.Drawing.Point(593, 431);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 32);
     this.btnSave.TabIndex = 6;
     this.btnSave.Text = "Opslaan";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // gdcoMemoDate
     //
     this.gdcoMemoDate.Caption = "Datum";
     this.gdcoMemoDate.FieldName = "DateTime";
     this.gdcoMemoDate.Name = "gdcoMemoDate";
     this.gdcoMemoDate.OptionsColumn.AllowEdit = false;
     this.gdcoMemoDate.Visible = true;
     this.gdcoMemoDate.VisibleIndex = 0;
     this.gdcoMemoDate.Width = 450;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Memo";
     this.gridColumn2.FieldName = "Memo";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 150;
     //
     // layoutViewField_gdcoMileage
     //
     this.layoutViewField_gdcoMileage.EditorPreferredWidth = 0;
     this.layoutViewField_gdcoMileage.Location = new System.Drawing.Point(0, 0);
     this.layoutViewField_gdcoMileage.Name = "layoutViewField_gdcoMileage";
     this.layoutViewField_gdcoMileage.Size = new System.Drawing.Size(0, 0);
     this.layoutViewField_gdcoMileage.TextSize = new System.Drawing.Size(50, 20);
     this.layoutViewField_gdcoMileage.TextToControlDistance = 5;
     //
     // Material
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(778, 475);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.tabctrlMain);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.LookAndFeel.SkinName = "Office 2010 Blue";
     this.LookAndFeel.UseDefaultLookAndFeel = false;
     this.MaximizeBox = false;
     this.Name = "Material";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Materiaal";
     ((System.ComponentModel.ISupportInitialize)(this.iclSmall)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabctrlMain)).EndInit();
     this.tabctrlMain.ResumeLayout(false);
     this.tabpageMaterial.ResumeLayout(false);
     this.tabpageMaterial.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxActive.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxBroken.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louResponsable.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louCreator.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.louSubType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louVehicle.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louSupplier.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInternalNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSerieNumber.Properties)).EndInit();
     this.tabpageHistory.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gdcMemo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdvMemo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit)).EndInit();
     this.tabpageMaintenance.ResumeLayout(false);
     this.tabpageMaintenance.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinMaintenanceFrequency.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dteNextMaintenance.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dteNextMaintenance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdcMaintenance)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdvMaintenance)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEditRemark)).EndInit();
     this.tabpageFinancial.ResumeLayout(false);
     this.tabpageFinancial.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.calcPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtePurchasedOn.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtePurchasedOn.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.iclMedium)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_gdcoMileage)).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(LogAdjustment));
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.detailToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.detailToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.dtTo = new CalendarLib.DateTimePickerEx();
     this.dtFrom = new CalendarLib.DateTimePickerEx();
     this.cboReasons = new DevExpress.XtraEditors.LookUpEdit();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.lstTree = new DevExpress.XtraTreeList.TreeList();
     this.colRefNo = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.gridAdjustments = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.button1 = new DevExpress.XtraEditors.SimpleButton();
     this.btnPrint = new DevExpress.XtraEditors.SimpleButton();
     this.lblAdjDate = new System.Windows.Forms.Label();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.simpleLabelItem1 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem6 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lkActivity = new DevExpress.XtraEditors.GridLookUpEdit();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboReasons.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lstTree)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridAdjustments)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkActivity.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     this.SuspendLayout();
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.detailToolStripMenuItem,
     this.detailToolStripMenuItem1});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(107, 48);
     this.contextMenuStrip1.Text = "conTran";
     //
     // detailToolStripMenuItem
     //
     this.detailToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("detailToolStripMenuItem.Image")));
     this.detailToolStripMenuItem.Name = "detailToolStripMenuItem";
     this.detailToolStripMenuItem.Size = new System.Drawing.Size(106, 22);
     this.detailToolStripMenuItem.Text = "detail";
     //
     // detailToolStripMenuItem1
     //
     this.detailToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("detailToolStripMenuItem1.Image")));
     this.detailToolStripMenuItem1.Name = "detailToolStripMenuItem1";
     this.detailToolStripMenuItem1.Size = new System.Drawing.Size(106, 22);
     this.detailToolStripMenuItem1.Text = "delete";
     //
     // dtTo
     //
     this.dtTo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.dtTo.CalendarFont = new System.Drawing.Font("Nyala", 17.75F);
     this.dtTo.CalendarForeColor = System.Drawing.Color.Black;
     this.dtTo.DayOfWeekCharacters = 2;
     this.dtTo.ForeColor = System.Drawing.Color.Black;
     this.dtTo.Location = new System.Drawing.Point(1011, 59);
     this.dtTo.Name = "dtTo";
     this.dtTo.PopUpFontSize = 6.75F;
     this.dtTo.Size = new System.Drawing.Size(146, 20);
     this.dtTo.TabIndex = 12;
     this.dtTo.Value = new System.DateTime(2011, 7, 3, 0, 0, 0, 0);
     this.dtTo.ValueChanged += new System.EventHandler(this.dtTo_ValueChanged);
     //
     // dtFrom
     //
     this.dtFrom.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.dtFrom.CalendarFont = new System.Drawing.Font("Nyala", 17.75F);
     this.dtFrom.CalendarForeColor = System.Drawing.Color.Black;
     this.dtFrom.DayOfWeekCharacters = 2;
     this.dtFrom.ForeColor = System.Drawing.Color.Black;
     this.dtFrom.Location = new System.Drawing.Point(1011, 34);
     this.dtFrom.Name = "dtFrom";
     this.dtFrom.PopUpFontSize = 6.75F;
     this.dtFrom.Size = new System.Drawing.Size(146, 21);
     this.dtFrom.TabIndex = 12;
     this.dtFrom.Value = new System.DateTime(2011, 7, 3, 0, 0, 0, 0);
     this.dtFrom.ValueChanged += new System.EventHandler(this.dtTo_ValueChanged);
     //
     // cboReasons
     //
     this.cboReasons.Location = new System.Drawing.Point(428, 58);
     this.cboReasons.Name = "cboReasons";
     this.cboReasons.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboReasons.Properties.DisplayMember = "Reason";
     this.cboReasons.Properties.DropDownRows = 4;
     this.cboReasons.Properties.NullText = "Select Adjustment Reason";
     this.cboReasons.Properties.ValueMember = "ID";
     this.cboReasons.Size = new System.Drawing.Size(222, 20);
     this.cboReasons.StyleController = this.layoutControl1;
     this.cboReasons.TabIndex = 0;
     this.cboReasons.EditValueChanged += new System.EventHandler(this.cboReasons_EditValueChanged);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.lkActivity);
     this.layoutControl1.Controls.Add(this.lstTree);
     this.layoutControl1.Controls.Add(this.gridAdjustments);
     this.layoutControl1.Controls.Add(this.dtTo);
     this.layoutControl1.Controls.Add(this.cboReasons);
     this.layoutControl1.Controls.Add(this.dtFrom);
     this.layoutControl1.Controls.Add(this.button1);
     this.layoutControl1.Controls.Add(this.btnPrint);
     this.layoutControl1.Controls.Add(this.lblAdjDate);
     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(1172, 625);
     this.layoutControl1.TabIndex = 33;
     this.layoutControl1.Text = "layoutControl1";
     //
     // lstTree
     //
     this.lstTree.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.colRefNo,
     this.treeListColumn2});
     this.lstTree.Location = new System.Drawing.Point(10, 29);
     this.lstTree.Name = "lstTree";
     this.lstTree.OptionsBehavior.Editable = false;
     this.lstTree.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.lstTree.OptionsView.ShowIndicator = false;
     this.lstTree.PreviewFieldName = "RefNo";
     this.lstTree.RootValue = null;
     this.lstTree.Size = new System.Drawing.Size(290, 586);
     this.lstTree.TabIndex = 34;
     this.lstTree.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.LstTreeFocusedNodeChanged);
     //
     // colRefNo
     //
     this.colRefNo.Caption = "Ref No";
     this.colRefNo.FieldName = "RefNo";
     this.colRefNo.Name = "colRefNo";
     this.colRefNo.Visible = true;
     this.colRefNo.VisibleIndex = 0;
     this.colRefNo.Width = 149;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "Date";
     this.treeListColumn2.FieldName = "Date";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.Visible = true;
     this.treeListColumn2.VisibleIndex = 1;
     this.treeListColumn2.Width = 90;
     //
     // gridAdjustments
     //
     this.gridAdjustments.Location = new System.Drawing.Point(315, 83);
     this.gridAdjustments.MainView = this.gridView1;
     this.gridAdjustments.Name = "gridAdjustments";
     this.gridAdjustments.Size = new System.Drawing.Size(842, 501);
     this.gridAdjustments.TabIndex = 33;
     this.gridAdjustments.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8});
     this.gridView1.GridControl = this.gridAdjustments;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowFooter = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "No";
     this.gridColumn1.FieldName = "RowNo";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 35;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Date";
     this.gridColumn2.FieldName = "Date";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 73;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Item Name";
     this.gridColumn3.FieldName = "FullItemName";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 311;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Batch No";
     this.gridColumn4.FieldName = "BatchNo";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width = 98;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Qty";
     this.gridColumn5.DisplayFormat.FormatString = "#,##0";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn5.FieldName = "Quantity";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "QuantityDetail", "{0:#,##0}")});
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 84;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Total Price";
     this.gridColumn6.DisplayFormat.FormatString = "#,##0.#0";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "Cost";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "gridColumn6", "{0:#,##0.#0}")});
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 97;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Reason";
     this.gridColumn7.FieldName = "Reason";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 105;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Approved By";
     this.gridColumn8.FieldName = "ApprovedBy";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Width = 87;
     //
     // button1
     //
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Image = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
     this.button1.Location = new System.Drawing.Point(929, 588);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(111, 22);
     this.button1.StyleController = this.layoutControl1;
     this.button1.TabIndex = 23;
     this.button1.Text = "Export";
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // btnPrint
     //
     this.btnPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrint.Image = ((System.Drawing.Image)(resources.GetObject("btnPrint.Image")));
     this.btnPrint.Location = new System.Drawing.Point(1044, 588);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(113, 22);
     this.btnPrint.StyleController = this.layoutControl1;
     this.btnPrint.TabIndex = 32;
     this.btnPrint.Text = "Print";
     this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
     //
     // lblAdjDate
     //
     this.lblAdjDate.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAdjDate.Location = new System.Drawing.Point(665, 59);
     this.lblAdjDate.Name = "lblAdjDate";
     this.lblAdjDate.Size = new System.Drawing.Size(218, 20);
     this.lblAdjDate.TabIndex = 30;
     this.lblAdjDate.Text = "Upto Date";
     this.lblAdjDate.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // 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.layoutControlGroup2});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1172, 625);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup3,
     this.layoutControlGroup4});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutControlGroup2.Size = new System.Drawing.Size(1172, 625);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "Reference Numbers";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem10});
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup3.Size = new System.Drawing.Size(300, 615);
     this.layoutControlGroup3.Text = "Reference Numbers";
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.Control = this.lstTree;
     this.layoutControlItem10.CustomizationFormText = "layoutControlItem10";
     this.layoutControlItem10.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(294, 590);
     this.layoutControlItem10.Text = "layoutControlItem10";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem10.TextToControlDistance = 0;
     this.layoutControlItem10.TextVisible = false;
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "Items";
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem6,
     this.emptySpaceItem1,
     this.simpleLabelItem1,
     this.emptySpaceItem4,
     this.layoutControlItem3,
     this.layoutControlItem2,
     this.layoutControlItem4,
     this.layoutControlItem9,
     this.emptySpaceItem6,
     this.layoutControlItem7,
     this.layoutControlItem5,
     this.layoutControlItem1});
     this.layoutControlGroup4.Location = new System.Drawing.Point(300, 0);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.Padding = new DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5);
     this.layoutControlGroup4.Size = new System.Drawing.Size(862, 615);
     this.layoutControlGroup4.Text = "Items";
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnPrint;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(729, 554);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(117, 26);
     this.layoutControlItem6.Text = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(339, 0);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(11, 49);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // simpleLabelItem1
     //
     this.simpleLabelItem1.AllowHotTrack = false;
     this.simpleLabelItem1.CustomizationFormText = "Adjustments Made On:";
     this.simpleLabelItem1.Location = new System.Drawing.Point(350, 0);
     this.simpleLabelItem1.MaxSize = new System.Drawing.Size(222, 32);
     this.simpleLabelItem1.MinSize = new System.Drawing.Size(222, 25);
     this.simpleLabelItem1.Name = "simpleLabelItem1";
     this.simpleLabelItem1.Size = new System.Drawing.Size(222, 25);
     this.simpleLabelItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.simpleLabelItem1.Text = "Adjustments Made On:";
     this.simpleLabelItem1.TextSize = new System.Drawing.Size(110, 13);
     //
     // emptySpaceItem4
     //
     this.emptySpaceItem4.AllowHotTrack = false;
     this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4";
     this.emptySpaceItem4.Location = new System.Drawing.Point(572, 0);
     this.emptySpaceItem4.Name = "emptySpaceItem4";
     this.emptySpaceItem4.Size = new System.Drawing.Size(11, 49);
     this.emptySpaceItem4.Text = "emptySpaceItem4";
     this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.dtFrom;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(583, 0);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(263, 25);
     this.layoutControlItem3.Text = "From";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(110, 13);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cboReasons;
     this.layoutControlItem2.CustomizationFormText = "Adjustment Reason";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(339, 25);
     this.layoutControlItem2.Text = "Adjustment Reason";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(110, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.dtTo;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(583, 25);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(263, 24);
     this.layoutControlItem4.Text = "To";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(110, 13);
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.gridAdjustments;
     this.layoutControlItem9.CustomizationFormText = "layoutControlItem9";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 49);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(846, 505);
     this.layoutControlItem9.Text = "layoutControlItem9";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem9.TextToControlDistance = 0;
     this.layoutControlItem9.TextVisible = false;
     //
     // emptySpaceItem6
     //
     this.emptySpaceItem6.AllowHotTrack = false;
     this.emptySpaceItem6.CustomizationFormText = "emptySpaceItem6";
     this.emptySpaceItem6.Location = new System.Drawing.Point(0, 554);
     this.emptySpaceItem6.Name = "emptySpaceItem6";
     this.emptySpaceItem6.Size = new System.Drawing.Size(614, 26);
     this.emptySpaceItem6.Text = "emptySpaceItem6";
     this.emptySpaceItem6.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.button1;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(614, 554);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(115, 26);
     this.layoutControlItem7.Text = "layoutControlItem7";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.lblAdjDate;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(350, 25);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(222, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // lkActivity
     //
     this.lkActivity.Location = new System.Drawing.Point(428, 34);
     this.lkActivity.Name = "lkActivity";
     this.lkActivity.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkActivity.Properties.View = this.gridLookUpEdit1View;
     this.lkActivity.Size = new System.Drawing.Size(222, 20);
     this.lkActivity.StyleController = this.layoutControl1;
     this.lkActivity.TabIndex = 35;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.lkActivity;
     this.layoutControlItem1.CustomizationFormText = "Activity";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(339, 24);
     this.layoutControlItem1.Text = "Activity";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(110, 13);
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // LogAdjustment
     //
     this.Appearance.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1172, 625);
     this.Controls.Add(this.layoutControl1);
     this.Name = "LogAdjustment";
     this.Text = "Stock Report";
     this.Load += new System.EventHandler(this.ManageItems_Load);
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cboReasons.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lstTree)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridAdjustments)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkActivity.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).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.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.tBLWarasaSarfBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsRetirementCenter = new RetirementCenter.DataSources.dsRetirementCenter();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coleshtrakmonth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colestktaa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmonymonth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colrsmmonth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.colsarfdatefrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.colsarfdateto = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicateId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditSyndicateIdMashat = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.LSMSCDSyndicate = new DevExpress.Data.Linq.LinqServerModeSource();
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitteId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditSubCommitteIdMashat = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.LSMSCDSubCommitte = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colWarasaTypeId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditWarasaTypeId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.LSMSCDWarasaType = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colWarasaType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdafat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcCommands = new DevExpress.XtraEditors.GroupControl();
     this.lueSarfTypeedadId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.LUESyndicateId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.LUETBLDofatSarf = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSTBLDofatSarf = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDofatSarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.btnPrint = new DevExpress.XtraEditors.SimpleButton();
     this.btnArc = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddAll = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.pbc = new DevExpress.XtraEditors.ProgressBarControl();
     this.pcProgress = new DevExpress.XtraEditors.PanelControl();
     this.lblMax = new DevExpress.XtraEditors.LabelControl();
     this.lblValue = new DevExpress.XtraEditors.LabelControl();
     this.dxValidationProviderMain = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.warasaDofaatCreatorTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.WarasaDofaatCreatorTableAdapter();
     this.warasaExtraDofaatCreatorTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.WarasaExtraDofaatCreatorTableAdapter();
     this.tBLWarasaSarfTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TBLWarasaSarfTableAdapter();
     this.tblMashatTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TBLMashatTableAdapter();
     this.warasaExceptionDofaatCreatorTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.WarasaExceptionDofaatCreatorTableAdapter();
     this.LSMSCDSarfTypeedad = new DevExpress.Data.Linq.LinqServerModeSource();
     this.colSarfTypeedad = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLWarasaSarfBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateIdMashat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSyndicate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSubCommitteIdMashat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSubCommitte)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditWarasaTypeId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDWarasaType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcCommands)).BeginInit();
     this.gcCommands.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueSarfTypeedadId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUESyndicateId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUETBLDofatSarf.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLDofatSarf)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcProgress)).BeginInit();
     this.pcProgress.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSarfTypeedad)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.DataSource = this.tBLWarasaSarfBindingSource;
     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.repositoryItemCheckEdit1,
     this.repositoryItemDateEditDMY,
     this.repositoryItemButtonEditSave,
     this.repositoryItemGridLookUpEditSyndicateIdMashat,
     this.repositoryItemGridLookUpEditSubCommitteIdMashat,
     this.repositoryItemGridLookUpEditWarasaTypeId,
     this.repositoryItemButtonEdit1});
     this.gridControlData.Size = new System.Drawing.Size(856, 430);
     this.gridControlData.TabIndex = 0;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // tBLWarasaSarfBindingSource
     //
     this.tBLWarasaSarfBindingSource.DataMember = "TBLWarasaSarf";
     this.tBLWarasaSarfBindingSource.DataSource = this.dsRetirementCenter;
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName = "dsRetirementCenter";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupFooter.Options.UseTextOptions = true;
     this.gridViewData.Appearance.GroupFooter.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colpersonName,
     this.coleshtrakmonth,
     this.colestktaa,
     this.colmonymonth,
     this.colrsmmonth,
     this.colsarf,
     this.colsarfdatefrom,
     this.colsarfdateto,
     this.gridColumn2,
     this.colMMashatName,
     this.colsarfnumber,
     this.colSyndicateId,
     this.colSubCommitteId,
     this.colWarasaTypeId,
     this.colEdafat,
     this.gridColumn3});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "eshtrakmonth", this.coleshtrakmonth, ""),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "estktaa", this.colestktaa, ""),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "monymonth", this.colmonymonth, ""),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "rsmmonth", this.colrsmmonth, "")});
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.NewItemRowText = "اضغط لاضافة جديد";
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowFooter = true;
     this.gridViewData.CustomSummaryCalculate += new DevExpress.Data.CustomSummaryEventHandler(this.gridViewData_CustomSummaryCalculate);
     //
     // 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.OptionsColumn.ReadOnly = true;
     this.colpersonName.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Custom)});
     this.colpersonName.Visible = true;
     this.colpersonName.VisibleIndex = 4;
     this.colpersonName.Width = 223;
     //
     // coleshtrakmonth
     //
     this.coleshtrakmonth.AppearanceCell.Options.UseTextOptions = true;
     this.coleshtrakmonth.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coleshtrakmonth.AppearanceHeader.Options.UseTextOptions = true;
     this.coleshtrakmonth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coleshtrakmonth.Caption = "الاشتراك الشهري";
     this.coleshtrakmonth.FieldName = "eshtrakmonth";
     this.coleshtrakmonth.Name = "coleshtrakmonth";
     this.coleshtrakmonth.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum)});
     this.coleshtrakmonth.Visible = true;
     this.coleshtrakmonth.VisibleIndex = 5;
     this.coleshtrakmonth.Width = 102;
     //
     // 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.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum)});
     this.colestktaa.Visible = true;
     this.colestktaa.VisibleIndex = 6;
     this.colestktaa.Width = 64;
     //
     // colmonymonth
     //
     this.colmonymonth.AppearanceCell.Options.UseTextOptions = true;
     this.colmonymonth.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmonymonth.AppearanceHeader.Options.UseTextOptions = true;
     this.colmonymonth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmonymonth.Caption = "المبلغ";
     this.colmonymonth.FieldName = "monymonth";
     this.colmonymonth.Name = "colmonymonth";
     this.colmonymonth.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum)});
     this.colmonymonth.Visible = true;
     this.colmonymonth.VisibleIndex = 7;
     this.colmonymonth.Width = 70;
     //
     // colrsmmonth
     //
     this.colrsmmonth.AppearanceCell.Options.UseTextOptions = true;
     this.colrsmmonth.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colrsmmonth.AppearanceHeader.Options.UseTextOptions = true;
     this.colrsmmonth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colrsmmonth.Caption = "الرسم";
     this.colrsmmonth.FieldName = "rsmmonth";
     this.colrsmmonth.Name = "colrsmmonth";
     this.colrsmmonth.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum)});
     this.colrsmmonth.Visible = true;
     this.colrsmmonth.VisibleIndex = 8;
     this.colrsmmonth.Width = 60;
     //
     // colsarf
     //
     this.colsarf.AppearanceCell.Options.UseTextOptions = true;
     this.colsarf.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarf.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarf.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarf.Caption = "يصرف";
     this.colsarf.ColumnEdit = this.repositoryItemCheckEdit1;
     this.colsarf.FieldName = "sarf";
     this.colsarf.Name = "colsarf";
     this.colsarf.Visible = true;
     this.colsarf.VisibleIndex = 9;
     this.colsarf.Width = 56;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // colsarfdatefrom
     //
     this.colsarfdatefrom.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfdatefrom.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfdatefrom.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfdatefrom.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfdatefrom.Caption = "من";
     this.colsarfdatefrom.ColumnEdit = this.repositoryItemDateEditDMY;
     this.colsarfdatefrom.FieldName = "sarfdatefrom";
     this.colsarfdatefrom.Name = "colsarfdatefrom";
     this.colsarfdatefrom.OptionsColumn.ReadOnly = true;
     this.colsarfdatefrom.Visible = true;
     this.colsarfdatefrom.VisibleIndex = 11;
     this.colsarfdatefrom.Width = 87;
     //
     // 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()});
     //
     // colsarfdateto
     //
     this.colsarfdateto.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfdateto.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfdateto.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfdateto.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfdateto.Caption = "الي";
     this.colsarfdateto.FieldName = "sarfdateto";
     this.colsarfdateto.Name = "colsarfdateto";
     this.colsarfdateto.OptionsColumn.ReadOnly = true;
     this.colsarfdateto.Visible = true;
     this.colsarfdateto.VisibleIndex = 12;
     this.colsarfdateto.Width = 78;
     //
     // 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.repositoryItemButtonEditSave;
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 13;
     //
     // 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.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     //
     // 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.OptionsColumn.ReadOnly = true;
     this.colMMashatName.Visible = true;
     this.colMMashatName.VisibleIndex = 0;
     this.colMMashatName.Width = 108;
     //
     // 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.OptionsColumn.ReadOnly = true;
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 1;
     this.colsarfnumber.Width = 82;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditSyndicateIdMashat;
     this.colSyndicateId.FieldName = "SyndicateId";
     this.colSyndicateId.Name = "colSyndicateId";
     this.colSyndicateId.OptionsColumn.ReadOnly = true;
     this.colSyndicateId.Visible = true;
     this.colSyndicateId.VisibleIndex = 3;
     this.colSyndicateId.Width = 110;
     //
     // repositoryItemGridLookUpEditSyndicateIdMashat
     //
     this.repositoryItemGridLookUpEditSyndicateIdMashat.AutoHeight = false;
     this.repositoryItemGridLookUpEditSyndicateIdMashat.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditSyndicateIdMashat.DataSource = this.LSMSCDSyndicate;
     this.repositoryItemGridLookUpEditSyndicateIdMashat.DisplayMember = "Syndicate";
     this.repositoryItemGridLookUpEditSyndicateIdMashat.Name = "repositoryItemGridLookUpEditSyndicateIdMashat";
     this.repositoryItemGridLookUpEditSyndicateIdMashat.NullText = "";
     this.repositoryItemGridLookUpEditSyndicateIdMashat.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditSyndicateIdMashat.ValueMember = "SyndicateId";
     this.repositoryItemGridLookUpEditSyndicateIdMashat.View = this.repositoryItemGridLookUpEdit1View;
     //
     // LSMSCDSyndicate
     //
     this.LSMSCDSyndicate.ElementType = typeof(RetirementCenter.DataSources.Linq.CDSyndicate);
     this.LSMSCDSyndicate.KeyExpression = "[SyndicateId]";
     //
     // 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;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditSubCommitteIdMashat;
     this.colSubCommitteId.FieldName = "SubCommitteId";
     this.colSubCommitteId.Name = "colSubCommitteId";
     this.colSubCommitteId.OptionsColumn.ReadOnly = true;
     this.colSubCommitteId.Visible = true;
     this.colSubCommitteId.VisibleIndex = 2;
     this.colSubCommitteId.Width = 96;
     //
     // repositoryItemGridLookUpEditSubCommitteIdMashat
     //
     this.repositoryItemGridLookUpEditSubCommitteIdMashat.AutoHeight = false;
     this.repositoryItemGridLookUpEditSubCommitteIdMashat.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditSubCommitteIdMashat.DataSource = this.LSMSCDSubCommitte;
     this.repositoryItemGridLookUpEditSubCommitteIdMashat.DisplayMember = "SubCommitte";
     this.repositoryItemGridLookUpEditSubCommitteIdMashat.Name = "repositoryItemGridLookUpEditSubCommitteIdMashat";
     this.repositoryItemGridLookUpEditSubCommitteIdMashat.NullText = "";
     this.repositoryItemGridLookUpEditSubCommitteIdMashat.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditSubCommitteIdMashat.ValueMember = "SubCommitteId";
     this.repositoryItemGridLookUpEditSubCommitteIdMashat.View = this.gridView2;
     //
     // LSMSCDSubCommitte
     //
     this.LSMSCDSubCommitte.ElementType = typeof(RetirementCenter.DataSources.Linq.CDSubCommitte);
     this.LSMSCDSubCommitte.KeyExpression = "[SubCommitteId]";
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSubCommitte});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // 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 = 0;
     //
     // colWarasaTypeId
     //
     this.colWarasaTypeId.AppearanceCell.Options.UseTextOptions = true;
     this.colWarasaTypeId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWarasaTypeId.AppearanceHeader.Options.UseTextOptions = true;
     this.colWarasaTypeId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWarasaTypeId.Caption = "النوع";
     this.colWarasaTypeId.ColumnEdit = this.repositoryItemGridLookUpEditWarasaTypeId;
     this.colWarasaTypeId.FieldName = "WarasaTypeId";
     this.colWarasaTypeId.Name = "colWarasaTypeId";
     this.colWarasaTypeId.OptionsColumn.ReadOnly = true;
     this.colWarasaTypeId.Visible = true;
     this.colWarasaTypeId.VisibleIndex = 10;
     //
     // repositoryItemGridLookUpEditWarasaTypeId
     //
     this.repositoryItemGridLookUpEditWarasaTypeId.AutoHeight = false;
     this.repositoryItemGridLookUpEditWarasaTypeId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditWarasaTypeId.DataSource = this.LSMSCDWarasaType;
     this.repositoryItemGridLookUpEditWarasaTypeId.DisplayMember = "WarasaType";
     this.repositoryItemGridLookUpEditWarasaTypeId.Name = "repositoryItemGridLookUpEditWarasaTypeId";
     this.repositoryItemGridLookUpEditWarasaTypeId.NullText = "";
     this.repositoryItemGridLookUpEditWarasaTypeId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditWarasaTypeId.ValueMember = "WarasaTypeId";
     this.repositoryItemGridLookUpEditWarasaTypeId.View = this.gridView3;
     //
     // LSMSCDWarasaType
     //
     this.LSMSCDWarasaType.ElementType = typeof(RetirementCenter.DataSources.Linq.CDWarasaType);
     this.LSMSCDWarasaType.KeyExpression = "[WarasaTypeId]";
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colWarasaType});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // colWarasaType
     //
     this.colWarasaType.AppearanceCell.Options.UseTextOptions = true;
     this.colWarasaType.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWarasaType.AppearanceHeader.Options.UseTextOptions = true;
     this.colWarasaType.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWarasaType.Caption = "النوع";
     this.colWarasaType.FieldName = "WarasaType";
     this.colWarasaType.Name = "colWarasaType";
     this.colWarasaType.Visible = true;
     this.colWarasaType.VisibleIndex = 0;
     //
     // colEdafat
     //
     this.colEdafat.AppearanceCell.Options.UseTextOptions = true;
     this.colEdafat.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdafat.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdafat.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdafat.Caption = "اضافات";
     this.colEdafat.ColumnEdit = this.repositoryItemCheckEdit1;
     this.colEdafat.FieldName = "Edafat";
     this.colEdafat.Name = "colEdafat";
     this.colEdafat.OptionsColumn.ReadOnly = true;
     this.colEdafat.Visible = true;
     this.colEdafat.VisibleIndex = 14;
     //
     // 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.repositoryItemButtonEdit1;
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 15;
     //
     // repositoryItemButtonEdit1
     //
     this.repositoryItemButtonEdit1.AutoHeight = false;
     this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
     this.repositoryItemButtonEdit1.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEdit1.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEdit_ButtonClick);
     //
     // gcCommands
     //
     this.gcCommands.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gcCommands.AppearanceCaption.Options.UseTextOptions = true;
     this.gcCommands.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gcCommands.Controls.Add(this.lueSarfTypeedadId);
     this.gcCommands.Controls.Add(this.labelControl2);
     this.gcCommands.Controls.Add(this.LUESyndicateId);
     this.gcCommands.Controls.Add(this.labelControl1);
     this.gcCommands.Controls.Add(this.LUETBLDofatSarf);
     this.gcCommands.Controls.Add(this.labelControl7);
     this.gcCommands.Controls.Add(this.btnPrint);
     this.gcCommands.Controls.Add(this.btnArc);
     this.gcCommands.Controls.Add(this.btnDelete);
     this.gcCommands.Controls.Add(this.btnAddAll);
     this.gcCommands.Location = new System.Drawing.Point(12, 12);
     this.gcCommands.Name = "gcCommands";
     this.gcCommands.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.gcCommands.Size = new System.Drawing.Size(860, 141);
     this.gcCommands.TabIndex = 0;
     this.gcCommands.Text = "خيارات";
     //
     // lueSarfTypeedadId
     //
     this.lueSarfTypeedadId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lueSarfTypeedadId.Location = new System.Drawing.Point(580, 86);
     this.lueSarfTypeedadId.Name = "lueSarfTypeedadId";
     this.lueSarfTypeedadId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.lueSarfTypeedadId.Properties.Appearance.Options.UseFont = true;
     this.lueSarfTypeedadId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueSarfTypeedadId.Properties.DataSource = this.LSMSCDSarfTypeedad;
     this.lueSarfTypeedadId.Properties.DisplayMember = "SarfTypeedad";
     this.lueSarfTypeedadId.Properties.NullText = "";
     this.lueSarfTypeedadId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueSarfTypeedadId.Properties.ValueMember = "SarfTypeedadId";
     this.lueSarfTypeedadId.Properties.View = this.gridView4;
     this.lueSarfTypeedadId.Size = new System.Drawing.Size(236, 22);
     this.lueSarfTypeedadId.TabIndex = 1;
     this.lueSarfTypeedadId.EditValueChanged += new System.EventHandler(this.LUESyndicateId_EditValueChanged);
     //
     // gridView4
     //
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSarfTypeedad});
     this.gridView4.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     //
     // labelControl2
     //
     this.labelControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl2.Location = new System.Drawing.Point(822, 89);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(22, 13);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "النوع";
     //
     // LUESyndicateId
     //
     this.LUESyndicateId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.LUESyndicateId.Location = new System.Drawing.Point(580, 58);
     this.LUESyndicateId.Name = "LUESyndicateId";
     this.LUESyndicateId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.LUESyndicateId.Properties.Appearance.Options.UseFont = true;
     this.LUESyndicateId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUESyndicateId.Properties.DataSource = this.LSMSCDSyndicate;
     this.LUESyndicateId.Properties.DisplayMember = "Syndicate";
     this.LUESyndicateId.Properties.NullText = "";
     this.LUESyndicateId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUESyndicateId.Properties.ValueMember = "SyndicateId";
     this.LUESyndicateId.Properties.View = this.gridView1;
     this.LUESyndicateId.Size = new System.Drawing.Size(236, 22);
     this.LUESyndicateId.TabIndex = 1;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "يجب اختيار فرعية";
     conditionValidationRule1.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Warning;
     this.dxValidationProviderMain.SetValidationRule(this.LUESyndicateId, conditionValidationRule1);
     this.LUESyndicateId.EditValueChanged += new System.EventHandler(this.LUESyndicateId_EditValueChanged);
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     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 = "Syndicate";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl1.Location = new System.Drawing.Point(822, 61);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(27, 13);
     this.labelControl1.TabIndex = 1;
     this.labelControl1.Text = "فرعية";
     //
     // LUETBLDofatSarf
     //
     this.LUETBLDofatSarf.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.LUETBLDofatSarf.Location = new System.Drawing.Point(580, 30);
     this.LUETBLDofatSarf.Name = "LUETBLDofatSarf";
     this.LUETBLDofatSarf.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.LUETBLDofatSarf.Properties.Appearance.Options.UseFont = true;
     this.LUETBLDofatSarf.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUETBLDofatSarf.Properties.DataSource = this.LSMSTBLDofatSarf;
     this.LUETBLDofatSarf.Properties.DisplayMember = "DofatSarf";
     this.LUETBLDofatSarf.Properties.NullText = "";
     this.LUETBLDofatSarf.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUETBLDofatSarf.Properties.ValueMember = "DofatSarfId";
     this.LUETBLDofatSarf.Properties.View = this.gridLookUpEdit1View;
     this.LUETBLDofatSarf.Size = new System.Drawing.Size(236, 22);
     this.LUETBLDofatSarf.TabIndex = 0;
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "يجب اختيار دفعة";
     conditionValidationRule2.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Warning;
     this.dxValidationProviderMain.SetValidationRule(this.LUETBLDofatSarf, conditionValidationRule2);
     this.LUETBLDofatSarf.EditValueChanged += new System.EventHandler(this.LUETBLDofatSarf_EditValueChanged);
     //
     // LSMSTBLDofatSarf
     //
     this.LSMSTBLDofatSarf.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLDofatSarf);
     this.LSMSTBLDofatSarf.KeyExpression = "[DofatSarfId]";
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDofatSarf});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colDofatSarf
     //
     this.colDofatSarf.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.Caption = "اسم الدفعة";
     this.colDofatSarf.FieldName = "DofatSarf";
     this.colDofatSarf.Name = "colDofatSarf";
     this.colDofatSarf.Visible = true;
     this.colDofatSarf.VisibleIndex = 0;
     //
     // labelControl7
     //
     this.labelControl7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl7.Location = new System.Drawing.Point(822, 33);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(29, 13);
     this.labelControl7.TabIndex = 1;
     this.labelControl7.Text = "الدفعة";
     //
     // btnPrint
     //
     this.btnPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrint.Image = global::RetirementCenter.Properties.Resources.Print;
     this.btnPrint.Location = new System.Drawing.Point(666, 114);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(150, 22);
     this.btnPrint.TabIndex = 2;
     this.btnPrint.Text = "طباعة";
     this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
     //
     // btnArc
     //
     this.btnArc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnArc.Location = new System.Drawing.Point(426, 75);
     this.btnArc.Name = "btnArc";
     this.btnArc.Size = new System.Drawing.Size(150, 22);
     this.btnArc.TabIndex = 2;
     this.btnArc.Text = "ارشيف الدفعة";
     this.btnArc.Click += new System.EventHandler(this.btnArc_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelete.Location = new System.Drawing.Point(426, 49);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(150, 22);
     this.btnDelete.TabIndex = 2;
     this.btnDelete.Text = "حذف الدفعة";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnAddAll
     //
     this.btnAddAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAddAll.Location = new System.Drawing.Point(426, 24);
     this.btnAddAll.Name = "btnAddAll";
     this.btnAddAll.Size = new System.Drawing.Size(150, 22);
     this.btnAddAll.TabIndex = 2;
     this.btnAddAll.Text = "اعداد الدفعة";
     this.btnAddAll.Click += new System.EventHandler(this.btnAddAll_Click);
     //
     // groupControl2
     //
     this.groupControl2.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.groupControl2.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControl2.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.groupControl2.Controls.Add(this.gridControlData);
     this.groupControl2.Location = new System.Drawing.Point(12, 159);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControl2.Size = new System.Drawing.Size(860, 453);
     this.groupControl2.TabIndex = 1;
     this.groupControl2.Text = "التفاصيل";
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // pbc
     //
     this.pbc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.pbc.Location = new System.Drawing.Point(5, 16);
     this.pbc.Name = "pbc";
     this.pbc.Size = new System.Drawing.Size(406, 26);
     this.pbc.TabIndex = 2;
     //
     // pcProgress
     //
     this.pcProgress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.pcProgress.Controls.Add(this.lblMax);
     this.pcProgress.Controls.Add(this.pbc);
     this.pcProgress.Controls.Add(this.lblValue);
     this.pcProgress.Location = new System.Drawing.Point(14, 45);
     this.pcProgress.Name = "pcProgress";
     this.pcProgress.Size = new System.Drawing.Size(418, 45);
     this.pcProgress.TabIndex = 3;
     this.pcProgress.Visible = false;
     //
     // lblMax
     //
     this.lblMax.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblMax.Location = new System.Drawing.Point(351, 1);
     this.lblMax.Name = "lblMax";
     this.lblMax.Size = new System.Drawing.Size(6, 13);
     this.lblMax.TabIndex = 0;
     this.lblMax.Text = "0";
     //
     // lblValue
     //
     this.lblValue.Location = new System.Drawing.Point(7, 1);
     this.lblValue.Name = "lblValue";
     this.lblValue.Size = new System.Drawing.Size(6, 13);
     this.lblValue.TabIndex = 0;
     this.lblValue.Text = "0";
     //
     // warasaDofaatCreatorTableAdapter
     //
     this.warasaDofaatCreatorTableAdapter.ClearBeforeFill = true;
     //
     // warasaExtraDofaatCreatorTableAdapter
     //
     this.warasaExtraDofaatCreatorTableAdapter.ClearBeforeFill = true;
     //
     // tBLWarasaSarfTableAdapter
     //
     this.tBLWarasaSarfTableAdapter.ClearBeforeFill = true;
     //
     // tblMashatTableAdapter
     //
     this.tblMashatTableAdapter.ClearBeforeFill = true;
     //
     // warasaExceptionDofaatCreatorTableAdapter
     //
     this.warasaExceptionDofaatCreatorTableAdapter.ClearBeforeFill = true;
     //
     // LSMSCDSarfTypeedad
     //
     this.LSMSCDSarfTypeedad.ElementType = typeof(RetirementCenter.DataSources.Linq.CDSarfTypeedad);
     this.LSMSCDSarfTypeedad.KeyExpression = "[SarfTypeedadId]";
     //
     // colSarfTypeedad
     //
     this.colSarfTypeedad.Caption = "الاسم";
     this.colSarfTypeedad.FieldName = "SarfTypeedad";
     this.colSarfTypeedad.Name = "colSarfTypeedad";
     this.colSarfTypeedad.Visible = true;
     this.colSarfTypeedad.VisibleIndex = 0;
     //
     // TBLWarasaSarfFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(884, 624);
     this.Controls.Add(this.pcProgress);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.gcCommands);
     this.Name = "TBLWarasaSarfFrm";
     this.Text = "التفاصيل";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.TBLWarasaSarfFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLWarasaSarfBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateIdMashat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSyndicate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSubCommitteIdMashat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSubCommitte)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditWarasaTypeId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDWarasaType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcCommands)).EndInit();
     this.gcCommands.ResumeLayout(false);
     this.gcCommands.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueSarfTypeedadId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUESyndicateId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUETBLDofatSarf.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLDofatSarf)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcProgress)).EndInit();
     this.pcProgress.ResumeLayout(false);
     this.pcProgress.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSarfTypeedad)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.LSMSCDSyndicate = new DevExpress.Data.Linq.LinqServerModeSource();
     this.LSMSCDSubCommitte = new DevExpress.Data.Linq.LinqServerModeSource();
     this.tBLWarasaSarfBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsRetirementCenter = new RetirementCenter.DataSources.dsRetirementCenter();
     this.gcCommands = new DevExpress.XtraEditors.GroupControl();
     this.LUECDSubCommitte = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSubCommitte1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.LUESyndicateId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.LUETBLDofatSarf = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSTBLDofatSarf = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDofatSarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.btnCompare = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.pbc = new DevExpress.XtraEditors.ProgressBarControl();
     this.pcProgress = new DevExpress.XtraEditors.PanelControl();
     this.lblMax = new DevExpress.XtraEditors.LabelControl();
     this.lblValue = new DevExpress.XtraEditors.LabelControl();
     this.tBLWarasaSarfTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TBLWarasaSarfTableAdapter();
     this.dsReports = new RetirementCenter.DataSources.dsReports();
     this.rep03TableAdapter = new RetirementCenter.DataSources.dsReportsTableAdapters.Rep03TableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSyndicate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSubCommitte)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLWarasaSarfBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcCommands)).BeginInit();
     this.gcCommands.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUECDSubCommitte.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUESyndicateId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUETBLDofatSarf.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLDofatSarf)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcProgress)).BeginInit();
     this.pcProgress.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dsReports)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     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.Size = new System.Drawing.Size(856, 298);
     this.gridControlData.TabIndex = 0;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // gridViewData
     //
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupFooter.Options.UseTextOptions = true;
     this.gridViewData.Appearance.GroupFooter.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn2,
     this.gridColumn13,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "eshtrakmonth", null, ""),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "estktaa", null, ""),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "monymonth", null, ""),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "rsmmonth", null, "")});
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.NewItemRowText = "اضغط لاضافة جديد";
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowFooter = true;
     this.gridViewData.CustomSummaryCalculate += new DevExpress.Data.CustomSummaryEventHandler(this.gridViewData_CustomSummaryCalculate);
     //
     // 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 = "PersonId";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.ReadOnly = true;
     //
     // 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 = "MMashatId";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 0;
     //
     // 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 = "sarfnumber";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.ReadOnly = true;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     //
     // 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 = "DeffType";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.ReadOnly = true;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     //
     // 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 = "monymonthR";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.ReadOnly = true;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 3;
     //
     // 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 = "rsmmonthR";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.ReadOnly = true;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     //
     // 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 = "eshtrakmonthR";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.ReadOnly = true;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 5;
     this.gridColumn7.Width = 91;
     //
     // 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 = "estktaaR";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.ReadOnly = true;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 6;
     this.gridColumn8.Width = 90;
     //
     // 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 = "monymonthS";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 7;
     //
     // 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 = "rsmmonthS";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.ReadOnly = true;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 8;
     //
     // 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 = "eshtrakmonthS";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.ReadOnly = true;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 9;
     this.gridColumn11.Width = 90;
     //
     // 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 = "estktaaS";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.ReadOnly = true;
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 10;
     this.gridColumn12.Width = 96;
     //
     // LSMSCDSyndicate
     //
     this.LSMSCDSyndicate.ElementType = typeof(RetirementCenter.DataSources.Linq.CDSyndicate);
     this.LSMSCDSyndicate.KeyExpression = "[SyndicateId]";
     //
     // LSMSCDSubCommitte
     //
     this.LSMSCDSubCommitte.ElementType = typeof(RetirementCenter.DataSources.Linq.CDSubCommitte);
     this.LSMSCDSubCommitte.KeyExpression = "[SubCommitteId]";
     //
     // tBLWarasaSarfBindingSource
     //
     this.tBLWarasaSarfBindingSource.DataMember = "TBLWarasaSarf";
     this.tBLWarasaSarfBindingSource.DataSource = this.dsRetirementCenter;
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName = "dsRetirementCenter";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gcCommands
     //
     this.gcCommands.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gcCommands.AppearanceCaption.Options.UseTextOptions = true;
     this.gcCommands.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gcCommands.Controls.Add(this.LUECDSubCommitte);
     this.gcCommands.Controls.Add(this.labelControl2);
     this.gcCommands.Controls.Add(this.LUESyndicateId);
     this.gcCommands.Controls.Add(this.labelControl1);
     this.gcCommands.Controls.Add(this.LUETBLDofatSarf);
     this.gcCommands.Controls.Add(this.labelControl7);
     this.gcCommands.Controls.Add(this.btnCompare);
     this.gcCommands.Location = new System.Drawing.Point(12, 12);
     this.gcCommands.Name = "gcCommands";
     this.gcCommands.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.gcCommands.Size = new System.Drawing.Size(860, 110);
     this.gcCommands.TabIndex = 0;
     this.gcCommands.Text = "خيارات";
     //
     // LUECDSubCommitte
     //
     this.LUECDSubCommitte.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.LUECDSubCommitte.Location = new System.Drawing.Point(580, 83);
     this.LUECDSubCommitte.Name = "LUECDSubCommitte";
     this.LUECDSubCommitte.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.LUECDSubCommitte.Properties.Appearance.Options.UseFont = true;
     this.LUECDSubCommitte.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUECDSubCommitte.Properties.DataSource = this.LSMSCDSubCommitte;
     this.LUECDSubCommitte.Properties.DisplayMember = "SubCommitte";
     this.LUECDSubCommitte.Properties.NullText = "";
     this.LUECDSubCommitte.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUECDSubCommitte.Properties.ValueMember = "SubCommitteId";
     this.LUECDSubCommitte.Properties.View = this.gridView4;
     this.LUECDSubCommitte.Size = new System.Drawing.Size(236, 22);
     this.LUECDSubCommitte.TabIndex = 2;
     //
     // gridView4
     //
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSubCommitte1});
     this.gridView4.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     //
     // colSubCommitte1
     //
     this.colSubCommitte1.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte1.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte1.Caption = "اللجنة";
     this.colSubCommitte1.FieldName = "SubCommitte";
     this.colSubCommitte1.Name = "colSubCommitte1";
     this.colSubCommitte1.Visible = true;
     this.colSubCommitte1.VisibleIndex = 0;
     //
     // labelControl2
     //
     this.labelControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl2.Location = new System.Drawing.Point(829, 86);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(20, 13);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "لجنة";
     //
     // LUESyndicateId
     //
     this.LUESyndicateId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.LUESyndicateId.Location = new System.Drawing.Point(580, 58);
     this.LUESyndicateId.Name = "LUESyndicateId";
     this.LUESyndicateId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.LUESyndicateId.Properties.Appearance.Options.UseFont = true;
     this.LUESyndicateId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUESyndicateId.Properties.DataSource = this.LSMSCDSyndicate;
     this.LUESyndicateId.Properties.DisplayMember = "Syndicate";
     this.LUESyndicateId.Properties.NullText = "";
     this.LUESyndicateId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUESyndicateId.Properties.ValueMember = "SyndicateId";
     this.LUESyndicateId.Properties.View = this.gridView1;
     this.LUESyndicateId.Size = new System.Drawing.Size(236, 22);
     this.LUESyndicateId.TabIndex = 1;
     this.LUESyndicateId.EditValueChanged += new System.EventHandler(this.LUESyndicateId_EditValueChanged);
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     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 = "Syndicate";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl1.Location = new System.Drawing.Point(822, 61);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(27, 13);
     this.labelControl1.TabIndex = 1;
     this.labelControl1.Text = "فرعية";
     //
     // LUETBLDofatSarf
     //
     this.LUETBLDofatSarf.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.LUETBLDofatSarf.Location = new System.Drawing.Point(580, 30);
     this.LUETBLDofatSarf.Name = "LUETBLDofatSarf";
     this.LUETBLDofatSarf.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.LUETBLDofatSarf.Properties.Appearance.Options.UseFont = true;
     this.LUETBLDofatSarf.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUETBLDofatSarf.Properties.DataSource = this.LSMSTBLDofatSarf;
     this.LUETBLDofatSarf.Properties.DisplayMember = "DofatSarf";
     this.LUETBLDofatSarf.Properties.NullText = "";
     this.LUETBLDofatSarf.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUETBLDofatSarf.Properties.ValueMember = "DofatSarfId";
     this.LUETBLDofatSarf.Properties.View = this.gridLookUpEdit1View;
     this.LUETBLDofatSarf.Size = new System.Drawing.Size(236, 22);
     this.LUETBLDofatSarf.TabIndex = 0;
     //
     // LSMSTBLDofatSarf
     //
     this.LSMSTBLDofatSarf.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLDofatSarf);
     this.LSMSTBLDofatSarf.KeyExpression = "[DofatSarfId]";
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDofatSarf});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colDofatSarf
     //
     this.colDofatSarf.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.Caption = "اسم الدفعة";
     this.colDofatSarf.FieldName = "DofatSarf";
     this.colDofatSarf.Name = "colDofatSarf";
     this.colDofatSarf.Visible = true;
     this.colDofatSarf.VisibleIndex = 0;
     //
     // labelControl7
     //
     this.labelControl7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl7.Location = new System.Drawing.Point(822, 33);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(29, 13);
     this.labelControl7.TabIndex = 1;
     this.labelControl7.Text = "الدفعة";
     //
     // btnCompare
     //
     this.btnCompare.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCompare.Location = new System.Drawing.Point(426, 30);
     this.btnCompare.Name = "btnCompare";
     this.btnCompare.Size = new System.Drawing.Size(150, 22);
     this.btnCompare.TabIndex = 3;
     this.btnCompare.Text = "مقارنة";
     this.btnCompare.Click += new System.EventHandler(this.btnCompare_Click);
     //
     // groupControl2
     //
     this.groupControl2.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.groupControl2.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControl2.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.groupControl2.Controls.Add(this.gridControlData);
     this.groupControl2.Location = new System.Drawing.Point(12, 128);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControl2.Size = new System.Drawing.Size(860, 321);
     this.groupControl2.TabIndex = 1;
     this.groupControl2.Text = "التفاصيل";
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // pbc
     //
     this.pbc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.pbc.Location = new System.Drawing.Point(5, 16);
     this.pbc.Name = "pbc";
     this.pbc.Size = new System.Drawing.Size(406, 26);
     this.pbc.TabIndex = 2;
     //
     // pcProgress
     //
     this.pcProgress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.pcProgress.Controls.Add(this.lblMax);
     this.pcProgress.Controls.Add(this.pbc);
     this.pcProgress.Controls.Add(this.lblValue);
     this.pcProgress.Location = new System.Drawing.Point(14, 45);
     this.pcProgress.Name = "pcProgress";
     this.pcProgress.Size = new System.Drawing.Size(418, 45);
     this.pcProgress.TabIndex = 3;
     this.pcProgress.Visible = false;
     //
     // lblMax
     //
     this.lblMax.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblMax.Location = new System.Drawing.Point(351, 1);
     this.lblMax.Name = "lblMax";
     this.lblMax.Size = new System.Drawing.Size(6, 13);
     this.lblMax.TabIndex = 0;
     this.lblMax.Text = "0";
     //
     // lblValue
     //
     this.lblValue.Location = new System.Drawing.Point(7, 1);
     this.lblValue.Name = "lblValue";
     this.lblValue.Size = new System.Drawing.Size(6, 13);
     this.lblValue.TabIndex = 0;
     this.lblValue.Text = "0";
     //
     // tBLWarasaSarfTableAdapter
     //
     this.tBLWarasaSarfTableAdapter.ClearBeforeFill = true;
     //
     // dsReports
     //
     this.dsReports.DataSetName = "dsReports";
     this.dsReports.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // rep03TableAdapter
     //
     this.rep03TableAdapter.ClearBeforeFill = true;
     //
     // Qry16Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(884, 461);
     this.Controls.Add(this.pcProgress);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.gcCommands);
     this.Name = "Qry16Frm";
     this.Text = "مقارنة صرفية الورثة بالتقرير";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.TBLWarasaSarfFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSyndicate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSubCommitte)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLWarasaSarfBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcCommands)).EndInit();
     this.gcCommands.ResumeLayout(false);
     this.gcCommands.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUECDSubCommitte.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUESyndicateId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUETBLDofatSarf.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLDofatSarf)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcProgress)).EndInit();
     this.pcProgress.ResumeLayout(false);
     this.pcProgress.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dsReports)).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.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HubToHubTransfer));
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
            this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
            this.txtRefNo = new DevExpress.XtraEditors.TextEdit();
            this.layoutForFacility = new DevExpress.XtraLayout.LayoutControlItem();
            this.lkForHub = new DevExpress.XtraEditors.LookUpEdit();
            this.btnSaveAndForward = new DevExpress.XtraEditors.SimpleButton();
            this.txtContactPerson = new DevExpress.XtraEditors.TextEdit();
            this.layoutControlItem52 = new DevExpress.XtraLayout.LayoutControlItem();
            this.lkCategoires = new DevExpress.XtraEditors.LookUpEdit();
            this.layoutControlItem31 = new DevExpress.XtraLayout.LayoutControlItem();
            this.txtItemName = new DevExpress.XtraEditors.TextEdit();
            this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem18 = new DevExpress.XtraLayout.LayoutControlItem();
            this.orderGrid = new DevExpress.XtraGrid.GridControl();
            this.gridOrderView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colExpiryDate = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colBatch = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colUnitPrice = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colPacks = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colQtyPerPacks = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colApprovedPacks = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colLocationID = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colBalance = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ExpireDateEditor = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
            this.repositoryItemButtonEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
            this.repositoryItemPacks = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.gridRecieveView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
            this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.layoutControlGroup14 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlItem29 = new DevExpress.XtraLayout.LayoutControlItem();
            this.gridItemsChoice = new DevExpress.XtraGrid.GridControl();
            this.gridItemChoiceView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colItemName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn66 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn67 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
            this.btnCancelOne = new DevExpress.XtraEditors.SimpleButton();
            this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
            this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
            this.lkAccountType = new DevExpress.XtraEditors.GridLookUpEdit();
            this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.ID = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn96 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ParentID = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn97 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn98 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.layoutFromStore = new DevExpress.XtraLayout.LayoutControlItem();
            this.lkFromStore = new DevExpress.XtraEditors.LookUpEdit();
            this.layoutControlGroup10 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.emptySpaceItem10 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.printOrder = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
            this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
            this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
            this.emptySpaceItem23 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.emptySpaceItem22 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.layoutControlGroup9 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlGroup8 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.emptySpaceItem15 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.boxSizedList = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.layoutControl4 = new DevExpress.XtraLayout.LayoutControl();
            this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
            this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
            this.dxValidation1stTab = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtRefNo.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutForFacility)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkForHub.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem52)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkCategoires.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.orderGrid)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridOrderView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPacks)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridRecieveView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup14)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridItemsChoice)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridItemChoiceView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkAccountType.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutFromStore)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkFromStore.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.printOrder.ImageCollection)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl4)).BeginInit();
            this.layoutControl4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dxValidation1stTab)).BeginInit();
            this.SuspendLayout();
            //
            // repositoryItemCheckEdit1
            //
            this.repositoryItemCheckEdit1.AutoHeight = false;
            this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
            this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
            this.repositoryItemCheckEdit1.ValueGrayed = false;
            //
            // layoutControlItem13
            //
            this.layoutControlItem13.Control = this.txtRefNo;
            this.layoutControlItem13.CustomizationFormText = "Order Number";
            this.layoutControlItem13.Location = new System.Drawing.Point(697, 24);
            this.layoutControlItem13.Name = "layoutControlItem13";
            this.layoutControlItem13.Size = new System.Drawing.Size(422, 24);
            this.layoutControlItem13.Text = "Order Number";
            this.layoutControlItem13.TextSize = new System.Drawing.Size(80, 13);
            //
            // txtRefNo
            //
            this.txtRefNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.txtRefNo.Enabled = false;
            this.txtRefNo.Location = new System.Drawing.Point(783, 28);
            this.txtRefNo.Name = "txtRefNo";
            this.txtRefNo.Size = new System.Drawing.Size(336, 20);
            this.txtRefNo.TabIndex = 15;
            //
            // layoutForFacility
            //
            this.layoutForFacility.Control = this.lkForHub;
            this.layoutForFacility.CustomizationFormText = "For Facility";
            this.layoutForFacility.Location = new System.Drawing.Point(274, 48);
            this.layoutForFacility.Name = "layoutForFacility";
            this.layoutForFacility.Size = new System.Drawing.Size(571, 48);
            this.layoutForFacility.Text = "For Hub";
            this.layoutForFacility.TextSize = new System.Drawing.Size(80, 13);
            //
            // lkForHub
            //
            this.lkForHub.EditValue = "1";
            this.lkForHub.Location = new System.Drawing.Point(360, 52);
            this.lkForHub.Name = "lkForHub";
            this.lkForHub.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.lkForHub.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Hub Name"),
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "Name4", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
            this.lkForHub.Properties.DisplayMember = "Name";
            this.lkForHub.Properties.NullText = "Select Issue Location";
            this.lkForHub.Properties.ValueMember = "ID";
            this.lkForHub.Size = new System.Drawing.Size(485, 20);
            this.lkForHub.TabIndex = 22;
            conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.NotEquals;
            conditionValidationRule1.ErrorText = "This value is not valid";
            this.dxValidation1stTab.SetValidationRule(this.lkForHub, conditionValidationRule1);
            this.lkForHub.EditValueChanged += new System.EventHandler(this.lkForHub_EditValueChanged);
            //
            // btnSaveAndForward
            //
            this.btnSaveAndForward.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveAndForward.Image")));
            this.btnSaveAndForward.Location = new System.Drawing.Point(876, 549);
            this.btnSaveAndForward.Name = "btnSaveAndForward";
            this.btnSaveAndForward.Size = new System.Drawing.Size(140, 22);
            this.btnSaveAndForward.TabIndex = 25;
            this.btnSaveAndForward.Text = "Save and Print";
            this.btnSaveAndForward.Click += new System.EventHandler(this.btnSaveAndForward_Click);
            //
            // txtContactPerson
            //
            this.txtContactPerson.Location = new System.Drawing.Point(786, 4);
            this.txtContactPerson.Name = "txtContactPerson";
            this.txtContactPerson.Size = new System.Drawing.Size(333, 20);
            this.txtContactPerson.TabIndex = 39;
            //
            // layoutControlItem52
            //
            this.layoutControlItem52.Control = this.lkCategoires;
            this.layoutControlItem52.CustomizationFormText = "Categories";
            this.layoutControlItem52.Location = new System.Drawing.Point(0, 0);
            this.layoutControlItem52.MaxSize = new System.Drawing.Size(273, 24);
            this.layoutControlItem52.MinSize = new System.Drawing.Size(273, 24);
            this.layoutControlItem52.Name = "layoutControlItem52";
            this.layoutControlItem52.Size = new System.Drawing.Size(273, 24);
            this.layoutControlItem52.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.layoutControlItem52.Text = "Categories";
            this.layoutControlItem52.TextSize = new System.Drawing.Size(80, 13);
            //
            // lkCategoires
            //
            this.lkCategoires.Location = new System.Drawing.Point(86, 4);
            this.lkCategoires.Name = "lkCategoires";
            this.lkCategoires.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.lkCategoires.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
            this.lkCategoires.Properties.DisplayMember = "Name";
            this.lkCategoires.Properties.NullText = "";
            this.lkCategoires.Properties.ValueMember = "ID";
            this.lkCategoires.Size = new System.Drawing.Size(187, 20);
            this.lkCategoires.TabIndex = 23;
            this.lkCategoires.EditValueChanged += new System.EventHandler(this.lkCategoires_EditValueChanged);
            //
            // layoutControlItem31
            //
            this.layoutControlItem31.Control = this.txtItemName;
            this.layoutControlItem31.CustomizationFormText = "layoutControlItem31";
            this.layoutControlItem31.Location = new System.Drawing.Point(0, 48);
            this.layoutControlItem31.Name = "layoutControlItem31";
            this.layoutControlItem31.Size = new System.Drawing.Size(274, 24);
            this.layoutControlItem31.Text = "Filter Drug Name";
            this.layoutControlItem31.TextSize = new System.Drawing.Size(80, 13);
            //
            // txtItemName
            //
            this.txtItemName.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
            | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtItemName.Location = new System.Drawing.Point(86, 52);
            this.txtItemName.Name = "txtItemName";
            this.txtItemName.Size = new System.Drawing.Size(188, 20);
            this.txtItemName.TabIndex = 4;
            this.txtItemName.EditValueChanged += new System.EventHandler(this.txtItemName_EditValueChanged);
            //
            // layoutControlItem8
            //
            this.layoutControlItem8.Control = this.btnSaveAndForward;
            this.layoutControlItem8.CustomizationFormText = "layoutControlItem8";
            this.layoutControlItem8.Location = new System.Drawing.Point(872, 545);
            this.layoutControlItem8.Name = "layoutControlItem8";
            this.layoutControlItem8.Size = new System.Drawing.Size(144, 26);
            this.layoutControlItem8.Text = "layoutControlItem8";
            this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem8.TextToControlDistance = 0;
            this.layoutControlItem8.TextVisible = false;
            //
            // layoutControlItem18
            //
            this.layoutControlItem18.Control = this.orderGrid;
            this.layoutControlItem18.CustomizationFormText = "layoutControlItem18";
            this.layoutControlItem18.Location = new System.Drawing.Point(271, 96);
            this.layoutControlItem18.Name = "layoutControlItem18";
            this.layoutControlItem18.Size = new System.Drawing.Size(848, 449);
            this.layoutControlItem18.Text = "layoutControlItem18";
            this.layoutControlItem18.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem18.TextToControlDistance = 0;
            this.layoutControlItem18.TextVisible = false;
            //
            // orderGrid
            //
            this.orderGrid.Location = new System.Drawing.Point(275, 100);
            this.orderGrid.MainView = this.gridOrderView;
            this.orderGrid.Name = "orderGrid";
            this.orderGrid.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.ExpireDateEditor,
            this.repositoryItemButtonEdit2,
            this.repositoryItemPacks});
            this.orderGrid.Size = new System.Drawing.Size(844, 445);
            this.orderGrid.TabIndex = 11;
            this.orderGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridOrderView,
            this.gridRecieveView1});
            this.orderGrid.Click += new System.EventHandler(this.orderGrid_Click);
            //
            // gridOrderView
            //
            this.gridOrderView.Appearance.FocusedCell.BackColor = System.Drawing.Color.SkyBlue;
            this.gridOrderView.Appearance.FocusedCell.Options.UseBackColor = true;
            this.gridOrderView.Appearance.FocusedRow.BackColor = System.Drawing.Color.CornflowerBlue;
            this.gridOrderView.Appearance.FocusedRow.Options.UseBackColor = true;
            this.gridOrderView.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            this.gridOrderView.Appearance.SelectedRow.Options.UseBackColor = true;
            this.gridOrderView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn11,
            this.gridColumn13,
            this.gridColumn18,
            this.gridColumn17,
            this.gridColumn16,
            this.gridColumn15,
            this.colExpiryDate,
            this.colBatch,
            this.colUnitPrice,
            this.colPacks,
            this.colQtyPerPacks,
            this.colApprovedPacks,
            this.gridColumn19,
            this.gridColumn22,
            this.gridColumn23,
            this.gridColumn24,
            this.gridColumn25,
            this.colLocationID,
            this.colBalance,
            this.gridColumn26,
            this.gridColumn27,
            this.gridColumn31});
            styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            styleFormatCondition1.Appearance.Options.UseBackColor = true;
            styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
            styleFormatCondition1.Expression = "[SKUBU] is null";
            this.gridOrderView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
            styleFormatCondition1});
            this.gridOrderView.GridControl = this.orderGrid;
            this.gridOrderView.GroupCount = 1;
            this.gridOrderView.IndicatorWidth = 40;
            this.gridOrderView.Name = "gridOrderView";
            this.gridOrderView.OptionsCustomization.AllowColumnMoving = false;
            this.gridOrderView.OptionsCustomization.AllowColumnResizing = false;
            this.gridOrderView.OptionsCustomization.AllowFilter = false;
            this.gridOrderView.OptionsCustomization.AllowQuickHideColumns = false;
            this.gridOrderView.OptionsCustomization.AllowSort = false;
            this.gridOrderView.OptionsMenu.EnableColumnMenu = false;
            this.gridOrderView.OptionsPrint.PrintDetails = true;
            this.gridOrderView.OptionsPrint.PrintFooter = false;
            this.gridOrderView.OptionsPrint.PrintGroupFooter = false;
            this.gridOrderView.OptionsPrint.PrintHorzLines = false;
            this.gridOrderView.OptionsPrint.PrintPreview = true;
            this.gridOrderView.OptionsPrint.PrintVertLines = false;
            this.gridOrderView.OptionsView.AllowCellMerge = true;
            this.gridOrderView.OptionsView.ShowGroupPanel = false;
            this.gridOrderView.OptionsView.ShowIndicator = false;
            this.gridOrderView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn19, DevExpress.Data.ColumnSortOrder.Ascending)});
            this.gridOrderView.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridOrderView_CellValueChanged);
            //
            // gridColumn11
            //
            this.gridColumn11.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn11.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn11.Caption = "Stock Code";
            this.gridColumn11.FieldName = "StockCode";
            this.gridColumn11.Name = "gridColumn11";
            this.gridColumn11.OptionsColumn.AllowEdit = false;
            this.gridColumn11.OptionsColumn.AllowFocus = false;
            this.gridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn11.Width = 25;
            //
            // gridColumn13
            //
            this.gridColumn13.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn13.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn13.Caption = "Item Name";
            this.gridColumn13.FieldName = "FullItemName";
            this.gridColumn13.Name = "gridColumn13";
            this.gridColumn13.OptionsColumn.AllowEdit = false;
            this.gridColumn13.OptionsColumn.AllowFocus = false;
            this.gridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn13.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
            this.gridColumn13.Visible = true;
            this.gridColumn13.VisibleIndex = 0;
            this.gridColumn13.Width = 206;
            //
            // gridColumn18
            //
            this.gridColumn18.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn18.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn18.Caption = "Manufacturer";
            this.gridColumn18.FieldName = "Manufacturer";
            this.gridColumn18.Name = "gridColumn18";
            this.gridColumn18.OptionsColumn.AllowEdit = false;
            this.gridColumn18.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn18.OptionsColumn.ReadOnly = true;
            this.gridColumn18.Visible = true;
            this.gridColumn18.VisibleIndex = 1;
            this.gridColumn18.Width = 108;
            //
            // gridColumn17
            //
            this.gridColumn17.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn17.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn17.Caption = "Unit";
            this.gridColumn17.FieldName = "Unit";
            this.gridColumn17.Name = "gridColumn17";
            this.gridColumn17.OptionsColumn.AllowEdit = false;
            this.gridColumn17.OptionsColumn.AllowFocus = false;
            this.gridColumn17.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn17.Visible = true;
            this.gridColumn17.VisibleIndex = 2;
            this.gridColumn17.Width = 41;
            //
            // gridColumn16
            //
            this.gridColumn16.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn16.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn16.Caption = "Supplier";
            this.gridColumn16.FieldName = "Supplier";
            this.gridColumn16.Name = "gridColumn16";
            this.gridColumn16.OptionsColumn.AllowEdit = false;
            this.gridColumn16.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn16.OptionsColumn.ReadOnly = true;
            this.gridColumn16.Visible = true;
            this.gridColumn16.VisibleIndex = 3;
            this.gridColumn16.Width = 108;
            //
            // gridColumn15
            //
            this.gridColumn15.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn15.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn15.Caption = "Location";
            this.gridColumn15.FieldName = "Location";
            this.gridColumn15.Name = "gridColumn15";
            this.gridColumn15.OptionsColumn.AllowEdit = false;
            this.gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn15.OptionsColumn.ReadOnly = true;
            this.gridColumn15.Visible = true;
            this.gridColumn15.VisibleIndex = 4;
            this.gridColumn15.Width = 63;
            //
            // colExpiryDate
            //
            this.colExpiryDate.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.colExpiryDate.AppearanceCell.Options.UseBackColor = true;
            this.colExpiryDate.Caption = "Exp Date";
            this.colExpiryDate.DisplayFormat.FormatString = "M, dd yyyy";
            this.colExpiryDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.colExpiryDate.FieldName = "ExpDate";
            this.colExpiryDate.Name = "colExpiryDate";
            this.colExpiryDate.OptionsColumn.AllowEdit = false;
            this.colExpiryDate.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.colExpiryDate.OptionsColumn.ReadOnly = true;
            this.colExpiryDate.Visible = true;
            this.colExpiryDate.VisibleIndex = 6;
            this.colExpiryDate.Width = 65;
            //
            // colBatch
            //
            this.colBatch.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.colBatch.AppearanceCell.Options.UseBackColor = true;
            this.colBatch.Caption = "Batch No";
            this.colBatch.FieldName = "BatchNo";
            this.colBatch.Name = "colBatch";
            this.colBatch.OptionsColumn.AllowEdit = false;
            this.colBatch.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.colBatch.OptionsColumn.ReadOnly = true;
            this.colBatch.Visible = true;
            this.colBatch.VisibleIndex = 5;
            this.colBatch.Width = 67;
            //
            // colUnitPrice
            //
            this.colUnitPrice.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.colUnitPrice.AppearanceCell.Options.UseBackColor = true;
            this.colUnitPrice.Caption = "Unit Price";
            this.colUnitPrice.FieldName = "UnitPrice";
            this.colUnitPrice.Name = "colUnitPrice";
            this.colUnitPrice.OptionsColumn.AllowEdit = false;
            this.colUnitPrice.Visible = true;
            this.colUnitPrice.VisibleIndex = 7;
            this.colUnitPrice.Width = 55;
            //
            // colPacks
            //
            this.colPacks.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.colPacks.AppearanceCell.Options.UseBackColor = true;
            this.colPacks.Caption = "Packs";
            this.colPacks.FieldName = "Packs";
            this.colPacks.Name = "colPacks";
            this.colPacks.OptionsColumn.AllowEdit = false;
            this.colPacks.Visible = true;
            this.colPacks.VisibleIndex = 8;
            this.colPacks.Width = 44;
            //
            // colQtyPerPacks
            //
            this.colQtyPerPacks.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.colQtyPerPacks.AppearanceCell.Options.UseBackColor = true;
            this.colQtyPerPacks.Caption = "Qty Per Pack";
            this.colQtyPerPacks.FieldName = "QtyPerPack";
            this.colQtyPerPacks.Name = "colQtyPerPacks";
            this.colQtyPerPacks.OptionsColumn.AllowEdit = false;
            this.colQtyPerPacks.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.colQtyPerPacks.Width = 42;
            //
            // colApprovedPacks
            //
            this.colApprovedPacks.Caption = "Approved Packs";
            this.colApprovedPacks.FieldName = "ApprovedPacks";
            this.colApprovedPacks.Name = "colApprovedPacks";
            this.colApprovedPacks.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.colApprovedPacks.OptionsColumn.FixedWidth = true;
            this.colApprovedPacks.Visible = true;
            this.colApprovedPacks.VisibleIndex = 9;
            this.colApprovedPacks.Width = 85;
            //
            // gridColumn19
            //
            this.gridColumn19.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn19.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn19.Caption = "Account Type";
            this.gridColumn19.FieldName = "account";
            this.gridColumn19.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value;
            this.gridColumn19.Name = "gridColumn19";
            this.gridColumn19.OptionsColumn.AllowEdit = false;
            this.gridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn19.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn19.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count)});
            this.gridColumn19.Width = 59;
            //
            // gridColumn22
            //
            this.gridColumn22.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn22.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn22.Caption = "Receive Doc";
            this.gridColumn22.FieldName = "ReceiveDocID";
            this.gridColumn22.Name = "gridColumn22";
            this.gridColumn22.OptionsColumn.AllowEdit = false;
            //
            // gridColumn23
            //
            this.gridColumn23.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn23.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn23.Caption = "Cost";
            this.gridColumn23.FieldName = "Cost";
            this.gridColumn23.Name = "gridColumn23";
            this.gridColumn23.OptionsColumn.AllowEdit = false;
            //
            // gridColumn24
            //
            this.gridColumn24.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn24.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn24.Caption = "ItemID";
            this.gridColumn24.FieldName = "ItemID";
            this.gridColumn24.Name = "gridColumn24";
            this.gridColumn24.OptionsColumn.AllowEdit = false;
            //
            // gridColumn25
            //
            this.gridColumn25.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn25.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn25.Caption = "UnitID";
            this.gridColumn25.FieldName = "UnitID";
            this.gridColumn25.Name = "gridColumn25";
            this.gridColumn25.OptionsColumn.AllowEdit = false;
            //
            // colLocationID
            //
            this.colLocationID.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.colLocationID.AppearanceCell.Options.UseBackColor = true;
            this.colLocationID.Caption = "LocationID";
            this.colLocationID.FieldName = "LocationID";
            this.colLocationID.Name = "colLocationID";
            this.colLocationID.OptionsColumn.AllowEdit = false;
            //
            // colBalance
            //
            this.colBalance.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.colBalance.AppearanceCell.Options.UseBackColor = true;
            this.colBalance.Caption = "Balance";
            this.colBalance.FieldName = "Balance";
            this.colBalance.Name = "colBalance";
            this.colBalance.OptionsColumn.AllowEdit = false;
            this.colBalance.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.colBalance.OptionsColumn.ReadOnly = true;
            this.colBalance.Width = 36;
            //
            // gridColumn26
            //
            this.gridColumn26.Caption = "StoreID";
            this.gridColumn26.FieldName = "StoreID";
            this.gridColumn26.Name = "gridColumn26";
            //
            // gridColumn27
            //
            this.gridColumn27.Caption = "gridColumn27";
            this.gridColumn27.FieldName = "ManufacturerID";
            this.gridColumn27.Name = "gridColumn27";
            //
            // gridColumn31
            //
            this.gridColumn31.Caption = "gridColumn31";
            this.gridColumn31.FieldName = "ReceivingLocationID";
            this.gridColumn31.Name = "gridColumn31";
            //
            // ExpireDateEditor
            //
            this.ExpireDateEditor.AutoHeight = false;
            this.ExpireDateEditor.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.ExpireDateEditor.DisplayFormat.FormatString = "mm-DD-YYYY";
            this.ExpireDateEditor.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.ExpireDateEditor.EditFormat.FormatString = "mm-DD-YYYY";
            this.ExpireDateEditor.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.ExpireDateEditor.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Value;
            this.ExpireDateEditor.Name = "ExpireDateEditor";
            this.ExpireDateEditor.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            //
            // repositoryItemButtonEdit2
            //
            this.repositoryItemButtonEdit2.AutoHeight = false;
            this.repositoryItemButtonEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
            this.repositoryItemButtonEdit2.Name = "repositoryItemButtonEdit2";
            this.repositoryItemButtonEdit2.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
            //
            // repositoryItemPacks
            //
            this.repositoryItemPacks.AutoHeight = false;
            this.repositoryItemPacks.Name = "repositoryItemPacks";
            this.repositoryItemPacks.EditValueChanged += new System.EventHandler(this.repositoryItemPacks_EditValueChanged);
            //
            // gridRecieveView1
            //
            this.gridRecieveView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand1});
            this.gridRecieveView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.gridColumn3,
            this.gridColumn1,
            this.gridColumn10,
            this.gridColumn6,
            this.gridColumn2,
            this.gridColumn4,
            this.gridColumn5,
            this.gridColumn7,
            this.gridColumn8,
            this.gridColumn9,
            this.gridColumn12});
            this.gridRecieveView1.GridControl = this.orderGrid;
            this.gridRecieveView1.Name = "gridRecieveView1";
            this.gridRecieveView1.OptionsView.ShowGroupPanel = false;
            //
            // gridBand1
            //
            this.gridBand1.Caption = "gridBand1";
            this.gridBand1.Columns.Add(this.gridColumn3);
            this.gridBand1.Columns.Add(this.gridColumn1);
            this.gridBand1.Columns.Add(this.gridColumn10);
            this.gridBand1.Columns.Add(this.gridColumn2);
            this.gridBand1.Columns.Add(this.gridColumn4);
            this.gridBand1.Columns.Add(this.gridColumn5);
            this.gridBand1.Columns.Add(this.gridColumn6);
            this.gridBand1.Columns.Add(this.gridColumn7);
            this.gridBand1.Columns.Add(this.gridColumn8);
            this.gridBand1.Columns.Add(this.gridColumn12);
            this.gridBand1.Columns.Add(this.gridColumn9);
            this.gridBand1.Name = "gridBand1";
            this.gridBand1.Width = 1117;
            //
            // gridColumn3
            //
            this.gridColumn3.Caption = "Stock Code";
            this.gridColumn3.FieldName = "Stock Code";
            this.gridColumn3.Name = "gridColumn3";
            this.gridColumn3.OptionsColumn.AllowEdit = false;
            this.gridColumn3.OptionsColumn.AllowFocus = false;
            this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn3.Visible = true;
            this.gridColumn3.Width = 104;
            //
            // gridColumn1
            //
            this.gridColumn1.Caption = "Item Name";
            this.gridColumn1.FieldName = "Item Name";
            this.gridColumn1.Name = "gridColumn1";
            this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn1.Visible = true;
            this.gridColumn1.Width = 104;
            //
            // gridColumn10
            //
            this.gridColumn10.Caption = "Manufacturer";
            this.gridColumn10.FieldName = "Manufacturer";
            this.gridColumn10.Name = "gridColumn10";
            this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn10.Visible = true;
            //
            // gridColumn2
            //
            this.gridColumn2.Caption = "Pack Qty";
            this.gridColumn2.FieldName = "AppovedQty";
            this.gridColumn2.Name = "gridColumn2";
            this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn2.Visible = true;
            this.gridColumn2.Width = 104;
            //
            // gridColumn4
            //
            this.gridColumn4.Caption = "Reciving Box Size";
            this.gridColumn4.Name = "gridColumn4";
            this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn4.Visible = true;
            this.gridColumn4.Width = 104;
            //
            // gridColumn5
            //
            this.gridColumn5.Caption = "BU Qty";
            this.gridColumn5.Name = "gridColumn5";
            this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn5.Visible = true;
            this.gridColumn5.Width = 104;
            //
            // gridColumn6
            //
            this.gridColumn6.Caption = "Unit";
            this.gridColumn6.FieldName = "Unit";
            this.gridColumn6.Name = "gridColumn6";
            this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn6.Visible = true;
            this.gridColumn6.Width = 104;
            //
            // gridColumn7
            //
            this.gridColumn7.Caption = "Price/Pack";
            this.gridColumn7.Name = "gridColumn7";
            this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn7.Visible = true;
            this.gridColumn7.Width = 104;
            //
            // gridColumn8
            //
            this.gridColumn8.Caption = "Batch No";
            this.gridColumn8.FieldName = "BatchNo";
            this.gridColumn8.Name = "gridColumn8";
            this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn8.Visible = true;
            this.gridColumn8.Width = 144;
            //
            // gridColumn12
            //
            this.gridColumn12.ColumnEdit = this.repositoryItemButtonEdit2;
            this.gridColumn12.ImageAlignment = System.Drawing.StringAlignment.Center;
            this.gridColumn12.Name = "gridColumn12";
            this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn12.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
            this.gridColumn12.Visible = true;
            this.gridColumn12.Width = 25;
            //
            // gridColumn9
            //
            this.gridColumn9.Caption = "Expiry Date";
            this.gridColumn9.ColumnEdit = this.ExpireDateEditor;
            this.gridColumn9.FieldName = "ExpDate";
            this.gridColumn9.Name = "gridColumn9";
            this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn9.Visible = true;
            this.gridColumn9.Width = 145;
            //
            // layoutControlGroup14
            //
            this.layoutControlGroup14.CustomizationFormText = "Root";
            this.layoutControlGroup14.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
            this.layoutControlGroup14.GroupBordersVisible = false;
            this.layoutControlGroup14.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutControlItem29,
            this.emptySpaceItem1,
            this.layoutControlItem12,
            this.layoutControlItem18,
            this.layoutControlItem8,
            this.layoutControlItem5,
            this.layoutControlItem13,
            this.layoutForFacility,
            this.emptySpaceItem4,
            this.emptySpaceItem3,
            this.emptySpaceItem2,
            this.layoutControlItem52,
            this.layoutControlItem3,
            this.layoutControlItem31,
            this.layoutFromStore});
            this.layoutControlGroup14.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup14.Name = "Root";
            this.layoutControlGroup14.OptionsItemText.TextToControlDistance = 2;
            this.layoutControlGroup14.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
            this.layoutControlGroup14.Size = new System.Drawing.Size(1123, 575);
            this.layoutControlGroup14.Text = "Root";
            this.layoutControlGroup14.TextVisible = false;
            //
            // layoutControlItem29
            //
            this.layoutControlItem29.Control = this.gridItemsChoice;
            this.layoutControlItem29.CustomizationFormText = "layoutControlItem29";
            this.layoutControlItem29.Location = new System.Drawing.Point(0, 96);
            this.layoutControlItem29.Name = "layoutControlItem29";
            this.layoutControlItem29.Size = new System.Drawing.Size(271, 449);
            this.layoutControlItem29.Text = "layoutControlItem29";
            this.layoutControlItem29.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem29.TextToControlDistance = 0;
            this.layoutControlItem29.TextVisible = false;
            //
            // gridItemsChoice
            //
            this.gridItemsChoice.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
            | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.gridItemsChoice.Location = new System.Drawing.Point(4, 100);
            this.gridItemsChoice.MainView = this.gridItemChoiceView;
            this.gridItemsChoice.Name = "gridItemsChoice";
            this.gridItemsChoice.Size = new System.Drawing.Size(267, 445);
            this.gridItemsChoice.TabIndex = 11;
            this.gridItemsChoice.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridItemChoiceView});
            //
            // gridItemChoiceView
            //
            this.gridItemChoiceView.Appearance.FocusedRow.BackColor = System.Drawing.Color.Gray;
            this.gridItemChoiceView.Appearance.FocusedRow.Options.UseBackColor = true;
            this.gridItemChoiceView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn30,
            this.gridColumn28,
            this.colItemName,
            this.gridColumn14,
            this.gridColumn29,
            this.gridColumn66,
            this.gridColumn67,
            this.gridColumn21,
            this.gridColumn20});
            this.gridItemChoiceView.GridControl = this.gridItemsChoice;
            this.gridItemChoiceView.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.None, "", null, "")});
            this.gridItemChoiceView.Name = "gridItemChoiceView";
            this.gridItemChoiceView.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
            this.gridItemChoiceView.OptionsCustomization.AllowColumnMoving = false;
            this.gridItemChoiceView.OptionsCustomization.AllowColumnResizing = false;
            this.gridItemChoiceView.OptionsCustomization.AllowFilter = false;
            this.gridItemChoiceView.OptionsCustomization.AllowGroup = false;
            this.gridItemChoiceView.OptionsDetail.AllowExpandEmptyDetails = true;
            this.gridItemChoiceView.OptionsDetail.EnableDetailToolTip = true;
            this.gridItemChoiceView.OptionsDetail.SmartDetailExpandButtonMode = DevExpress.XtraGrid.Views.Grid.DetailExpandButtonMode.AlwaysEnabled;
            this.gridItemChoiceView.OptionsDetail.SmartDetailHeight = true;
            this.gridItemChoiceView.OptionsFilter.UseNewCustomFilterDialog = true;
            this.gridItemChoiceView.OptionsPrint.EnableAppearanceEvenRow = true;
            this.gridItemChoiceView.OptionsPrint.EnableAppearanceOddRow = true;
            this.gridItemChoiceView.OptionsSelection.EnableAppearanceFocusedCell = false;
            this.gridItemChoiceView.OptionsSelection.EnableAppearanceHideSelection = false;
            this.gridItemChoiceView.OptionsSelection.MultiSelect = true;
            this.gridItemChoiceView.OptionsView.EnableAppearanceEvenRow = true;
            this.gridItemChoiceView.OptionsView.EnableAppearanceOddRow = true;
            this.gridItemChoiceView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridItemChoiceView.OptionsView.ShowGroupPanel = false;
            this.gridItemChoiceView.OptionsView.ShowIndicator = false;
            this.gridItemChoiceView.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.gridItemChoiceView_RowClick);
            //
            // gridColumn30
            //
            this.gridColumn30.ColumnEdit = this.repositoryItemCheckEdit1;
            this.gridColumn30.FieldName = "IsSelected";
            this.gridColumn30.Name = "gridColumn30";
            this.gridColumn30.OptionsColumn.AllowEdit = false;
            this.gridColumn30.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Like;
            this.gridColumn30.Visible = true;
            this.gridColumn30.VisibleIndex = 0;
            this.gridColumn30.Width = 20;
            //
            // gridColumn28
            //
            this.gridColumn28.Caption = "Stock Code";
            this.gridColumn28.FieldName = "StockCode";
            this.gridColumn28.Name = "gridColumn28";
            this.gridColumn28.OptionsColumn.AllowEdit = false;
            this.gridColumn28.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn28.Width = 89;
            //
            // colItemName
            //
            this.colItemName.Caption = "Item Name";
            this.colItemName.FieldName = "FullItemName";
            this.colItemName.Name = "colItemName";
            this.colItemName.OptionsColumn.AllowEdit = false;
            this.colItemName.Visible = true;
            this.colItemName.VisibleIndex = 1;
            this.colItemName.Width = 368;
            //
            // gridColumn14
            //
            this.gridColumn14.Caption = "Type";
            this.gridColumn14.FieldName = "CommodityType";
            this.gridColumn14.Name = "gridColumn14";
            this.gridColumn14.OptionsColumn.AllowEdit = false;
            this.gridColumn14.OptionsColumn.AllowFocus = false;
            //
            // gridColumn29
            //
            this.gridColumn29.Caption = "Unit";
            this.gridColumn29.FieldName = "Unit";
            this.gridColumn29.Name = "gridColumn29";
            this.gridColumn29.OptionsColumn.AllowEdit = false;
            this.gridColumn29.Visible = true;
            this.gridColumn29.VisibleIndex = 2;
            this.gridColumn29.Width = 69;
            //
            // gridColumn66
            //
            this.gridColumn66.Caption = "gridColumn66";
            this.gridColumn66.FieldName = "SubCategoryID";
            this.gridColumn66.Name = "gridColumn66";
            //
            // gridColumn67
            //
            this.gridColumn67.Caption = "gridColumn67";
            this.gridColumn67.FieldName = "CategoryID";
            this.gridColumn67.Name = "gridColumn67";
            //
            // gridColumn21
            //
            this.gridColumn21.Caption = "gridColumn21";
            this.gridColumn21.FieldName = "TypeID";
            this.gridColumn21.Name = "gridColumn21";
            //
            // gridColumn20
            //
            this.gridColumn20.Caption = "gridColumn20";
            this.gridColumn20.FieldName = "StoreID";
            this.gridColumn20.Name = "gridColumn20";
            //
            // emptySpaceItem1
            //
            this.emptySpaceItem1.AllowHotTrack = false;
            this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
            this.emptySpaceItem1.Location = new System.Drawing.Point(0, 545);
            this.emptySpaceItem1.Name = "emptySpaceItem1";
            this.emptySpaceItem1.Size = new System.Drawing.Size(872, 26);
            this.emptySpaceItem1.Text = "emptySpaceItem1";
            this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
            //
            // layoutControlItem12
            //
            this.layoutControlItem12.Control = this.btnCancelOne;
            this.layoutControlItem12.CustomizationFormText = "layoutControlItem12";
            this.layoutControlItem12.Location = new System.Drawing.Point(1016, 545);
            this.layoutControlItem12.MaxSize = new System.Drawing.Size(103, 24);
            this.layoutControlItem12.MinSize = new System.Drawing.Size(103, 24);
            this.layoutControlItem12.Name = "layoutControlItem12";
            this.layoutControlItem12.Size = new System.Drawing.Size(103, 26);
            this.layoutControlItem12.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.layoutControlItem12.Text = "layoutControlItem12";
            this.layoutControlItem12.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem12.TextToControlDistance = 0;
            this.layoutControlItem12.TextVisible = false;
            //
            // btnCancelOne
            //
            this.btnCancelOne.Image = ((System.Drawing.Image)(resources.GetObject("btnCancelOne.Image")));
            this.btnCancelOne.Location = new System.Drawing.Point(1020, 549);
            this.btnCancelOne.Name = "btnCancelOne";
            this.btnCancelOne.Size = new System.Drawing.Size(99, 20);
            this.btnCancelOne.TabIndex = 20;
            this.btnCancelOne.Text = "Cancel";
            this.btnCancelOne.Click += new System.EventHandler(this.btnCancelOne_Click);
            //
            // layoutControlItem5
            //
            this.layoutControlItem5.AppearanceItemCaption.Options.UseTextOptions = true;
            this.layoutControlItem5.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            this.layoutControlItem5.Control = this.txtContactPerson;
            this.layoutControlItem5.CustomizationFormText = "Contact Person";
            this.layoutControlItem5.Location = new System.Drawing.Point(697, 0);
            this.layoutControlItem5.Name = "layoutControlItem5";
            this.layoutControlItem5.Size = new System.Drawing.Size(422, 24);
            this.layoutControlItem5.Text = "Contact Person";
            this.layoutControlItem5.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
            this.layoutControlItem5.TextSize = new System.Drawing.Size(80, 13);
            this.layoutControlItem5.TextToControlDistance = 5;
            //
            // emptySpaceItem4
            //
            this.emptySpaceItem4.AllowHotTrack = false;
            this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4";
            this.emptySpaceItem4.Location = new System.Drawing.Point(845, 48);
            this.emptySpaceItem4.Name = "emptySpaceItem4";
            this.emptySpaceItem4.Size = new System.Drawing.Size(274, 48);
            this.emptySpaceItem4.Text = "emptySpaceItem4";
            this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
            //
            // emptySpaceItem3
            //
            this.emptySpaceItem3.AllowHotTrack = false;
            this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
            this.emptySpaceItem3.Location = new System.Drawing.Point(273, 0);
            this.emptySpaceItem3.Name = "emptySpaceItem3";
            this.emptySpaceItem3.Size = new System.Drawing.Size(424, 24);
            this.emptySpaceItem3.Text = "emptySpaceItem3";
            this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
            //
            // emptySpaceItem2
            //
            this.emptySpaceItem2.AllowHotTrack = false;
            this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
            this.emptySpaceItem2.Location = new System.Drawing.Point(273, 24);
            this.emptySpaceItem2.Name = "emptySpaceItem2";
            this.emptySpaceItem2.Size = new System.Drawing.Size(424, 24);
            this.emptySpaceItem2.Text = "emptySpaceItem2";
            this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
            //
            // layoutControlItem3
            //
            this.layoutControlItem3.Control = this.lkAccountType;
            this.layoutControlItem3.CustomizationFormText = "Accounts";
            this.layoutControlItem3.Location = new System.Drawing.Point(0, 24);
            this.layoutControlItem3.MaxSize = new System.Drawing.Size(273, 24);
            this.layoutControlItem3.MinSize = new System.Drawing.Size(273, 24);
            this.layoutControlItem3.Name = "layoutControlItem3";
            this.layoutControlItem3.Size = new System.Drawing.Size(273, 24);
            this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.layoutControlItem3.Text = "Accounts";
            this.layoutControlItem3.TextSize = new System.Drawing.Size(80, 13);
            //
            // lkAccountType
            //
            this.lkAccountType.EditValue = "";
            this.lkAccountType.Location = new System.Drawing.Point(86, 28);
            this.lkAccountType.Name = "lkAccountType";
            this.lkAccountType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.lkAccountType.Properties.DisplayMember = "Name";
            this.lkAccountType.Properties.NullText = "Select Account";
            this.lkAccountType.Properties.ValueMember = "ID";
            this.lkAccountType.Properties.View = this.gridLookUpEdit1View;
            this.lkAccountType.Size = new System.Drawing.Size(187, 20);
            this.lkAccountType.TabIndex = 68;
            this.lkAccountType.EditValueChanged += new System.EventHandler(this.lkAccountType_EditValueChanged);
            //
            // gridLookUpEdit1View
            //
            this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.ID,
            this.gridColumn96,
            this.ParentID,
            this.gridColumn97,
            this.gridColumn98});
            this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
            this.gridLookUpEdit1View.GroupCount = 3;
            this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
            this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
            this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
            this.gridLookUpEdit1View.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ParentID, DevExpress.Data.ColumnSortOrder.Ascending),
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn97, DevExpress.Data.ColumnSortOrder.Ascending),
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn96, DevExpress.Data.ColumnSortOrder.Ascending)});
            //
            // ID
            //
            this.ID.Caption = "ID";
            this.ID.FieldName = "ID";
            this.ID.Name = "ID";
            //
            // gridColumn96
            //
            this.gridColumn96.Caption = "Sub Account";
            this.gridColumn96.FieldName = "StoreGroupDivision";
            this.gridColumn96.Name = "gridColumn96";
            this.gridColumn96.Visible = true;
            this.gridColumn96.VisibleIndex = 0;
            //
            // ParentID
            //
            this.ParentID.Caption = "Mode";
            this.ParentID.FieldName = "StoreType";
            this.ParentID.Name = "ParentID";
            //
            // gridColumn97
            //
            this.gridColumn97.Caption = "Account";
            this.gridColumn97.FieldName = "StoreGroup";
            this.gridColumn97.Name = "gridColumn97";
            //
            // gridColumn98
            //
            this.gridColumn98.Caption = "SSA";
            this.gridColumn98.FieldName = "Name";
            this.gridColumn98.Name = "gridColumn98";
            this.gridColumn98.Visible = true;
            this.gridColumn98.VisibleIndex = 0;
            this.gridColumn98.Width = 83;
            //
            // layoutFromStore
            //
            this.layoutFromStore.Control = this.lkFromStore;
            this.layoutFromStore.CustomizationFormText = "From Store";
            this.layoutFromStore.Location = new System.Drawing.Point(0, 72);
            this.layoutFromStore.MaxSize = new System.Drawing.Size(274, 24);
            this.layoutFromStore.MinSize = new System.Drawing.Size(274, 24);
            this.layoutFromStore.Name = "layoutFromStore";
            this.layoutFromStore.Size = new System.Drawing.Size(274, 24);
            this.layoutFromStore.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.layoutFromStore.Text = "From Store";
            this.layoutFromStore.TextSize = new System.Drawing.Size(80, 13);
            this.layoutFromStore.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
            //
            // lkFromStore
            //
            this.lkFromStore.Location = new System.Drawing.Point(86, 76);
            this.lkFromStore.Name = "lkFromStore";
            this.lkFromStore.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.lkFromStore.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Stores")});
            this.lkFromStore.Properties.DisplayMember = "ID";
            this.lkFromStore.Properties.NullText = "Select Store To Transfer From";
            this.lkFromStore.Properties.ValueMember = "Name";
            this.lkFromStore.Size = new System.Drawing.Size(188, 20);
            this.lkFromStore.TabIndex = 42;
            this.lkFromStore.Visible = false;

            //
            // layoutControlGroup10
            //
            this.layoutControlGroup10.CustomizationFormText = "layoutControlGroup10";
            this.layoutControlGroup10.Location = new System.Drawing.Point(0, 126);
            this.layoutControlGroup10.Name = "layoutControlGroup10";
            this.layoutControlGroup10.OptionsItemText.TextToControlDistance = 5;
            this.layoutControlGroup10.Size = new System.Drawing.Size(717, 68);
            this.layoutControlGroup10.Text = "layoutControlGroup10";
            //
            // emptySpaceItem10
            //
            this.emptySpaceItem10.AllowHotTrack = false;
            this.emptySpaceItem10.CustomizationFormText = "emptySpaceItem10";
            this.emptySpaceItem10.Location = new System.Drawing.Point(0, 0);
            this.emptySpaceItem10.Name = "emptySpaceItem10";
            this.emptySpaceItem10.Size = new System.Drawing.Size(693, 10);
            this.emptySpaceItem10.Text = "emptySpaceItem10";
            this.emptySpaceItem10.TextSize = new System.Drawing.Size(0, 0);
            //
            // printOrder
            //
            //
            //
            //
            this.printOrder.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printOrder.ImageCollection.ImageStream")));
            this.printOrder.Landscape = true;
            this.printOrder.PaperKind = System.Drawing.Printing.PaperKind.A4;
            this.printOrder.PrintingSystem = this.printingSystem1;
            this.printOrder.PrintingSystemBase = this.printingSystem1;
            //
            // printingSystem1
            //
            this.printingSystem1.Links.AddRange(new object[] {
            this.printableComponentLink1,
            this.printOrder});
            //
            // printableComponentLink1
            //
            //
            //
            //
            this.printableComponentLink1.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink1.ImageCollection.ImageStream")));
            this.printableComponentLink1.Landscape = true;
            this.printableComponentLink1.Margins = new System.Drawing.Printing.Margins(20, 20, 20, 20);
            this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(null, new DevExpress.XtraPrinting.PageFooterArea(new string[] {
                "[Time Printed]",
                "[Date Printed]",
                "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))), DevExpress.XtraPrinting.BrickAlignment.Near));
            this.printableComponentLink1.PaperKind = System.Drawing.Printing.PaperKind.A4;
            this.printableComponentLink1.PrintingSystem = this.printingSystem1;
            this.printableComponentLink1.PrintingSystemBase = this.printingSystem1;
            this.printableComponentLink1.RtfReportHeader = resources.GetString("printableComponentLink1.RtfReportHeader");
            //
            // emptySpaceItem23
            //
            this.emptySpaceItem23.AllowHotTrack = false;
            this.emptySpaceItem23.CustomizationFormText = "emptySpaceItem23";
            this.emptySpaceItem23.Location = new System.Drawing.Point(1179, 24);
            this.emptySpaceItem23.Name = "emptySpaceItem23";
            this.emptySpaceItem23.Size = new System.Drawing.Size(10, 455);
            this.emptySpaceItem23.Text = "emptySpaceItem23";
            this.emptySpaceItem23.TextSize = new System.Drawing.Size(0, 0);
            //
            // emptySpaceItem22
            //
            this.emptySpaceItem22.AllowHotTrack = false;
            this.emptySpaceItem22.CustomizationFormText = "emptySpaceItem22";
            this.emptySpaceItem22.Location = new System.Drawing.Point(85, 0);
            this.emptySpaceItem22.Name = "emptySpaceItem22";
            this.emptySpaceItem22.Size = new System.Drawing.Size(119, 479);
            this.emptySpaceItem22.Text = "emptySpaceItem22";
            this.emptySpaceItem22.TextSize = new System.Drawing.Size(0, 0);
            //
            // popupMenu1
            //
            this.popupMenu1.Name = "popupMenu1";
            //
            // layoutControlGroup9
            //
            this.layoutControlGroup9.CustomizationFormText = "layoutControlGroup9";
            this.layoutControlGroup9.Location = new System.Drawing.Point(0, 126);
            this.layoutControlGroup9.Name = "layoutControlGroup9";
            this.layoutControlGroup9.OptionsItemText.TextToControlDistance = 5;
            this.layoutControlGroup9.Size = new System.Drawing.Size(717, 68);
            this.layoutControlGroup9.Text = "layoutControlGroup9";
            //
            // layoutControlGroup8
            //
            this.layoutControlGroup8.CustomizationFormText = "layoutControlGroup8";
            this.layoutControlGroup8.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup8.Name = "layoutControlGroup8";
            this.layoutControlGroup8.OptionsItemText.TextToControlDistance = 5;
            this.layoutControlGroup8.Size = new System.Drawing.Size(717, 116);
            this.layoutControlGroup8.Text = "layoutControlGroup8";
            //
            // emptySpaceItem15
            //
            this.emptySpaceItem15.AllowHotTrack = false;
            this.emptySpaceItem15.CustomizationFormText = "emptySpaceItem15";
            this.emptySpaceItem15.Location = new System.Drawing.Point(0, 116);
            this.emptySpaceItem15.Name = "emptySpaceItem15";
            this.emptySpaceItem15.Size = new System.Drawing.Size(717, 10);
            this.emptySpaceItem15.Text = "emptySpaceItem15";
            this.emptySpaceItem15.TextSize = new System.Drawing.Size(0, 0);
            //
            // boxSizedList
            //
            this.boxSizedList.AutoHeight = false;
            this.boxSizedList.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.boxSizedList.DisplayMember = "Name";
            this.boxSizedList.Name = "boxSizedList";
            this.boxSizedList.ValueMember = "ID";
            //
            // repositoryItemSpinEdit1
            //
            this.repositoryItemSpinEdit1.AutoHeight = false;
            this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            //
            // layoutControl4
            //
            this.layoutControl4.Controls.Add(this.lkAccountType);
            this.layoutControl4.Controls.Add(this.lkFromStore);
            this.layoutControl4.Controls.Add(this.txtRefNo);
            this.layoutControl4.Controls.Add(this.btnSaveAndForward);
            this.layoutControl4.Controls.Add(this.txtContactPerson);
            this.layoutControl4.Controls.Add(this.btnCancelOne);
            this.layoutControl4.Controls.Add(this.txtItemName);
            this.layoutControl4.Controls.Add(this.gridItemsChoice);
            this.layoutControl4.Controls.Add(this.orderGrid);
            this.layoutControl4.Controls.Add(this.lkCategoires);
            this.layoutControl4.Controls.Add(this.lkForHub);
            this.layoutControl4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.layoutControl4.Location = new System.Drawing.Point(0, 0);
            this.layoutControl4.Name = "layoutControl4";
            this.layoutControl4.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(243, 227, 514, 350);
            this.layoutControl4.OptionsView.ShareLookAndFeelWithChildren = false;
            this.layoutControl4.Root = this.layoutControlGroup14;
            this.layoutControl4.Size = new System.Drawing.Size(1123, 575);
            this.layoutControl4.TabIndex = 32;
            this.layoutControl4.Text = "layoutControl4";
            //
            // repositoryItemDateEdit3
            //
            this.repositoryItemDateEdit3.AutoHeight = false;
            this.repositoryItemDateEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemDateEdit3.EditFormat.FormatString = "mm-DD-YYYY";
            this.repositoryItemDateEdit3.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.repositoryItemDateEdit3.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.DisplayText;
            this.repositoryItemDateEdit3.Name = "repositoryItemDateEdit3";
            this.repositoryItemDateEdit3.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            //
            // repositoryItemButtonEdit4
            //
            this.repositoryItemButtonEdit4.AutoHeight = false;
            this.repositoryItemButtonEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
            this.repositoryItemButtonEdit4.Name = "repositoryItemButtonEdit4";
            this.repositoryItemButtonEdit4.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
            //
            // HubToHubTransfer
            //
            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.layoutControl4);
            this.Name = "HubToHubTransfer";
            this.Text = "Hub To Hub Transfer";
            this.Load += new System.EventHandler(this.HubToHubTransfer_Load);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtRefNo.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutForFacility)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkForHub.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem52)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkCategoires.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.orderGrid)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridOrderView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPacks)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridRecieveView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup14)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridItemsChoice)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridItemChoiceView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkAccountType.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutFromStore)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkFromStore.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.printOrder.ImageCollection)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl4)).EndInit();
            this.layoutControl4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dxValidation1stTab)).EndInit();
            this.ResumeLayout(false);
        }
Exemple #23
0
        public static void Assets_GridLookUpEdit(DevExpress.XtraEditors.GridLookUpEdit Control, AssetsStatus[] statuses = null, bool IsBindingData = true)
        {
            #region 列名

            DevExpress.XtraGrid.Columns.GridColumn StatusName = new DevExpress.XtraGrid.Columns.GridColumn();
            StatusName.Name         = "StatusName";
            StatusName.Visible      = true;
            StatusName.FieldName    = "StatusName";
            StatusName.Caption      = "状态";
            StatusName.VisibleIndex = 0;
            StatusName.Width        = 40;


            DevExpress.XtraGrid.Columns.GridColumn ID = new DevExpress.XtraGrid.Columns.GridColumn();
            ID.Name         = "Id";
            ID.Visible      = false;
            ID.FieldName    = "Id";
            ID.Caption      = "编号";
            ID.VisibleIndex = -1;
            ID.Width        = 40;

            DevExpress.XtraGrid.Columns.GridColumn Name = new DevExpress.XtraGrid.Columns.GridColumn();
            Name.Name         = "Name";
            Name.FieldName    = "Name";
            Name.Caption      = "名称";
            Name.VisibleIndex = 2;
            Name.Width        = 80;
            Name.Visible      = true;

            DevExpress.XtraGrid.Columns.GridColumn code = new DevExpress.XtraGrid.Columns.GridColumn();
            code.Name         = "Barcode";
            code.FieldName    = "Barcode";
            code.Caption      = "编码";
            code.VisibleIndex = 3;
            code.Width        = 120;
            code.Visible      = true;

            DevExpress.XtraGrid.Columns.GridColumn model = new DevExpress.XtraGrid.Columns.GridColumn();
            model.Name         = "Model";
            model.Visible      = true;
            model.FieldName    = "Model";
            model.Caption      = "型号";
            model.VisibleIndex = 4;

            DevExpress.XtraGrid.Columns.GridColumn Dept = new DevExpress.XtraGrid.Columns.GridColumn();
            Dept.Name         = "DepartmentName";
            Dept.FieldName    = "DepartmentName";
            Dept.Caption      = "部门";
            Dept.VisibleIndex = 5;
            Dept.Visible      = true;

            DevExpress.XtraGrid.Columns.GridColumn staff = new DevExpress.XtraGrid.Columns.GridColumn();
            staff.Name         = "UserName";
            staff.FieldName    = "UserName";
            staff.Caption      = "人员";
            staff.VisibleIndex = 6;
            staff.Visible      = true;

            DevExpress.XtraGrid.Columns.GridColumn stock = new DevExpress.XtraGrid.Columns.GridColumn();
            stock.Name         = "StockName";
            stock.FieldName    = "StockName";
            stock.Caption      = "仓库";
            stock.VisibleIndex = 7;
            stock.Visible      = true;

            Control.Properties.PopupView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { StatusName, ID, Name, code, model, Dept, staff, stock });

            #endregion
            Control.Properties.ImmediatePopup = true;
            Control.Properties.NullText       = "";
            Control.Properties.TextEditStyle  = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
            Control.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
            Control.Properties.DisplayMember  = "Name";
            Control.Properties.ValueMember    = "Id";
            Control.Properties.View.OptionsView.ColumnAutoWidth = false;

            if (IsBindingData)
            {
                Control.Properties.DataSource = InitalControlHelper.GetAssetListByStatus(statuses);
            }
        }
 /// <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.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.ceamantvisa = new DevExpress.XtraEditors.CheckEdit();
     this.cesarfcheek = new DevExpress.XtraEditors.CheckEdit();
     this.lueMMashatId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSTBLMashat = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = 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.lueDofatSarfAId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.cdDofaatAmanatBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsRetirementCenter = new RetirementCenter.DataSources.dsRetirementCenter();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lueDofatSarfId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSDofatSarfId = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tbamanatrem = new DevExpress.XtraEditors.MemoEdit();
     this.tbamanatmony = new DevExpress.XtraEditors.TextEdit();
     this.tbestktaa = new DevExpress.XtraEditors.TextEdit();
     this.tbmostahek = new DevExpress.XtraEditors.TextEdit();
     this.tbsefa = new DevExpress.XtraEditors.TextEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtpGeneral = new DevExpress.XtraTab.XtraTabPage();
     this.colMonthName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colYearName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMonthName1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cdDofaatAmanatTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.CdDofaatAmanatTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ceamantvisa.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cesarfcheek.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueMMashatId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLMashat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDofatSarfAId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cdDofaatAmanatBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDofatSarfId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDofatSarfId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbamanatrem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbamanatmony.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbestktaa.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbmostahek.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbsefa.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtpGeneral.SuspendLayout();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.panelControl1.Controls.Add(this.btnClose);
     this.panelControl1.Location = new System.Drawing.Point(5, 463);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(520, 44);
     this.panelControl1.TabIndex = 1;
     //
     // btnClose
     //
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Image = global::RetirementCenter.Properties.Resources.Delete;
     this.btnClose.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleRight;
     this.btnClose.Location = new System.Drawing.Point(7, 7);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(90, 30);
     this.btnClose.TabIndex = 11;
     this.btnClose.Text = "اغلاق";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnSave
     //
     this.btnSave.Image = global::RetirementCenter.Properties.Resources.Save;
     this.btnSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleRight;
     this.btnSave.Location = new System.Drawing.Point(12, 338);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(495, 38);
     this.btnSave.StyleController = this.layoutControl1;
     this.btnSave.TabIndex = 10;
     this.btnSave.Text = "حفـــــــــــــــــــــــــظ";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.ceamantvisa);
     this.layoutControl1.Controls.Add(this.btnSave);
     this.layoutControl1.Controls.Add(this.cesarfcheek);
     this.layoutControl1.Controls.Add(this.lueMMashatId);
     this.layoutControl1.Controls.Add(this.lueDofatSarfAId);
     this.layoutControl1.Controls.Add(this.lueDofatSarfId);
     this.layoutControl1.Controls.Add(this.tbamanatrem);
     this.layoutControl1.Controls.Add(this.tbamanatmony);
     this.layoutControl1.Controls.Add(this.tbestktaa);
     this.layoutControl1.Controls.Add(this.tbmostahek);
     this.layoutControl1.Controls.Add(this.tbsefa);
     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(845, 256, 250, 350);
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(519, 398);
     this.layoutControl1.TabIndex = 11;
     this.layoutControl1.Text = "layoutControl1";
     //
     // ceamantvisa
     //
     this.ceamantvisa.Location = new System.Drawing.Point(405, 12);
     this.ceamantvisa.Name = "ceamantvisa";
     this.ceamantvisa.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.ceamantvisa.Properties.Appearance.Options.UseFont = true;
     this.ceamantvisa.Properties.Appearance.Options.UseTextOptions = true;
     this.ceamantvisa.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.ceamantvisa.Properties.Caption = "امانات فيزا";
     this.ceamantvisa.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ceamantvisa.Size = new System.Drawing.Size(102, 24);
     this.ceamantvisa.StyleController = this.layoutControl1;
     this.ceamantvisa.TabIndex = 0;
     this.ceamantvisa.CheckedChanged += new System.EventHandler(this.ceamantvisa_CheckedChanged);
     //
     // cesarfcheek
     //
     this.cesarfcheek.Location = new System.Drawing.Point(12, 310);
     this.cesarfcheek.Name = "cesarfcheek";
     this.cesarfcheek.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.cesarfcheek.Properties.Appearance.Options.UseFont = true;
     this.cesarfcheek.Properties.Appearance.Options.UseTextOptions = true;
     this.cesarfcheek.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.cesarfcheek.Properties.Caption = "تصرف بشيك";
     this.cesarfcheek.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.cesarfcheek.Size = new System.Drawing.Size(495, 24);
     this.cesarfcheek.StyleController = this.layoutControl1;
     this.cesarfcheek.TabIndex = 9;
     this.cesarfcheek.CheckedChanged += new System.EventHandler(this.ceamantvisa_CheckedChanged);
     //
     // lueMMashatId
     //
     this.lueMMashatId.EditValue = "";
     this.lueMMashatId.Location = new System.Drawing.Point(12, 40);
     this.lueMMashatId.Name = "lueMMashatId";
     this.lueMMashatId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.lueMMashatId.Properties.Appearance.Options.UseFont = true;
     this.lueMMashatId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueMMashatId.Properties.DataSource = this.LSMSTBLMashat;
     this.lueMMashatId.Properties.DisplayMember = "MMashatName";
     this.lueMMashatId.Properties.NullText = "";
     this.lueMMashatId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueMMashatId.Properties.ValueMember = "MMashatId";
     this.lueMMashatId.Properties.View = this.gridView1;
     this.lueMMashatId.Size = new System.Drawing.Size(418, 26);
     this.lueMMashatId.StyleController = this.layoutControl1;
     this.lueMMashatId.TabIndex = 2;
     this.lueMMashatId.EditValueChanged += new System.EventHandler(this.lueMMashatId_EditValueChanged);
     //
     // LSMSTBLMashat
     //
     this.LSMSTBLMashat.ElementType = typeof(RetirementCenter.DataSources.Linq.vTBLMashat01_V1);
     this.LSMSTBLMashat.KeyExpression = "MMashatId";
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMMashatId,
     this.gridColumn1,
     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.ShowAutoFilterRow = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "كود";
     this.colMMashatId.FieldName = "MMashatId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 0;
     //
     // 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 = "MMashatName";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.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 = 2;
     //
     // 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 = 3;
     //
     // lueDofatSarfAId
     //
     this.lueDofatSarfAId.EditValue = "";
     this.lueDofatSarfAId.Location = new System.Drawing.Point(12, 70);
     this.lueDofatSarfAId.Name = "lueDofatSarfAId";
     this.lueDofatSarfAId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.lueDofatSarfAId.Properties.Appearance.Options.UseFont = true;
     this.lueDofatSarfAId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueDofatSarfAId.Properties.DataSource = this.cdDofaatAmanatBindingSource;
     this.lueDofatSarfAId.Properties.DisplayMember = "DofatSarfA";
     this.lueDofatSarfAId.Properties.NullText = "";
     this.lueDofatSarfAId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueDofatSarfAId.Properties.ValueMember = "DofatSarfAId";
     this.lueDofatSarfAId.Properties.View = this.gridLookUpEdit1View;
     this.lueDofatSarfAId.Size = new System.Drawing.Size(418, 26);
     this.lueDofatSarfAId.StyleController = this.layoutControl1;
     this.lueDofatSarfAId.TabIndex = 0;
     this.lueDofatSarfAId.EditValueChanged += new System.EventHandler(this.lueDofatSarfAId_EditValueChanged);
     //
     // cdDofaatAmanatBindingSource
     //
     this.cdDofaatAmanatBindingSource.DataMember = "CdDofaatAmanat";
     this.cdDofaatAmanatBindingSource.DataSource = this.dsRetirementCenter;
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName = "dsRetirementCenter";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicate});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.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 = "DofatSarfA";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 0;
     //
     // lueDofatSarfId
     //
     this.lueDofatSarfId.EditValue = "";
     this.lueDofatSarfId.Location = new System.Drawing.Point(12, 280);
     this.lueDofatSarfId.Name = "lueDofatSarfId";
     this.lueDofatSarfId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.lueDofatSarfId.Properties.Appearance.Options.UseFont = true;
     this.lueDofatSarfId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueDofatSarfId.Properties.DataSource = this.LSMSDofatSarfId;
     this.lueDofatSarfId.Properties.DisplayMember = "DofatSarfA";
     this.lueDofatSarfId.Properties.NullText = "";
     this.lueDofatSarfId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueDofatSarfId.Properties.ValueMember = "DofatSarfAId";
     this.lueDofatSarfId.Properties.View = this.gridView2;
     this.lueDofatSarfId.Size = new System.Drawing.Size(418, 26);
     this.lueDofatSarfId.StyleController = this.layoutControl1;
     this.lueDofatSarfId.TabIndex = 8;
     //
     // LSMSDofatSarfId
     //
     this.LSMSDofatSarfId.ElementType = typeof(RetirementCenter.DataSources.Linq.CdDofaatAmanat);
     this.LSMSDofatSarfId.KeyExpression = "[DofatSarfAId]";
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn2});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // 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 = "DofatSarfA";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // tbamanatrem
     //
     this.tbamanatrem.Location = new System.Drawing.Point(12, 220);
     this.tbamanatrem.Name = "tbamanatrem";
     this.tbamanatrem.Size = new System.Drawing.Size(418, 56);
     this.tbamanatrem.StyleController = this.layoutControl1;
     this.tbamanatrem.TabIndex = 7;
     //
     // tbamanatmony
     //
     this.tbamanatmony.EditValue = "0";
     this.tbamanatmony.Location = new System.Drawing.Point(12, 100);
     this.tbamanatmony.Name = "tbamanatmony";
     this.tbamanatmony.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.tbamanatmony.Properties.Appearance.Options.UseFont = true;
     this.tbamanatmony.Properties.DisplayFormat.FormatString = "f2";
     this.tbamanatmony.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbamanatmony.Properties.EditFormat.FormatString = "f2";
     this.tbamanatmony.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbamanatmony.Properties.Mask.EditMask = "f2";
     this.tbamanatmony.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.tbamanatmony.Size = new System.Drawing.Size(418, 26);
     this.tbamanatmony.StyleController = this.layoutControl1;
     this.tbamanatmony.TabIndex = 3;
     //
     // tbestktaa
     //
     this.tbestktaa.Location = new System.Drawing.Point(12, 130);
     this.tbestktaa.Name = "tbestktaa";
     this.tbestktaa.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.tbestktaa.Properties.Appearance.Options.UseFont = true;
     this.tbestktaa.Properties.DisplayFormat.FormatString = "f2";
     this.tbestktaa.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbestktaa.Properties.EditFormat.FormatString = "f2";
     this.tbestktaa.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbestktaa.Properties.Mask.EditMask = "f2";
     this.tbestktaa.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.tbestktaa.Size = new System.Drawing.Size(418, 26);
     this.tbestktaa.StyleController = this.layoutControl1;
     this.tbestktaa.TabIndex = 4;
     //
     // tbmostahek
     //
     this.tbmostahek.Location = new System.Drawing.Point(12, 160);
     this.tbmostahek.Name = "tbmostahek";
     this.tbmostahek.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.tbmostahek.Properties.Appearance.Options.UseFont = true;
     this.tbmostahek.Size = new System.Drawing.Size(418, 26);
     this.tbmostahek.StyleController = this.layoutControl1;
     this.tbmostahek.TabIndex = 5;
     //
     // tbsefa
     //
     this.tbsefa.Location = new System.Drawing.Point(12, 190);
     this.tbsefa.Name = "tbsefa";
     this.tbsefa.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.tbsefa.Properties.Appearance.Options.UseFont = true;
     this.tbsefa.Size = new System.Drawing.Size(418, 26);
     this.tbsefa.StyleController = this.layoutControl1;
     this.tbsefa.TabIndex = 6;
     //
     // 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.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5,
     this.layoutControlItem6,
     this.layoutControlItem7,
     this.layoutControlItem8,
     this.layoutControlItem9,
     this.layoutControlItem10,
     this.layoutControlItem11,
     this.emptySpaceItem1,
     this.emptySpaceItem2});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Size = new System.Drawing.Size(519, 398);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.ceamantvisa;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(393, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(106, 28);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem2.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.layoutControlItem2.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.layoutControlItem2.Control = this.lueMMashatId;
     this.layoutControlItem2.CustomizationFormText = "اسم العضو";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 28);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(499, 30);
     this.layoutControlItem2.Text = "اسم العضو";
     this.layoutControlItem2.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(74, 13);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem3.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.layoutControlItem3.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.layoutControlItem3.Control = this.lueDofatSarfAId;
     this.layoutControlItem3.CustomizationFormText = "الدفعة";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 58);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(499, 30);
     this.layoutControlItem3.Text = "الدفعة";
     this.layoutControlItem3.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(74, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem4.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.layoutControlItem4.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.layoutControlItem4.Control = this.tbamanatmony;
     this.layoutControlItem4.CustomizationFormText = "المبلغ";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 88);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(499, 30);
     this.layoutControlItem4.Text = "المبلغ";
     this.layoutControlItem4.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(74, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem5.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.layoutControlItem5.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.layoutControlItem5.Control = this.tbestktaa;
     this.layoutControlItem5.CustomizationFormText = "الاستقطاع";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 118);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(499, 30);
     this.layoutControlItem5.Text = "الاستقطاع";
     this.layoutControlItem5.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(74, 13);
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem6.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.layoutControlItem6.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.layoutControlItem6.Control = this.tbmostahek;
     this.layoutControlItem6.CustomizationFormText = "المستحق";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 148);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(499, 30);
     this.layoutControlItem6.Text = "المستحق";
     this.layoutControlItem6.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem6.TextSize = new System.Drawing.Size(74, 13);
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem7.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.layoutControlItem7.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.layoutControlItem7.Control = this.tbsefa;
     this.layoutControlItem7.CustomizationFormText = "الصفه";
     this.layoutControlItem7.Location = new System.Drawing.Point(0, 178);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(499, 30);
     this.layoutControlItem7.Text = "الصفه";
     this.layoutControlItem7.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(74, 13);
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem8.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.layoutControlItem8.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.layoutControlItem8.Control = this.tbamanatrem;
     this.layoutControlItem8.CustomizationFormText = "ملاحظة";
     this.layoutControlItem8.Location = new System.Drawing.Point(0, 208);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(499, 60);
     this.layoutControlItem8.Text = "ملاحظة";
     this.layoutControlItem8.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem8.TextSize = new System.Drawing.Size(74, 13);
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem9.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.layoutControlItem9.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.layoutControlItem9.Control = this.lueDofatSarfId;
     this.layoutControlItem9.CustomizationFormText = "سيصرف بالدفعة";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 268);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(499, 30);
     this.layoutControlItem9.Text = "سيصرف بالدفعة";
     this.layoutControlItem9.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem9.TextSize = new System.Drawing.Size(74, 13);
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.Control = this.cesarfcheek;
     this.layoutControlItem10.CustomizationFormText = "layoutControlItem10";
     this.layoutControlItem10.Location = new System.Drawing.Point(0, 298);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(499, 28);
     this.layoutControlItem10.Text = "layoutControlItem10";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem10.TextToControlDistance = 0;
     this.layoutControlItem10.TextVisible = false;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.btnSave;
     this.layoutControlItem11.CustomizationFormText = "layoutControlItem11";
     this.layoutControlItem11.Location = new System.Drawing.Point(0, 326);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(499, 42);
     this.layoutControlItem11.Text = "layoutControlItem11";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem11.TextToControlDistance = 0;
     this.layoutControlItem11.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 0);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(393, 28);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(0, 368);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(499, 10);
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(5, 12);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.xtraTabControl1.SelectedTabPage = this.xtpGeneral;
     this.xtraTabControl1.Size = new System.Drawing.Size(525, 445);
     this.xtraTabControl1.TabIndex = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtpGeneral});
     //
     // xtpGeneral
     //
     this.xtpGeneral.Controls.Add(this.layoutControl1);
     this.xtpGeneral.Image = global::RetirementCenter.Properties.Resources.Edit;
     this.xtpGeneral.Name = "xtpGeneral";
     this.xtpGeneral.Size = new System.Drawing.Size(519, 398);
     this.xtpGeneral.Text = "بيانات أساسيه";
     //
     // colMonthName
     //
     this.colMonthName.AppearanceCell.Options.UseTextOptions = true;
     this.colMonthName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMonthName.AppearanceHeader.Options.UseTextOptions = true;
     this.colMonthName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMonthName.Caption = "اسم الشهر";
     this.colMonthName.FieldName = "MonthName";
     this.colMonthName.Name = "colMonthName";
     this.colMonthName.Visible = true;
     this.colMonthName.VisibleIndex = 0;
     //
     // colYearName
     //
     this.colYearName.AppearanceCell.Options.UseTextOptions = true;
     this.colYearName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colYearName.AppearanceHeader.Options.UseTextOptions = true;
     this.colYearName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colYearName.Caption = "اسم السنه";
     this.colYearName.FieldName = "YearName";
     this.colYearName.Name = "colYearName";
     this.colYearName.Visible = true;
     this.colYearName.VisibleIndex = 0;
     //
     // colMonthName1
     //
     this.colMonthName1.AppearanceCell.Options.UseTextOptions = true;
     this.colMonthName1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMonthName1.AppearanceHeader.Options.UseTextOptions = true;
     this.colMonthName1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMonthName1.Caption = "اسم الشهر";
     this.colMonthName1.FieldName = "MonthName";
     this.colMonthName1.Name = "colMonthName1";
     this.colMonthName1.Visible = true;
     this.colMonthName1.VisibleIndex = 0;
     //
     // cdDofaatAmanatTableAdapter
     //
     this.cdDofaatAmanatTableAdapter.ClearBeforeFill = true;
     //
     // TblMemberAmanatWFrm
     //
     this.AcceptButton = this.btnSave;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnClose;
     this.ClientSize = new System.Drawing.Size(542, 516);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox = false;
     this.Name = "TblMemberAmanatWFrm";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "تحرير";
     this.Load += new System.EventHandler(this.FormWFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ceamantvisa.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cesarfcheek.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueMMashatId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLMashat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDofatSarfAId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cdDofaatAmanatBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDofatSarfId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDofatSarfId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbamanatrem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbamanatmony.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbestktaa.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbmostahek.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbsefa.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtpGeneral.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #25
0
 private void InitializeComponent()
 {
     this.lblYear  = new System.Windows.Forms.Label();
     this.pnlYear  = new System.Windows.Forms.Panel();
     this.editYear = new DevExpress.XtraEditors.GridLookUpEdit();
     this.repositoryItemCheckEditYearOpen = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gvYear              = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colYear             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colOpen             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnlPeriod           = new System.Windows.Forms.Panel();
     this.editPeriod          = new DevExpress.XtraEditors.GridLookUpEdit();
     this.chkPeriodOpen       = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPeriod           = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEndDate          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPeriodOpen       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnPeriodLookup     = new DevExpress.XtraEditors.SimpleButton();
     this.lblPeriod           = new System.Windows.Forms.Label();
     this.pnlEntryDate        = new System.Windows.Forms.Panel();
     this.editEntryDate       = new DevExpress.XtraEditors.DateEdit();
     this.lblEntryDate        = new System.Windows.Forms.Label();
     this.pnlYear.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.editYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditYearOpen)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvYear)).BeginInit();
     this.pnlPeriod.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.editPeriod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkPeriodOpen)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     this.pnlEntryDate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.editEntryDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.editEntryDate.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // lblYear
     //
     this.lblYear.Location = new System.Drawing.Point(5, 8);
     this.lblYear.Name     = "lblYear";
     this.lblYear.Size     = new System.Drawing.Size(57, 16);
     this.lblYear.TabIndex = 1;
     this.lblYear.Text     = "Acct Year";
     //
     // pnlYear
     //
     this.pnlYear.Controls.Add(this.editYear);
     this.pnlYear.Controls.Add(this.lblYear);
     this.pnlYear.Location = new System.Drawing.Point(8, 0);
     this.pnlYear.Name     = "pnlYear";
     this.pnlYear.Size     = new System.Drawing.Size(168, 32);
     this.pnlYear.TabIndex = 2;
     //
     // editYear
     //
     this.editYear.EditValue = 0;
     this.editYear.Location  = new System.Drawing.Point(65, 5);
     this.editYear.Name      = "editYear";
     this.editYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.editYear.Properties.DisplayMember = "Year";
     this.editYear.Properties.NullText      = "";
     this.editYear.Properties.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEditYearOpen
     });
     this.editYear.Properties.ValueMember = "Year";
     this.editYear.Properties.View        = this.gvYear;
     this.editYear.Properties.CloseUp    += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(this.editYear_Properties_CloseUp);
     this.editYear.Size              = new System.Drawing.Size(100, 20);
     this.editYear.TabIndex          = 2;
     this.editYear.EditValueChanged += new System.EventHandler(this.editYear_EditValueChanged);
     this.editYear.QueryPopUp       += new System.ComponentModel.CancelEventHandler(this.edits_QueryPopUp);
     //
     // repositoryItemCheckEditYearOpen
     //
     this.repositoryItemCheckEditYearOpen.AutoHeight     = false;
     this.repositoryItemCheckEditYearOpen.Name           = "repositoryItemCheckEditYearOpen";
     this.repositoryItemCheckEditYearOpen.ValueChecked   = "T";
     this.repositoryItemCheckEditYearOpen.ValueUnchecked = "F";
     //
     // gvYear
     //
     this.gvYear.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colYear,
         this.colOpen
     });
     this.gvYear.FocusRectStyle           = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gvYear.Name                     = "gvYear";
     this.gvYear.OptionsBehavior.Editable = false;
     this.gvYear.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvYear.OptionsView.ShowGroupPanel = false;
     //
     // colYear
     //
     this.colYear.Caption      = "Year";
     this.colYear.FieldName    = "Year";
     this.colYear.Name         = "colYear";
     this.colYear.Visible      = true;
     this.colYear.VisibleIndex = 0;
     //
     // colOpen
     //
     this.colOpen.Caption      = "Open";
     this.colOpen.ColumnEdit   = this.repositoryItemCheckEditYearOpen;
     this.colOpen.FieldName    = "Open";
     this.colOpen.Name         = "colOpen";
     this.colOpen.Visible      = true;
     this.colOpen.VisibleIndex = 1;
     //
     // pnlPeriod
     //
     this.pnlPeriod.Controls.Add(this.editPeriod);
     this.pnlPeriod.Controls.Add(this.btnPeriodLookup);
     this.pnlPeriod.Controls.Add(this.lblPeriod);
     this.pnlPeriod.Location = new System.Drawing.Point(8, 32);
     this.pnlPeriod.Name     = "pnlPeriod";
     this.pnlPeriod.Size     = new System.Drawing.Size(168, 32);
     this.pnlPeriod.TabIndex = 3;
     //
     // editPeriod
     //
     this.editPeriod.EditValue = 0;
     this.editPeriod.Location  = new System.Drawing.Point(65, 5);
     this.editPeriod.Name      = "editPeriod";
     this.editPeriod.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.editPeriod.Properties.NullText = "";
     this.editPeriod.Properties.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.chkPeriodOpen
     });
     this.editPeriod.Properties.View     = this.gridLookUpEdit1View;
     this.editPeriod.Properties.CloseUp += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(this.editPeriod_Properties_CloseUp);
     this.editPeriod.Size              = new System.Drawing.Size(75, 20);
     this.editPeriod.TabIndex          = 3;
     this.editPeriod.EditValueChanged += new System.EventHandler(this.editPeriod_EditValueChanged);
     this.editPeriod.QueryPopUp       += new System.ComponentModel.CancelEventHandler(this.edits_QueryPopUp);
     //
     // chkPeriodOpen
     //
     this.chkPeriodOpen.AutoHeight     = false;
     this.chkPeriodOpen.Name           = "chkPeriodOpen";
     this.chkPeriodOpen.ValueChecked   = "T";
     this.chkPeriodOpen.ValueUnchecked = "F";
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colPeriod,
         this.colEndDate,
         this.colPeriodOpen
     });
     this.gridLookUpEdit1View.FocusRectStyle           = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name                     = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsBehavior.Editable = false;
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colPeriod
     //
     this.colPeriod.Caption   = "Period";
     this.colPeriod.FieldName = "PERIOD";
     this.colPeriod.MinWidth  = 10;
     this.colPeriod.Name      = "colPeriod";
     this.colPeriod.OptionsColumn.AllowEdit = false;
     this.colPeriod.Visible      = true;
     this.colPeriod.VisibleIndex = 0;
     this.colPeriod.Width        = 21;
     //
     // colEndDate
     //
     this.colEndDate.Caption   = "Month";
     this.colEndDate.FieldName = "END_DATE";
     this.colEndDate.Name      = "colEndDate";
     this.colEndDate.OptionsColumn.AllowEdit = false;
     this.colEndDate.Visible      = true;
     this.colEndDate.VisibleIndex = 1;
     this.colEndDate.Width        = 50;
     //
     // colPeriodOpen
     //
     this.colPeriodOpen.Caption    = "Open";
     this.colPeriodOpen.ColumnEdit = this.chkPeriodOpen;
     this.colPeriodOpen.FieldName  = "PERIOD_OPEN";
     this.colPeriodOpen.MinWidth   = 10;
     this.colPeriodOpen.Name       = "colPeriodOpen";
     this.colPeriodOpen.OptionsColumn.AllowEdit = false;
     this.colPeriodOpen.Visible      = true;
     this.colPeriodOpen.VisibleIndex = 2;
     this.colPeriodOpen.Width        = 20;
     //
     // btnPeriodLookup
     //
     this.btnPeriodLookup.Location = new System.Drawing.Point(145, 5);
     this.btnPeriodLookup.Name     = "btnPeriodLookup";
     this.btnPeriodLookup.Size     = new System.Drawing.Size(20, 20);
     this.btnPeriodLookup.TabIndex = 2;
     this.btnPeriodLookup.Text     = "...";
     this.btnPeriodLookup.Click   += new System.EventHandler(this.btnPeriodLookup_Click);
     //
     // lblPeriod
     //
     this.lblPeriod.Location = new System.Drawing.Point(5, 8);
     this.lblPeriod.Name     = "lblPeriod";
     this.lblPeriod.Size     = new System.Drawing.Size(57, 16);
     this.lblPeriod.TabIndex = 1;
     this.lblPeriod.Text     = "Period";
     //
     // pnlEntryDate
     //
     this.pnlEntryDate.Controls.Add(this.editEntryDate);
     this.pnlEntryDate.Controls.Add(this.lblEntryDate);
     this.pnlEntryDate.Location = new System.Drawing.Point(8, 66);
     this.pnlEntryDate.Name     = "pnlEntryDate";
     this.pnlEntryDate.Size     = new System.Drawing.Size(168, 32);
     this.pnlEntryDate.TabIndex = 4;
     //
     // editEntryDate
     //
     this.editEntryDate.EditValue = null;
     this.editEntryDate.Location  = new System.Drawing.Point(65, 5);
     this.editEntryDate.Name      = "editEntryDate";
     this.editEntryDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.editEntryDate.Properties.Mask.EditMask = "";
     this.editEntryDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.editEntryDate.Size              = new System.Drawing.Size(100, 20);
     this.editEntryDate.TabIndex          = 2;
     this.editEntryDate.EditValueChanged += new System.EventHandler(this.editEntryDate_EditValueChanged);
     //
     // lblEntryDate
     //
     this.lblEntryDate.Location = new System.Drawing.Point(5, 8);
     this.lblEntryDate.Name     = "lblEntryDate";
     this.lblEntryDate.Size     = new System.Drawing.Size(67, 17);
     this.lblEntryDate.TabIndex = 1;
     this.lblEntryDate.Text     = "Entry Date";
     //
     // ucAccountingPicker
     //
     this.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.Appearance.Options.UseBackColor = true;
     this.Controls.Add(this.pnlEntryDate);
     this.Controls.Add(this.pnlYear);
     this.Controls.Add(this.pnlPeriod);
     this.Name  = "ucAccountingPicker";
     this.Size  = new System.Drawing.Size(184, 112);
     this.Load += new System.EventHandler(this.ucAccountingPicker_Load);
     this.pnlYear.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.editYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditYearOpen)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvYear)).EndInit();
     this.pnlPeriod.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.editPeriod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkPeriodOpen)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     this.pnlEntryDate.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.editEntryDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.editEntryDate.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnBuscarInversion = new DevExpress.XtraEditors.SimpleButton();
     this.gueTipoInversion = new DevExpress.XtraEditors.GridLookUpEdit();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.btnNuevo = new DevExpress.XtraBars.BarButtonItem();
     this.btnGrabar = new DevExpress.XtraBars.BarButtonItem();
     this.btnAnular = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.btnSalir = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControl1 = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.clsTipoInversionBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gueUnidadTiempo = new DevExpress.XtraEditors.GridLookUpEdit();
     this.clsUnidadTiempoBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gueBanco = new DevExpress.XtraEditors.GridLookUpEdit();
     this.clsBancoBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.lblBanco = new DevExpress.XtraEditors.LabelControl();
     this.ckbActivo = new DevExpress.XtraEditors.CheckEdit();
     this.deFechaHasta = new DevExpress.XtraEditors.DateEdit();
     this.deFechaDesde = new DevExpress.XtraEditors.DateEdit();
     this.deFechaActual = new DevExpress.XtraEditors.DateEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.txtGanancia = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtTiempo = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.txtPorcentaje = new DevExpress.XtraEditors.TextEdit();
     this.btnBuscaPersona = new DevExpress.XtraEditors.SimpleButton();
     this.txtNombrePersona = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtValor = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.txtCodigoPersona = new DevExpress.XtraEditors.TextEdit();
     this.txtNumeroInversion = new DevExpress.XtraEditors.TextEdit();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.clsTipoInversionBindingSource = new System.Windows.Forms.BindingSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gueTipoInversion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsTipoInversionBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gueUnidadTiempo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsUnidadTiempoBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gueBanco.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsBancoBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckbActivo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFechaHasta.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFechaHasta.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFechaDesde.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFechaDesde.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFechaActual.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFechaActual.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGanancia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTiempo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPorcentaje.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNombrePersona.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCodigoPersona.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNumeroInversion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsTipoInversionBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btnBuscarInversion);
     this.panelControl1.Controls.Add(this.gueTipoInversion);
     this.panelControl1.Controls.Add(this.gueUnidadTiempo);
     this.panelControl1.Controls.Add(this.gueBanco);
     this.panelControl1.Controls.Add(this.lblBanco);
     this.panelControl1.Controls.Add(this.ckbActivo);
     this.panelControl1.Controls.Add(this.deFechaHasta);
     this.panelControl1.Controls.Add(this.deFechaDesde);
     this.panelControl1.Controls.Add(this.deFechaActual);
     this.panelControl1.Controls.Add(this.labelControl8);
     this.panelControl1.Controls.Add(this.labelControl4);
     this.panelControl1.Controls.Add(this.labelControl7);
     this.panelControl1.Controls.Add(this.labelControl2);
     this.panelControl1.Controls.Add(this.txtGanancia);
     this.panelControl1.Controls.Add(this.labelControl1);
     this.panelControl1.Controls.Add(this.txtTiempo);
     this.panelControl1.Controls.Add(this.labelControl5);
     this.panelControl1.Controls.Add(this.labelControl6);
     this.panelControl1.Controls.Add(this.txtPorcentaje);
     this.panelControl1.Controls.Add(this.btnBuscaPersona);
     this.panelControl1.Controls.Add(this.txtNombrePersona);
     this.panelControl1.Controls.Add(this.labelControl3);
     this.panelControl1.Controls.Add(this.txtValor);
     this.panelControl1.Controls.Add(this.labelControl9);
     this.panelControl1.Controls.Add(this.labelControl10);
     this.panelControl1.Controls.Add(this.labelControl11);
     this.panelControl1.Controls.Add(this.txtCodigoPersona);
     this.panelControl1.Controls.Add(this.txtNumeroInversion);
     this.panelControl1.Location = new System.Drawing.Point(12, 46);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(574, 238);
     this.panelControl1.TabIndex = 5;
     //
     // btnBuscarInversion
     //
     this.btnBuscarInversion.Location = new System.Drawing.Point(163, 14);
     this.btnBuscarInversion.Name = "btnBuscarInversion";
     this.btnBuscarInversion.Size = new System.Drawing.Size(22, 19);
     this.btnBuscarInversion.TabIndex = 91;
     this.btnBuscarInversion.Text = "...";
     this.btnBuscarInversion.Click += new System.EventHandler(this.btnBuscarInversion_Click);
     //
     // gueTipoInversion
     //
     this.gueTipoInversion.EditValue = "hhh";
     this.gueTipoInversion.Location = new System.Drawing.Point(102, 38);
     this.gueTipoInversion.MenuManager = this.barManager1;
     this.gueTipoInversion.Name = "gueTipoInversion";
     this.gueTipoInversion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.gueTipoInversion.Properties.DataSource = this.clsTipoInversionBindingSource1;
     this.gueTipoInversion.Properties.DisplayMember = "Descripcion";
     this.gueTipoInversion.Properties.ValueMember = "idTipoInversion";
     this.gueTipoInversion.Properties.View = this.gridView1;
     this.gueTipoInversion.Size = new System.Drawing.Size(201, 20);
     this.gueTipoInversion.TabIndex = 90;
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.barManager1.DockControls.Add(this.barDockControl1);
     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.btnNuevo,
     this.btnAnular,
     this.btnSalir,
     this.btnGrabar,
     this.barButtonItem7});
     this.barManager1.MainMenu = this.bar2;
     this.barManager1.MaxItemId = 7;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnNuevo, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnGrabar, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnAnular, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem7, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnSalir, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)});
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // btnNuevo
     //
     this.btnNuevo.Caption = "Nuevo";
     this.btnNuevo.Glyph = global::forms.Properties.Resources.nuevo;
     this.btnNuevo.Id = 0;
     this.btnNuevo.Name = "btnNuevo";
     this.btnNuevo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnNuevo_ItemClick);
     //
     // btnGrabar
     //
     this.btnGrabar.Caption = "Guardar";
     this.btnGrabar.Glyph = global::forms.Properties.Resources.guardar;
     this.btnGrabar.Id = 5;
     this.btnGrabar.Name = "btnGrabar";
     this.btnGrabar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnGrabar_ItemClick);
     //
     // btnAnular
     //
     this.btnAnular.Caption = "Anular";
     this.btnAnular.Glyph = global::forms.Properties.Resources._24_cancelar;
     this.btnAnular.Id = 3;
     this.btnAnular.Name = "btnAnular";
     this.btnAnular.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnAnular_ItemClick);
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "Imprimir";
     this.barButtonItem7.Glyph = global::forms.Properties.Resources.imprimir;
     this.barButtonItem7.Id = 6;
     this.barButtonItem7.Name = "barButtonItem7";
     //
     // btnSalir
     //
     this.btnSalir.Caption = "Salir";
     this.btnSalir.Glyph = global::forms.Properties.Resources.eliminar;
     this.btnSalir.Id = 4;
     this.btnSalir.Name = "btnSalir";
     this.btnSalir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnSalir_ItemClick);
     //
     // barDockControl1
     //
     this.barDockControl1.CausesValidation = false;
     this.barDockControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControl1.Location = new System.Drawing.Point(0, 0);
     this.barDockControl1.Size = new System.Drawing.Size(603, 32);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 333);
     this.barDockControlBottom.Size = new System.Drawing.Size(603, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 32);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 301);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(603, 32);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 301);
     //
     // clsTipoInversionBindingSource1
     //
     this.clsTipoInversionBindingSource1.DataSource = typeof(clases.CuentasxCobrar.clsTipoInversion);
     //
     // gridView1
     //
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gueUnidadTiempo
     //
     this.gueUnidadTiempo.EditValue = "";
     this.gueUnidadTiempo.Location = new System.Drawing.Point(442, 37);
     this.gueUnidadTiempo.MenuManager = this.barManager1;
     this.gueUnidadTiempo.Name = "gueUnidadTiempo";
     this.gueUnidadTiempo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.gueUnidadTiempo.Properties.DataSource = this.clsUnidadTiempoBindingSource;
     this.gueUnidadTiempo.Properties.DisplayMember = "Descripcion";
     this.gueUnidadTiempo.Properties.ValueMember = "idUnidadTiempo";
     this.gueUnidadTiempo.Properties.View = this.gridView2;
     this.gueUnidadTiempo.Size = new System.Drawing.Size(90, 20);
     this.gueUnidadTiempo.TabIndex = 89;
     //
     // clsUnidadTiempoBindingSource
     //
     this.clsUnidadTiempoBindingSource.DataSource = typeof(clases.CuentasxCobrar.clsUnidadTiempo);
     //
     // gridView2
     //
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gueBanco
     //
     this.gueBanco.EditValue = "";
     this.gueBanco.Location = new System.Drawing.Point(100, 69);
     this.gueBanco.MenuManager = this.barManager1;
     this.gueBanco.Name = "gueBanco";
     this.gueBanco.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.gueBanco.Properties.DataSource = this.clsBancoBindingSource;
     this.gueBanco.Properties.DisplayMember = "Nombre";
     this.gueBanco.Properties.ValueMember = "idBanco";
     this.gueBanco.Properties.View = this.gridLookUpEdit1View;
     this.gueBanco.Size = new System.Drawing.Size(203, 20);
     this.gueBanco.TabIndex = 87;
     //
     // clsBancoBindingSource
     //
     this.clsBancoBindingSource.DataSource = typeof(clases.CuentasxCobrar.clsBanco);
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // lblBanco
     //
     this.lblBanco.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblBanco.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.lblBanco.Location = new System.Drawing.Point(56, 73);
     this.lblBanco.Name = "lblBanco";
     this.lblBanco.Size = new System.Drawing.Size(34, 13);
     this.lblBanco.TabIndex = 86;
     this.lblBanco.Text = "Banco";
     //
     // ckbActivo
     //
     this.ckbActivo.Location = new System.Drawing.Point(212, 206);
     this.ckbActivo.MenuManager = this.barManager1;
     this.ckbActivo.Name = "ckbActivo";
     this.ckbActivo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ckbActivo.Properties.Appearance.Options.UseFont = true;
     this.ckbActivo.Properties.Caption = "Activo";
     this.ckbActivo.Size = new System.Drawing.Size(228, 21);
     this.ckbActivo.TabIndex = 85;
     //
     // deFechaHasta
     //
     this.deFechaHasta.EditValue = new System.DateTime(2013, 9, 4, 11, 23, 9, 316);
     this.deFechaHasta.Location = new System.Drawing.Point(364, 168);
     this.deFechaHasta.Name = "deFechaHasta";
     this.deFechaHasta.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deFechaHasta.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deFechaHasta.Size = new System.Drawing.Size(100, 20);
     this.deFechaHasta.TabIndex = 84;
     //
     // deFechaDesde
     //
     this.deFechaDesde.EditValue = new System.DateTime(2013, 9, 4, 11, 23, 28, 864);
     this.deFechaDesde.Location = new System.Drawing.Point(100, 169);
     this.deFechaDesde.Name = "deFechaDesde";
     this.deFechaDesde.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deFechaDesde.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deFechaDesde.Size = new System.Drawing.Size(100, 20);
     this.deFechaDesde.TabIndex = 83;
     //
     // deFechaActual
     //
     this.deFechaActual.EditValue = new System.DateTime(2013, 9, 4, 11, 22, 33, 0);
     this.deFechaActual.Location = new System.Drawing.Point(100, 142);
     this.deFechaActual.Name = "deFechaActual";
     this.deFechaActual.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deFechaActual.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deFechaActual.Size = new System.Drawing.Size(100, 20);
     this.deFechaActual.TabIndex = 82;
     //
     // labelControl8
     //
     this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl8.Location = new System.Drawing.Point(52, 142);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(33, 13);
     this.labelControl8.TabIndex = 81;
     this.labelControl8.Text = "Fecha";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl4.Location = new System.Drawing.Point(325, 171);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(33, 13);
     this.labelControl4.TabIndex = 77;
     this.labelControl4.Text = "Hasta";
     //
     // labelControl7
     //
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl7.Location = new System.Drawing.Point(52, 171);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(35, 13);
     this.labelControl7.TabIndex = 75;
     this.labelControl7.Text = "Desde";
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.labelControl2.Location = new System.Drawing.Point(325, 98);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(52, 13);
     this.labelControl2.TabIndex = 51;
     this.labelControl2.Text = "Ganancia";
     //
     // txtGanancia
     //
     this.txtGanancia.Location = new System.Drawing.Point(384, 95);
     this.txtGanancia.Name = "txtGanancia";
     this.txtGanancia.Size = new System.Drawing.Size(90, 20);
     this.txtGanancia.TabIndex = 52;
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.labelControl1.Location = new System.Drawing.Point(335, 42);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(42, 13);
     this.labelControl1.TabIndex = 48;
     this.labelControl1.Text = "Tiempo";
     //
     // txtTiempo
     //
     this.txtTiempo.Location = new System.Drawing.Point(384, 38);
     this.txtTiempo.Name = "txtTiempo";
     this.txtTiempo.Size = new System.Drawing.Size(52, 20);
     this.txtTiempo.TabIndex = 49;
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl5.Location = new System.Drawing.Point(163, 107);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(13, 13);
     this.labelControl5.TabIndex = 47;
     this.labelControl5.Text = "%";
     //
     // labelControl6
     //
     this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl6.Location = new System.Drawing.Point(25, 108);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(62, 13);
     this.labelControl6.TabIndex = 45;
     this.labelControl6.Text = "Porcentaje";
     //
     // txtPorcentaje
     //
     this.txtPorcentaje.Location = new System.Drawing.Point(102, 105);
     this.txtPorcentaje.Name = "txtPorcentaje";
     this.txtPorcentaje.Size = new System.Drawing.Size(52, 20);
     this.txtPorcentaje.TabIndex = 46;
     //
     // btnBuscaPersona
     //
     this.btnBuscaPersona.Location = new System.Drawing.Point(530, 14);
     this.btnBuscaPersona.Name = "btnBuscaPersona";
     this.btnBuscaPersona.Size = new System.Drawing.Size(22, 19);
     this.btnBuscaPersona.TabIndex = 33;
     this.btnBuscaPersona.Text = "...";
     this.btnBuscaPersona.Click += new System.EventHandler(this.btnBuscaPersona_Click);
     //
     // txtNombrePersona
     //
     this.txtNombrePersona.Enabled = false;
     this.txtNombrePersona.Location = new System.Drawing.Point(309, 11);
     this.txtNombrePersona.Name = "txtNombrePersona";
     this.txtNombrePersona.Size = new System.Drawing.Size(215, 20);
     this.txtNombrePersona.TabIndex = 32;
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.labelControl3.Location = new System.Drawing.Point(343, 72);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(29, 13);
     this.labelControl3.TabIndex = 27;
     this.labelControl3.Text = "Valor";
     //
     // txtValor
     //
     this.txtValor.Location = new System.Drawing.Point(384, 70);
     this.txtValor.Name = "txtValor";
     this.txtValor.Size = new System.Drawing.Size(90, 20);
     this.txtValor.TabIndex = 28;
     //
     // labelControl9
     //
     this.labelControl9.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl9.Location = new System.Drawing.Point(214, 13);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(42, 13);
     this.labelControl9.TabIndex = 16;
     this.labelControl9.Text = "Entidad";
     //
     // labelControl10
     //
     this.labelControl10.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl10.Location = new System.Drawing.Point(70, 14);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(17, 13);
     this.labelControl10.TabIndex = 14;
     this.labelControl10.Text = "No.";
     //
     // labelControl11
     //
     this.labelControl11.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl11.Location = new System.Drawing.Point(64, 41);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(24, 13);
     this.labelControl11.TabIndex = 12;
     this.labelControl11.Text = "Tipo";
     //
     // txtCodigoPersona
     //
     this.txtCodigoPersona.Location = new System.Drawing.Point(269, 11);
     this.txtCodigoPersona.Name = "txtCodigoPersona";
     this.txtCodigoPersona.Size = new System.Drawing.Size(34, 20);
     this.txtCodigoPersona.TabIndex = 17;
     //
     // txtNumeroInversion
     //
     this.txtNumeroInversion.Location = new System.Drawing.Point(99, 13);
     this.txtNumeroInversion.Name = "txtNumeroInversion";
     this.txtNumeroInversion.Size = new System.Drawing.Size(56, 20);
     this.txtNumeroInversion.TabIndex = 15;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 32);
     this.barDockControlTop.Size = new System.Drawing.Size(603, 51);
     //
     // clsTipoInversionBindingSource
     //
     this.clsTipoInversionBindingSource.DataSource = typeof(clases.CuentasxCobrar.clsTipoInversion);
     //
     // frm_Inversion
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(603, 333);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.barDockControlTop);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControl1);
     this.Name = "frm_Inversion";
     this.Text = "Inversion";
     this.Load += new System.EventHandler(this.frm_Inversion_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gueTipoInversion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsTipoInversionBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gueUnidadTiempo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsUnidadTiempoBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gueBanco.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsBancoBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckbActivo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFechaHasta.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFechaHasta.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFechaDesde.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFechaDesde.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFechaActual.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFechaActual.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGanancia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTiempo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPorcentaje.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNombrePersona.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCodigoPersona.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNumeroInversion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clsTipoInversionBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmRobneGrupePoKategoriji));
     this.panel1 = new System.Windows.Forms.Panel();
     this.glKategorija = new DevExpress.XtraEditors.GridLookUpEdit();
     this.kategorijaBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.kategorija = new blokerX.kategorija();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colka_ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Šifra = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Naziv = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label2 = new System.Windows.Forms.Label();
     this.btnPrikazi = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.dgRobneGrupe = new System.Windows.Forms.DataGridView();
     this.kategorijaTableAdapter = new blokerX.kategorijaTableAdapters.kategorijaTableAdapter();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.glKategorija.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kategorijaBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kategorija)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgRobneGrupe)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.glKategorija);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.btnPrikazi);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(710, 72);
     this.panel1.TabIndex = 0;
     //
     // glKategorija
     //
     this.glKategorija.EditValue = "";
     this.glKategorija.Location = new System.Drawing.Point(92, 27);
     this.glKategorija.Name = "glKategorija";
     this.glKategorija.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.glKategorija.Properties.DataSource = this.kategorijaBindingSource;
     this.glKategorija.Properties.DisplayMember = "ka_naziv";
     this.glKategorija.Properties.ImmediatePopup = true;
     this.glKategorija.Properties.ValueMember = "ka_ID";
     this.glKategorija.Properties.View = this.gridView1;
     this.glKategorija.Size = new System.Drawing.Size(305, 20);
     this.glKategorija.TabIndex = 0;
     //
     // kategorijaBindingSource
     //
     this.kategorijaBindingSource.DataMember = "kategorija";
     this.kategorijaBindingSource.DataSource = this.kategorija;
     //
     // kategorija
     //
     this.kategorija.DataSetName = "kategorija";
     this.kategorija.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colka_ID,
     this.Šifra,
     this.Naziv});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // colka_ID
     //
     this.colka_ID.FieldName = "ka_ID";
     this.colka_ID.Name = "colka_ID";
     //
     // Šifra
     //
     this.Šifra.FieldName = "ka_sifra";
     this.Šifra.Name = "Šifra";
     this.Šifra.Visible = true;
     this.Šifra.VisibleIndex = 0;
     this.Šifra.Width = 88;
     //
     // Naziv
     //
     this.Naziv.FieldName = "ka_naziv";
     this.Naziv.Name = "Naziv";
     this.Naziv.Visible = true;
     this.Naziv.VisibleIndex = 1;
     this.Naziv.Width = 590;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
     this.label2.Location = new System.Drawing.Point(540, 30);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(75, 13);
     this.label2.TabIndex = 3;
     this.label2.Text = "F5 - pregled";
     //
     // btnPrikazi
     //
     this.btnPrikazi.Location = new System.Drawing.Point(417, 27);
     this.btnPrikazi.Name = "btnPrikazi";
     this.btnPrikazi.Size = new System.Drawing.Size(75, 23);
     this.btnPrikazi.TabIndex = 1;
     this.btnPrikazi.Text = "Prikaži";
     this.btnPrikazi.UseVisualStyleBackColor = true;
     this.btnPrikazi.Click += new System.EventHandler(this.btnPrikazi_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(28, 30);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(57, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Kategorija:";
     //
     // dgRobneGrupe
     //
     this.dgRobneGrupe.AllowUserToAddRows = false;
     this.dgRobneGrupe.AllowUserToDeleteRows = false;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.dgRobneGrupe.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.dgRobneGrupe.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
     this.dgRobneGrupe.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCells;
     this.dgRobneGrupe.BackgroundColor = System.Drawing.SystemColors.Window;
     this.dgRobneGrupe.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgRobneGrupe.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgRobneGrupe.Location = new System.Drawing.Point(0, 72);
     this.dgRobneGrupe.Name = "dgRobneGrupe";
     this.dgRobneGrupe.ReadOnly = true;
     this.dgRobneGrupe.Size = new System.Drawing.Size(710, 510);
     this.dgRobneGrupe.TabIndex = 2;
     //
     // kategorijaTableAdapter
     //
     this.kategorijaTableAdapter.ClearBeforeFill = true;
     //
     // frmRobneGrupePoKategoriji
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(710, 582);
     this.Controls.Add(this.dgRobneGrupe);
     this.Controls.Add(this.panel1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.Name = "frmRobneGrupePoKategoriji";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Robne grupe po kategoriji";
     this.Load += new System.EventHandler(this.frmRobneGrupePoKategoriji_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmRobneGrupePoKategoriji_KeyDown);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.glKategorija.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kategorijaBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kategorija)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgRobneGrupe)).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(PurchaseOrderForm));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition3 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition4 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.btnEditInvoice = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.lblPOBy = new DevExpress.XtraEditors.LabelControl();
     this.lblLetterNo = new DevExpress.XtraEditors.LabelControl();
     this.lblSyncDate = new DevExpress.XtraEditors.LabelControl();
     this.lblShipper = new DevExpress.XtraEditors.LabelControl();
     this.lblPaymentType = new DevExpress.XtraEditors.LabelControl();
     this.lblPOStatus = new DevExpress.XtraEditors.LabelControl();
     this.lblOrderDate = new DevExpress.XtraEditors.LabelControl();
     this.lblInsurance = new DevExpress.XtraEditors.LabelControl();
     this.lblRemainingValue = new DevExpress.XtraEditors.LabelControl();
     this.lblNBE = new DevExpress.XtraEditors.LabelControl();
     this.lblTotalValue = new DevExpress.XtraEditors.LabelControl();
     this.lblPOType = new DevExpress.XtraEditors.LabelControl();
     this.lblSupplier = new DevExpress.XtraEditors.LabelControl();
     this.lblRefNo = new DevExpress.XtraEditors.LabelControl();
     this.lblPONumber = new DevExpress.XtraEditors.LabelControl();
     this.lblActivity = new DevExpress.XtraEditors.LabelControl();
     this.lblSubAccount = new DevExpress.XtraEditors.LabelControl();
     this.lblAccount = new DevExpress.XtraEditors.LabelControl();
     this.lblMode = new DevExpress.XtraEditors.LabelControl();
     this.txtFilter = new DevExpress.XtraEditors.TextEdit();
     this.chkboxIsElectronic = new System.Windows.Forms.RadioButton();
     this.TabOrderTabs = new DevExpress.XtraTab.XtraTabControl();
     this.InvoicesTab = new DevExpress.XtraTab.XtraTabPage();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.btnAddInvoice = new DevExpress.XtraEditors.SimpleButton();
     this.gridInvoice = new DevExpress.XtraGrid.GridControl();
     this.gridInvoiceView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colInvoiceID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInvoiceNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colWayBilNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInsurancePolicyNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTransferTransitNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTotalValue = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInsurance = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNBE = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEditButton = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem6 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.tabPoDetail = new DevExpress.XtraTab.XtraTabPage();
     this.layoutControl3 = new DevExpress.XtraLayout.LayoutControl();
     this.grdPoDetail = new DevExpress.XtraGrid.GridControl();
     this.grdPoDetailView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colManufacturer = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPODetailID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnAddOrderDetail = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlGroup5 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem7 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.btnEditOrder = new DevExpress.XtraEditors.SimpleButton();
     this.gridLkEditOrderType = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnAddOrder = new DevExpress.XtraEditors.SimpleButton();
     this.gridOrder = new DevExpress.XtraGrid.GridControl();
     this.gridOrderView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colOrderNumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSupplierName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grdColIsElectronic = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grdColPOType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlItem21 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup6 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.LayoutSelectedOrderDetail = new DevExpress.XtraLayout.LayoutControlGroup();
     this.HeaderGroup = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem18 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem25 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem44 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem48 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem42 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem29 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem33 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup7 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem31 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem35 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup8 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem50 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem37 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup9 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem27 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem40 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem46 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem23 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.LayoutEmptyDetails = new DevExpress.XtraLayout.LayoutControlGroup();
     this.simpleLabelItem1 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.emptySpaceItem9 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.simpleLabelItem4 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem5 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem6 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem7 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem8 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem9 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem10 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem11 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem14 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem18 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem19 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem20 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem21 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem22 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem23 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem24 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem26 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem8 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem20 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem38 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem19 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem22 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem26 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem28 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem30 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem32 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem34 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem36 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem39 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem41 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem43 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem45 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem47 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem49 = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.btnEditInvoice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilter.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TabOrderTabs)).BeginInit();
     this.TabOrderTabs.SuspendLayout();
     this.InvoicesTab.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     this.layoutControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridInvoice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridInvoiceView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     this.tabPoDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl3)).BeginInit();
     this.layoutControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdPoDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPoDetailView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLkEditOrderType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrderView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LayoutSelectedOrderDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem44)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem48)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem42)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem33)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem50)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem46)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LayoutEmptyDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem26)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem34)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem41)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem43)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem45)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem47)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem49)).BeginInit();
     this.SuspendLayout();
     //
     // btnEditInvoice
     //
     this.btnEditInvoice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Edit", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleLeft, ((System.Drawing.Image)(resources.GetObject("btnEditInvoice.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.btnEditInvoice.Name = "btnEditInvoice";
     this.btnEditInvoice.ReadOnly = true;
     this.btnEditInvoice.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.btnEditInvoice.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.btnEditInvoice_ButtonClick);
     //
     // layoutControl1
     //
     this.layoutControl1.AllowCustomizationMenu = false;
     this.layoutControl1.Controls.Add(this.lblPOBy);
     this.layoutControl1.Controls.Add(this.lblLetterNo);
     this.layoutControl1.Controls.Add(this.lblSyncDate);
     this.layoutControl1.Controls.Add(this.lblShipper);
     this.layoutControl1.Controls.Add(this.lblPaymentType);
     this.layoutControl1.Controls.Add(this.lblPOStatus);
     this.layoutControl1.Controls.Add(this.lblOrderDate);
     this.layoutControl1.Controls.Add(this.lblInsurance);
     this.layoutControl1.Controls.Add(this.lblRemainingValue);
     this.layoutControl1.Controls.Add(this.lblNBE);
     this.layoutControl1.Controls.Add(this.lblTotalValue);
     this.layoutControl1.Controls.Add(this.lblPOType);
     this.layoutControl1.Controls.Add(this.lblSupplier);
     this.layoutControl1.Controls.Add(this.lblRefNo);
     this.layoutControl1.Controls.Add(this.lblPONumber);
     this.layoutControl1.Controls.Add(this.lblActivity);
     this.layoutControl1.Controls.Add(this.lblSubAccount);
     this.layoutControl1.Controls.Add(this.lblAccount);
     this.layoutControl1.Controls.Add(this.lblMode);
     this.layoutControl1.Controls.Add(this.txtFilter);
     this.layoutControl1.Controls.Add(this.chkboxIsElectronic);
     this.layoutControl1.Controls.Add(this.TabOrderTabs);
     this.layoutControl1.Controls.Add(this.btnEditOrder);
     this.layoutControl1.Controls.Add(this.gridLkEditOrderType);
     this.layoutControl1.Controls.Add(this.btnAddOrder);
     this.layoutControl1.Controls.Add(this.gridOrder);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem21});
     this.layoutControl1.Location = new System.Drawing.Point(2, 2);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(-17, 244, 250, 595);
     this.layoutControl1.OptionsView.UseDefaultDragAndDropRendering = false;
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1280, 691);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // lblPOBy
     //
     this.lblPOBy.Location = new System.Drawing.Point(874, 193);
     this.lblPOBy.Name = "lblPOBy";
     this.lblPOBy.Size = new System.Drawing.Size(154, 16);
     this.lblPOBy.StyleController = this.layoutControl1;
     this.lblPOBy.TabIndex = 70;
     //
     // lblLetterNo
     //
     this.lblLetterNo.Location = new System.Drawing.Point(656, 146);
     this.lblLetterNo.Name = "lblLetterNo";
     this.lblLetterNo.Size = new System.Drawing.Size(162, 16);
     this.lblLetterNo.StyleController = this.layoutControl1;
     this.lblLetterNo.TabIndex = 70;
     //
     // lblSyncDate
     //
     this.lblSyncDate.Location = new System.Drawing.Point(912, 146);
     this.lblSyncDate.Name = "lblSyncDate";
     this.lblSyncDate.Size = new System.Drawing.Size(131, 16);
     this.lblSyncDate.StyleController = this.layoutControl1;
     this.lblSyncDate.TabIndex = 76;
     this.lblSyncDate.Click += new System.EventHandler(this.lblSyncDate_Click);
     //
     // lblShipper
     //
     this.lblShipper.Location = new System.Drawing.Point(657, 106);
     this.lblShipper.Name = "lblShipper";
     this.lblShipper.Size = new System.Drawing.Size(161, 16);
     this.lblShipper.StyleController = this.layoutControl1;
     this.lblShipper.TabIndex = 69;
     //
     // lblPaymentType
     //
     this.lblPaymentType.Location = new System.Drawing.Point(912, 106);
     this.lblPaymentType.Name = "lblPaymentType";
     this.lblPaymentType.Size = new System.Drawing.Size(131, 16);
     this.lblPaymentType.StyleController = this.layoutControl1;
     this.lblPaymentType.TabIndex = 68;
     //
     // lblPOStatus
     //
     this.lblPOStatus.Location = new System.Drawing.Point(1100, 193);
     this.lblPOStatus.Name = "lblPOStatus";
     this.lblPOStatus.Size = new System.Drawing.Size(161, 16);
     this.lblPOStatus.StyleController = this.layoutControl1;
     this.lblPOStatus.TabIndex = 75;
     this.lblPOStatus.Text = "N/A";
     //
     // lblOrderDate
     //
     this.lblOrderDate.Location = new System.Drawing.Point(874, 173);
     this.lblOrderDate.Name = "lblOrderDate";
     this.lblOrderDate.Size = new System.Drawing.Size(154, 16);
     this.lblOrderDate.StyleController = this.layoutControl1;
     this.lblOrderDate.TabIndex = 74;
     this.lblOrderDate.Click += new System.EventHandler(this.lblOrderDate_Click);
     //
     // lblInsurance
     //
     this.lblInsurance.Location = new System.Drawing.Point(710, 193);
     this.lblInsurance.Name = "lblInsurance";
     this.lblInsurance.Size = new System.Drawing.Size(93, 16);
     this.lblInsurance.StyleController = this.layoutControl1;
     this.lblInsurance.TabIndex = 73;
     this.lblInsurance.Click += new System.EventHandler(this.lblInsurance_Click);
     //
     // lblRemainingValue
     //
     this.lblRemainingValue.Location = new System.Drawing.Point(475, 193);
     this.lblRemainingValue.Name = "lblRemainingValue";
     this.lblRemainingValue.Size = new System.Drawing.Size(101, 16);
     this.lblRemainingValue.StyleController = this.layoutControl1;
     this.lblRemainingValue.TabIndex = 72;
     //
     // lblNBE
     //
     this.lblNBE.Location = new System.Drawing.Point(710, 173);
     this.lblNBE.Name = "lblNBE";
     this.lblNBE.Size = new System.Drawing.Size(93, 16);
     this.lblNBE.StyleController = this.layoutControl1;
     this.lblNBE.TabIndex = 71;
     this.lblNBE.Click += new System.EventHandler(this.lblNBE_Click);
     //
     // lblTotalValue
     //
     this.lblTotalValue.Location = new System.Drawing.Point(475, 173);
     this.lblTotalValue.Name = "lblTotalValue";
     this.lblTotalValue.Size = new System.Drawing.Size(101, 16);
     this.lblTotalValue.StyleController = this.layoutControl1;
     this.lblTotalValue.TabIndex = 70;
     this.lblTotalValue.Click += new System.EventHandler(this.lblTotalValue_Click);
     //
     // lblPOType
     //
     this.lblPOType.Location = new System.Drawing.Point(1100, 173);
     this.lblPOType.Name = "lblPOType";
     this.lblPOType.Size = new System.Drawing.Size(161, 16);
     this.lblPOType.StyleController = this.layoutControl1;
     this.lblPOType.TabIndex = 69;
     //
     // lblSupplier
     //
     this.lblSupplier.Location = new System.Drawing.Point(424, 106);
     this.lblSupplier.Name = "lblSupplier";
     this.lblSupplier.Size = new System.Drawing.Size(168, 16);
     this.lblSupplier.StyleController = this.layoutControl1;
     this.lblSupplier.TabIndex = 68;
     //
     // lblRefNo
     //
     this.lblRefNo.Location = new System.Drawing.Point(425, 146);
     this.lblRefNo.Name = "lblRefNo";
     this.lblRefNo.Size = new System.Drawing.Size(167, 16);
     this.lblRefNo.StyleController = this.layoutControl1;
     this.lblRefNo.TabIndex = 67;
     //
     // lblPONumber
     //
     this.lblPONumber.Location = new System.Drawing.Point(457, 106);
     this.lblPONumber.Name = "lblPONumber";
     this.lblPONumber.Size = new System.Drawing.Size(119, 16);
     this.lblPONumber.StyleController = this.layoutControl1;
     this.lblPONumber.TabIndex = 66;
     //
     // lblActivity
     //
     this.lblActivity.Location = new System.Drawing.Point(1099, 126);
     this.lblActivity.Name = "lblActivity";
     this.lblActivity.Size = new System.Drawing.Size(169, 16);
     this.lblActivity.StyleController = this.layoutControl1;
     this.lblActivity.TabIndex = 65;
     this.lblActivity.Text = "N/A";
     //
     // lblSubAccount
     //
     this.lblSubAccount.Location = new System.Drawing.Point(912, 126);
     this.lblSubAccount.Name = "lblSubAccount";
     this.lblSubAccount.Size = new System.Drawing.Size(131, 16);
     this.lblSubAccount.StyleController = this.layoutControl1;
     this.lblSubAccount.TabIndex = 64;
     this.lblSubAccount.Text = "N/A";
     //
     // lblAccount
     //
     this.lblAccount.Location = new System.Drawing.Point(657, 126);
     this.lblAccount.Name = "lblAccount";
     this.lblAccount.Size = new System.Drawing.Size(161, 16);
     this.lblAccount.StyleController = this.layoutControl1;
     this.lblAccount.TabIndex = 63;
     //
     // lblMode
     //
     this.lblMode.Location = new System.Drawing.Point(424, 126);
     this.lblMode.Name = "lblMode";
     this.lblMode.Size = new System.Drawing.Size(168, 16);
     this.lblMode.StyleController = this.layoutControl1;
     this.lblMode.TabIndex = 62;
     this.lblMode.Click += new System.EventHandler(this.lblMode_Click);
     //
     // txtFilter
     //
     this.txtFilter.Location = new System.Drawing.Point(62, 56);
     this.txtFilter.Name = "txtFilter";
     this.txtFilter.Size = new System.Drawing.Size(276, 20);
     this.txtFilter.StyleController = this.layoutControl1;
     this.txtFilter.TabIndex = 61;
     this.txtFilter.EditValueChanged += new System.EventHandler(this.txtFilter_EditValueChanged);
     //
     // chkboxIsElectronic
     //
     this.chkboxIsElectronic.Checked = true;
     this.chkboxIsElectronic.Enabled = false;
     this.chkboxIsElectronic.Location = new System.Drawing.Point(1047, 146);
     this.chkboxIsElectronic.Name = "chkboxIsElectronic";
     this.chkboxIsElectronic.Size = new System.Drawing.Size(221, 16);
     this.chkboxIsElectronic.TabIndex = 60;
     this.chkboxIsElectronic.TabStop = true;
     this.chkboxIsElectronic.Text = "Is Electronic";
     this.chkboxIsElectronic.UseVisualStyleBackColor = true;
     //
     // TabOrderTabs
     //
     this.TabOrderTabs.Location = new System.Drawing.Point(363, 253);
     this.TabOrderTabs.Name = "TabOrderTabs";
     this.TabOrderTabs.SelectedTabPage = this.InvoicesTab;
     this.TabOrderTabs.Size = new System.Drawing.Size(912, 433);
     this.TabOrderTabs.TabIndex = 4;
     this.TabOrderTabs.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.InvoicesTab,
     this.tabPoDetail});
     //
     // InvoicesTab
     //
     this.InvoicesTab.Controls.Add(this.layoutControl2);
     this.InvoicesTab.Name = "InvoicesTab";
     this.InvoicesTab.Size = new System.Drawing.Size(906, 405);
     this.InvoicesTab.Text = "Invoices";
     //
     // layoutControl2
     //
     this.layoutControl2.Controls.Add(this.btnAddInvoice);
     this.layoutControl2.Controls.Add(this.gridInvoice);
     this.layoutControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl2.Location = new System.Drawing.Point(0, 0);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(405, 67, 250, 350);
     this.layoutControl2.Root = this.layoutControlGroup4;
     this.layoutControl2.Size = new System.Drawing.Size(906, 405);
     this.layoutControl2.TabIndex = 11;
     this.layoutControl2.Text = "layoutControl2";
     //
     // btnAddInvoice
     //
     this.btnAddInvoice.Image = global::HCMIS.Desktop.Properties.Resources.add_16;
     this.btnAddInvoice.Location = new System.Drawing.Point(752, 371);
     this.btnAddInvoice.Name = "btnAddInvoice";
     this.btnAddInvoice.Size = new System.Drawing.Size(142, 22);
     this.btnAddInvoice.StyleController = this.layoutControl2;
     this.btnAddInvoice.TabIndex = 13;
     this.btnAddInvoice.Text = "Add Invoice";
     this.btnAddInvoice.Click += new System.EventHandler(this.btnAddNewInvoice_Click);
     //
     // gridInvoice
     //
     this.gridInvoice.Location = new System.Drawing.Point(12, 12);
     this.gridInvoice.MainView = this.gridInvoiceView;
     this.gridInvoice.Name = "gridInvoice";
     this.gridInvoice.Size = new System.Drawing.Size(882, 355);
     this.gridInvoice.TabIndex = 12;
     this.gridInvoice.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridInvoiceView});
     this.gridInvoice.FocusedViewChanged += new DevExpress.XtraGrid.ViewFocusEventHandler(this.gridInvoice_FocusedViewChanged);
     this.gridInvoice.DoubleClick += new System.EventHandler(this.gridInvoiceView_DoubleClick);
     //
     // gridInvoiceView
     //
     this.gridInvoiceView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colInvoiceID,
     this.colInvoiceNo,
     this.colWayBilNo,
     this.colInsurancePolicyNo,
     this.colTransferTransitNo,
     this.colTotalValue,
     this.colInsurance,
     this.colNBE,
     this.colEditButton});
     styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
     styleFormatCondition1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Strikeout);
     styleFormatCondition1.Appearance.Options.UseBackColor = true;
     styleFormatCondition1.Appearance.Options.UseFont = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "[Status]>[CurrentStatus]";
     styleFormatCondition2.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
     styleFormatCondition2.Appearance.Options.UseBackColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition2.Expression = "[Status]<[CurrentStatus]";
     this.gridInvoiceView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1,
     styleFormatCondition2});
     this.gridInvoiceView.GridControl = this.gridInvoice;
     this.gridInvoiceView.Name = "gridInvoiceView";
     this.gridInvoiceView.OptionsCustomization.AllowColumnMoving = false;
     this.gridInvoiceView.OptionsCustomization.AllowColumnResizing = false;
     this.gridInvoiceView.OptionsCustomization.AllowFilter = false;
     this.gridInvoiceView.OptionsCustomization.AllowSort = false;
     this.gridInvoiceView.OptionsMenu.EnableColumnMenu = false;
     this.gridInvoiceView.OptionsMenu.EnableFooterMenu = false;
     this.gridInvoiceView.OptionsMenu.EnableGroupPanelMenu = false;
     this.gridInvoiceView.OptionsMenu.ShowAddNewSummaryItem = DevExpress.Utils.DefaultBoolean.False;
     this.gridInvoiceView.OptionsMenu.ShowAutoFilterRowItem = false;
     this.gridInvoiceView.OptionsMenu.ShowDateTimeGroupIntervalItems = false;
     this.gridInvoiceView.OptionsMenu.ShowGroupSortSummaryItems = false;
     this.gridInvoiceView.OptionsMenu.ShowSplitItem = false;
     this.gridInvoiceView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridInvoiceView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridInvoiceView.OptionsView.ShowGroupPanel = false;
     this.gridInvoiceView.OptionsView.ShowIndicator = false;
     this.gridInvoiceView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridInvoiceView_FocusedRowChanged);
     //
     // colInvoiceID
     //
     this.colInvoiceID.Caption = "InvoiceID";
     this.colInvoiceID.Name = "colInvoiceID";
     this.colInvoiceID.OptionsColumn.AllowEdit = false;
     this.colInvoiceID.OptionsColumn.AllowFocus = false;
     this.colInvoiceID.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceID.OptionsColumn.AllowIncrementalSearch = false;
     this.colInvoiceID.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceID.OptionsColumn.AllowMove = false;
     this.colInvoiceID.OptionsColumn.AllowShowHide = false;
     this.colInvoiceID.OptionsColumn.AllowSize = false;
     this.colInvoiceID.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceID.OptionsColumn.ShowInCustomizationForm = false;
     this.colInvoiceID.OptionsColumn.ShowInExpressionEditor = false;
     this.colInvoiceID.OptionsColumn.TabStop = false;
     this.colInvoiceID.OptionsFilter.AllowAutoFilter = false;
     this.colInvoiceID.OptionsFilter.AllowFilter = false;
     this.colInvoiceID.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceID.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceID.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colInvoiceID.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceID.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     //
     // colInvoiceNo
     //
     this.colInvoiceNo.Caption = "Invoice No";
     this.colInvoiceNo.FieldName = "STVOrInvoiceNo";
     this.colInvoiceNo.Name = "colInvoiceNo";
     this.colInvoiceNo.OptionsColumn.AllowEdit = false;
     this.colInvoiceNo.OptionsColumn.AllowFocus = false;
     this.colInvoiceNo.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceNo.OptionsColumn.AllowIncrementalSearch = false;
     this.colInvoiceNo.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceNo.OptionsColumn.AllowMove = false;
     this.colInvoiceNo.OptionsColumn.AllowShowHide = false;
     this.colInvoiceNo.OptionsColumn.AllowSize = false;
     this.colInvoiceNo.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceNo.OptionsColumn.ShowInCustomizationForm = false;
     this.colInvoiceNo.OptionsColumn.ShowInExpressionEditor = false;
     this.colInvoiceNo.OptionsColumn.TabStop = false;
     this.colInvoiceNo.OptionsFilter.AllowAutoFilter = false;
     this.colInvoiceNo.OptionsFilter.AllowFilter = false;
     this.colInvoiceNo.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceNo.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceNo.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colInvoiceNo.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceNo.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceNo.Visible = true;
     this.colInvoiceNo.VisibleIndex = 0;
     //
     // colWayBilNo
     //
     this.colWayBilNo.Caption = "Way Bill No";
     this.colWayBilNo.FieldName = "WayBillNo";
     this.colWayBilNo.Name = "colWayBilNo";
     this.colWayBilNo.OptionsColumn.AllowEdit = false;
     this.colWayBilNo.OptionsColumn.AllowFocus = false;
     this.colWayBilNo.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colWayBilNo.OptionsColumn.AllowIncrementalSearch = false;
     this.colWayBilNo.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colWayBilNo.OptionsColumn.AllowMove = false;
     this.colWayBilNo.OptionsColumn.AllowShowHide = false;
     this.colWayBilNo.OptionsColumn.AllowSize = false;
     this.colWayBilNo.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colWayBilNo.OptionsColumn.ShowInCustomizationForm = false;
     this.colWayBilNo.OptionsColumn.ShowInExpressionEditor = false;
     this.colWayBilNo.OptionsColumn.TabStop = false;
     this.colWayBilNo.OptionsFilter.AllowAutoFilter = false;
     this.colWayBilNo.OptionsFilter.AllowFilter = false;
     this.colWayBilNo.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colWayBilNo.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colWayBilNo.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colWayBilNo.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colWayBilNo.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.colWayBilNo.Visible = true;
     this.colWayBilNo.VisibleIndex = 1;
     //
     // colInsurancePolicyNo
     //
     this.colInsurancePolicyNo.Caption = "Insurance Policy No";
     this.colInsurancePolicyNo.FieldName = "InsurancePolicyNo";
     this.colInsurancePolicyNo.Name = "colInsurancePolicyNo";
     this.colInsurancePolicyNo.OptionsColumn.AllowEdit = false;
     this.colInsurancePolicyNo.OptionsColumn.AllowFocus = false;
     this.colInsurancePolicyNo.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colInsurancePolicyNo.OptionsColumn.AllowIncrementalSearch = false;
     this.colInsurancePolicyNo.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colInsurancePolicyNo.OptionsColumn.AllowMove = false;
     this.colInsurancePolicyNo.OptionsColumn.AllowShowHide = false;
     this.colInsurancePolicyNo.OptionsColumn.AllowSize = false;
     this.colInsurancePolicyNo.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colInsurancePolicyNo.OptionsColumn.ShowInCustomizationForm = false;
     this.colInsurancePolicyNo.OptionsColumn.ShowInExpressionEditor = false;
     this.colInsurancePolicyNo.OptionsColumn.TabStop = false;
     this.colInsurancePolicyNo.OptionsFilter.AllowAutoFilter = false;
     this.colInsurancePolicyNo.OptionsFilter.AllowFilter = false;
     this.colInsurancePolicyNo.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colInsurancePolicyNo.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colInsurancePolicyNo.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colInsurancePolicyNo.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colInsurancePolicyNo.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.colInsurancePolicyNo.Visible = true;
     this.colInsurancePolicyNo.VisibleIndex = 2;
     //
     // colTransferTransitNo
     //
     this.colTransferTransitNo.Caption = "Transit / Transfer No";
     this.colTransferTransitNo.FieldName = "TransitTransferNo";
     this.colTransferTransitNo.Name = "colTransferTransitNo";
     this.colTransferTransitNo.OptionsColumn.AllowEdit = false;
     this.colTransferTransitNo.OptionsColumn.AllowFocus = false;
     this.colTransferTransitNo.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colTransferTransitNo.OptionsColumn.AllowIncrementalSearch = false;
     this.colTransferTransitNo.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colTransferTransitNo.OptionsColumn.AllowMove = false;
     this.colTransferTransitNo.OptionsColumn.AllowShowHide = false;
     this.colTransferTransitNo.OptionsColumn.AllowSize = false;
     this.colTransferTransitNo.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colTransferTransitNo.OptionsColumn.ShowInCustomizationForm = false;
     this.colTransferTransitNo.OptionsColumn.ShowInExpressionEditor = false;
     this.colTransferTransitNo.OptionsColumn.TabStop = false;
     this.colTransferTransitNo.OptionsFilter.AllowAutoFilter = false;
     this.colTransferTransitNo.OptionsFilter.AllowFilter = false;
     this.colTransferTransitNo.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colTransferTransitNo.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colTransferTransitNo.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colTransferTransitNo.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colTransferTransitNo.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.colTransferTransitNo.Visible = true;
     this.colTransferTransitNo.VisibleIndex = 3;
     //
     // colTotalValue
     //
     this.colTotalValue.Caption = "Total Value";
     this.colTotalValue.FieldName = "TotalValue";
     this.colTotalValue.Name = "colTotalValue";
     this.colTotalValue.OptionsColumn.AllowEdit = false;
     this.colTotalValue.OptionsColumn.AllowFocus = false;
     this.colTotalValue.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colTotalValue.OptionsColumn.AllowIncrementalSearch = false;
     this.colTotalValue.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colTotalValue.OptionsColumn.AllowMove = false;
     this.colTotalValue.OptionsColumn.AllowShowHide = false;
     this.colTotalValue.OptionsColumn.AllowSize = false;
     this.colTotalValue.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colTotalValue.OptionsColumn.ShowInCustomizationForm = false;
     this.colTotalValue.OptionsColumn.ShowInExpressionEditor = false;
     this.colTotalValue.OptionsColumn.TabStop = false;
     this.colTotalValue.OptionsFilter.AllowAutoFilter = false;
     this.colTotalValue.OptionsFilter.AllowFilter = false;
     this.colTotalValue.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colTotalValue.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colTotalValue.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colTotalValue.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colTotalValue.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.colTotalValue.Visible = true;
     this.colTotalValue.VisibleIndex = 4;
     //
     // colInsurance
     //
     this.colInsurance.Caption = "Insurance";
     this.colInsurance.DisplayFormat.FormatString = "ETB ###,###,##0.#0";
     this.colInsurance.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colInsurance.FieldName = "proInsurance";
     this.colInsurance.Name = "colInsurance";
     this.colInsurance.OptionsColumn.AllowEdit = false;
     this.colInsurance.OptionsColumn.AllowFocus = false;
     this.colInsurance.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colInsurance.OptionsColumn.AllowIncrementalSearch = false;
     this.colInsurance.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colInsurance.OptionsColumn.AllowMove = false;
     this.colInsurance.OptionsColumn.AllowShowHide = false;
     this.colInsurance.OptionsColumn.AllowSize = false;
     this.colInsurance.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colInsurance.OptionsColumn.ShowInCustomizationForm = false;
     this.colInsurance.OptionsColumn.ShowInExpressionEditor = false;
     this.colInsurance.OptionsColumn.TabStop = false;
     this.colInsurance.OptionsFilter.AllowAutoFilter = false;
     this.colInsurance.OptionsFilter.AllowFilter = false;
     this.colInsurance.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colInsurance.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colInsurance.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colInsurance.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colInsurance.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.colInsurance.Visible = true;
     this.colInsurance.VisibleIndex = 5;
     //
     // colNBE
     //
     this.colNBE.Caption = "NBE";
     this.colNBE.DisplayFormat.FormatString = "ETB ###,###,##0.#0";
     this.colNBE.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colNBE.FieldName = "proNBE";
     this.colNBE.Name = "colNBE";
     this.colNBE.OptionsColumn.AllowEdit = false;
     this.colNBE.OptionsColumn.AllowFocus = false;
     this.colNBE.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colNBE.OptionsColumn.AllowIncrementalSearch = false;
     this.colNBE.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colNBE.OptionsColumn.AllowMove = false;
     this.colNBE.OptionsColumn.AllowShowHide = false;
     this.colNBE.OptionsColumn.AllowSize = false;
     this.colNBE.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colNBE.OptionsColumn.ShowInCustomizationForm = false;
     this.colNBE.OptionsColumn.ShowInExpressionEditor = false;
     this.colNBE.OptionsColumn.TabStop = false;
     this.colNBE.OptionsFilter.AllowAutoFilter = false;
     this.colNBE.OptionsFilter.AllowFilter = false;
     this.colNBE.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colNBE.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colNBE.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colNBE.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colNBE.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.colNBE.Visible = true;
     this.colNBE.VisibleIndex = 6;
     //
     // colEditButton
     //
     this.colEditButton.ColumnEdit = this.btnEditInvoice;
     this.colEditButton.Name = "colEditButton";
     this.colEditButton.OptionsColumn.AllowEdit = false;
     this.colEditButton.OptionsColumn.AllowFocus = false;
     this.colEditButton.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colEditButton.OptionsColumn.AllowIncrementalSearch = false;
     this.colEditButton.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colEditButton.OptionsColumn.AllowMove = false;
     this.colEditButton.OptionsColumn.AllowShowHide = false;
     this.colEditButton.OptionsColumn.AllowSize = false;
     this.colEditButton.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colEditButton.OptionsColumn.ShowInCustomizationForm = false;
     this.colEditButton.OptionsColumn.ShowInExpressionEditor = false;
     this.colEditButton.OptionsColumn.TabStop = false;
     this.colEditButton.OptionsFilter.AllowAutoFilter = false;
     this.colEditButton.OptionsFilter.AllowFilter = false;
     this.colEditButton.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colEditButton.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colEditButton.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colEditButton.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colEditButton.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.colEditButton.Visible = true;
     this.colEditButton.VisibleIndex = 7;
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "layoutControlGroup4";
     this.layoutControlGroup4.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup4.GroupBordersVisible = false;
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem4,
     this.emptySpaceItem6,
     this.layoutControlItem7});
     this.layoutControlGroup4.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.Size = new System.Drawing.Size(906, 405);
     this.layoutControlGroup4.Text = "layoutControlGroup4";
     this.layoutControlGroup4.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.gridInvoice;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(886, 359);
     this.layoutControlItem4.Text = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem6
     //
     this.emptySpaceItem6.AllowHotTrack = false;
     this.emptySpaceItem6.CustomizationFormText = "emptySpaceItem6";
     this.emptySpaceItem6.Location = new System.Drawing.Point(0, 359);
     this.emptySpaceItem6.MinSize = new System.Drawing.Size(104, 24);
     this.emptySpaceItem6.Name = "emptySpaceItem6";
     this.emptySpaceItem6.Size = new System.Drawing.Size(740, 26);
     this.emptySpaceItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem6.Text = "emptySpaceItem6";
     this.emptySpaceItem6.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btnAddInvoice;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(740, 359);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.Text = "layoutControlItem7";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible = false;
     //
     // tabPoDetail
     //
     this.tabPoDetail.Controls.Add(this.layoutControl3);
     this.tabPoDetail.Name = "tabPoDetail";
     this.tabPoDetail.Size = new System.Drawing.Size(906, 405);
     this.tabPoDetail.Text = "Order Details";
     //
     // layoutControl3
     //
     this.layoutControl3.Controls.Add(this.grdPoDetail);
     this.layoutControl3.Controls.Add(this.btnAddOrderDetail);
     this.layoutControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl3.Location = new System.Drawing.Point(0, 0);
     this.layoutControl3.Name = "layoutControl3";
     this.layoutControl3.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(412, 43, 250, 350);
     this.layoutControl3.Root = this.layoutControlGroup5;
     this.layoutControl3.Size = new System.Drawing.Size(906, 405);
     this.layoutControl3.TabIndex = 61;
     this.layoutControl3.Text = "layoutControl3";
     //
     // grdPoDetail
     //
     this.grdPoDetail.Location = new System.Drawing.Point(12, 12);
     this.grdPoDetail.MainView = this.grdPoDetailView;
     this.grdPoDetail.Name = "grdPoDetail";
     this.grdPoDetail.Size = new System.Drawing.Size(882, 355);
     this.grdPoDetail.TabIndex = 2;
     this.grdPoDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grdPoDetailView});
     //
     // grdPoDetailView
     //
     this.grdPoDetailView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn3,
     this.gridColumn5,
     this.colManufacturer,
     this.gridColumn6,
     this.gridColumn7,
     this.colPODetailID});
     this.grdPoDetailView.GridControl = this.grdPoDetail;
     this.grdPoDetailView.Name = "grdPoDetailView";
     this.grdPoDetailView.OptionsBehavior.Editable = false;
     this.grdPoDetailView.OptionsCustomization.AllowColumnMoving = false;
     this.grdPoDetailView.OptionsCustomization.AllowColumnResizing = false;
     this.grdPoDetailView.OptionsCustomization.AllowFilter = false;
     this.grdPoDetailView.OptionsMenu.EnableColumnMenu = false;
     this.grdPoDetailView.OptionsMenu.EnableFooterMenu = false;
     this.grdPoDetailView.OptionsMenu.EnableGroupPanelMenu = false;
     this.grdPoDetailView.OptionsMenu.ShowAddNewSummaryItem = DevExpress.Utils.DefaultBoolean.False;
     this.grdPoDetailView.OptionsMenu.ShowAutoFilterRowItem = false;
     this.grdPoDetailView.OptionsMenu.ShowDateTimeGroupIntervalItems = false;
     this.grdPoDetailView.OptionsMenu.ShowGroupSortSummaryItems = false;
     this.grdPoDetailView.OptionsMenu.ShowSplitItem = false;
     this.grdPoDetailView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.grdPoDetailView.OptionsView.ShowGroupPanel = false;
     this.grdPoDetailView.OptionsView.ShowIndicator = false;
     this.grdPoDetailView.DoubleClick += new System.EventHandler(this.grdPoDetailView_Click);
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Item";
     this.gridColumn3.FieldName = "FullItemName";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.AllowFocus = false;
     this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsColumn.AllowMove = false;
     this.gridColumn3.OptionsColumn.AllowShowHide = false;
     this.gridColumn3.OptionsColumn.AllowSize = false;
     this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn3.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn3.OptionsColumn.TabStop = false;
     this.gridColumn3.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn3.OptionsFilter.AllowFilter = false;
     this.gridColumn3.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn3.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Unit";
     this.gridColumn5.FieldName = "Unit";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.AllowFocus = false;
     this.gridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.OptionsColumn.AllowMove = false;
     this.gridColumn5.OptionsColumn.AllowShowHide = false;
     this.gridColumn5.OptionsColumn.AllowSize = false;
     this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn5.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn5.OptionsColumn.TabStop = false;
     this.gridColumn5.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn5.OptionsFilter.AllowFilter = false;
     this.gridColumn5.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn5.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 1;
     //
     // colManufacturer
     //
     this.colManufacturer.Caption = "Manufacturer";
     this.colManufacturer.FieldName = "Manufacturer";
     this.colManufacturer.Name = "colManufacturer";
     this.colManufacturer.OptionsColumn.AllowEdit = false;
     this.colManufacturer.OptionsColumn.AllowFocus = false;
     this.colManufacturer.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colManufacturer.OptionsColumn.AllowIncrementalSearch = false;
     this.colManufacturer.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colManufacturer.OptionsColumn.AllowMove = false;
     this.colManufacturer.OptionsColumn.AllowShowHide = false;
     this.colManufacturer.OptionsColumn.AllowSize = false;
     this.colManufacturer.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colManufacturer.OptionsColumn.ShowInCustomizationForm = false;
     this.colManufacturer.OptionsColumn.ShowInExpressionEditor = false;
     this.colManufacturer.OptionsColumn.TabStop = false;
     this.colManufacturer.OptionsFilter.AllowAutoFilter = false;
     this.colManufacturer.OptionsFilter.AllowFilter = false;
     this.colManufacturer.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colManufacturer.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colManufacturer.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colManufacturer.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colManufacturer.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.colManufacturer.Visible = true;
     this.colManufacturer.VisibleIndex = 2;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Quantity";
     this.gridColumn6.DisplayFormat.FormatString = "#,###.##";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "Quantity";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.OptionsColumn.AllowFocus = false;
     this.gridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.OptionsColumn.AllowMove = false;
     this.gridColumn6.OptionsColumn.AllowShowHide = false;
     this.gridColumn6.OptionsColumn.AllowSize = false;
     this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn6.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn6.OptionsColumn.TabStop = false;
     this.gridColumn6.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn6.OptionsFilter.AllowFilter = false;
     this.gridColumn6.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn6.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 3;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Total Cost";
     this.gridColumn7.DisplayFormat.FormatString = "#,###.##";
     this.gridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn7.FieldName = "Amount";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsColumn.AllowFocus = false;
     this.gridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.OptionsColumn.AllowMove = false;
     this.gridColumn7.OptionsColumn.AllowShowHide = false;
     this.gridColumn7.OptionsColumn.AllowSize = false;
     this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn7.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn7.OptionsColumn.TabStop = false;
     this.gridColumn7.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn7.OptionsFilter.AllowFilter = false;
     this.gridColumn7.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn7.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 4;
     //
     // colPODetailID
     //
     this.colPODetailID.Caption = "PurchaseOrderDetailID";
     this.colPODetailID.FieldName = "PurchaseOrderDetailID";
     this.colPODetailID.Name = "colPODetailID";
     this.colPODetailID.OptionsColumn.AllowEdit = false;
     this.colPODetailID.OptionsColumn.AllowFocus = false;
     this.colPODetailID.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colPODetailID.OptionsColumn.AllowIncrementalSearch = false;
     this.colPODetailID.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colPODetailID.OptionsColumn.AllowMove = false;
     this.colPODetailID.OptionsColumn.AllowShowHide = false;
     this.colPODetailID.OptionsColumn.AllowSize = false;
     this.colPODetailID.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colPODetailID.OptionsColumn.ShowInCustomizationForm = false;
     this.colPODetailID.OptionsColumn.ShowInExpressionEditor = false;
     this.colPODetailID.OptionsColumn.TabStop = false;
     this.colPODetailID.OptionsFilter.AllowAutoFilter = false;
     this.colPODetailID.OptionsFilter.AllowFilter = false;
     this.colPODetailID.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colPODetailID.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colPODetailID.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colPODetailID.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colPODetailID.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     //
     // btnAddOrderDetail
     //
     this.btnAddOrderDetail.Image = global::HCMIS.Desktop.Properties.Resources.add_16;
     this.btnAddOrderDetail.Location = new System.Drawing.Point(752, 371);
     this.btnAddOrderDetail.Name = "btnAddOrderDetail";
     this.btnAddOrderDetail.Size = new System.Drawing.Size(142, 22);
     this.btnAddOrderDetail.StyleController = this.layoutControl3;
     this.btnAddOrderDetail.TabIndex = 60;
     this.btnAddOrderDetail.Text = "Add/Edit Detail";
     this.btnAddOrderDetail.Click += new System.EventHandler(this.btnAddOrderDetail_Click);
     //
     // layoutControlGroup5
     //
     this.layoutControlGroup5.CustomizationFormText = "layoutControlGroup5";
     this.layoutControlGroup5.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup5.GroupBordersVisible = false;
     this.layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem9,
     this.layoutControlItem10,
     this.emptySpaceItem7});
     this.layoutControlGroup5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup5.Name = "layoutControlGroup5";
     this.layoutControlGroup5.Size = new System.Drawing.Size(906, 405);
     this.layoutControlGroup5.Text = "layoutControlGroup5";
     this.layoutControlGroup5.TextVisible = false;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.grdPoDetail;
     this.layoutControlItem9.CustomizationFormText = "layoutControlItem9";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(886, 359);
     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.btnAddOrderDetail;
     this.layoutControlItem10.CustomizationFormText = "layoutControlItem10";
     this.layoutControlItem10.Location = new System.Drawing.Point(740, 359);
     this.layoutControlItem10.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem10.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem10.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem10.Text = "layoutControlItem10";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem10.TextToControlDistance = 0;
     this.layoutControlItem10.TextVisible = false;
     //
     // emptySpaceItem7
     //
     this.emptySpaceItem7.AllowHotTrack = false;
     this.emptySpaceItem7.CustomizationFormText = "emptySpaceItem7";
     this.emptySpaceItem7.Location = new System.Drawing.Point(0, 359);
     this.emptySpaceItem7.Name = "emptySpaceItem7";
     this.emptySpaceItem7.Size = new System.Drawing.Size(740, 26);
     this.emptySpaceItem7.Text = "emptySpaceItem7";
     this.emptySpaceItem7.TextSize = new System.Drawing.Size(0, 0);
     //
     // btnEditOrder
     //
     this.btnEditOrder.Image = global::HCMIS.Desktop.Properties.Resources.Edit2;
     this.btnEditOrder.Location = new System.Drawing.Point(1126, 220);
     this.btnEditOrder.Name = "btnEditOrder";
     this.btnEditOrder.Size = new System.Drawing.Size(142, 22);
     this.btnEditOrder.StyleController = this.layoutControl1;
     this.btnEditOrder.TabIndex = 59;
     this.btnEditOrder.Text = "Edit Order";
     this.btnEditOrder.Click += new System.EventHandler(this.btnEditOrder_Click);
     //
     // gridLkEditOrderType
     //
     this.gridLkEditOrderType.Location = new System.Drawing.Point(62, 31);
     this.gridLkEditOrderType.Name = "gridLkEditOrderType";
     this.gridLkEditOrderType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.gridLkEditOrderType.Properties.DisplayMember = "Name";
     this.gridLkEditOrderType.Properties.NullText = "All Orders";
     this.gridLkEditOrderType.Properties.ShowFooter = false;
     this.gridLkEditOrderType.Properties.ValueMember = "ID";
     this.gridLkEditOrderType.Properties.View = this.gridView1;
     this.gridLkEditOrderType.Size = new System.Drawing.Size(276, 20);
     this.gridLkEditOrderType.StyleController = this.layoutControl1;
     this.gridLkEditOrderType.TabIndex = 58;
     this.gridLkEditOrderType.EditValueChanged += new System.EventHandler(this.lkOrderType_EditValueChanged);
     this.gridLkEditOrderType.DoubleClick += new System.EventHandler(this.gridLkEditOrderType_DoubleClick);
     this.gridLkEditOrderType.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridLkEditOrderType_KeyDown);
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn4});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.GroupCount = 1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowColumnHeaders = false;
     this.gridView1.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.OptionsView.ShowIndicator = false;
     this.gridView1.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn4, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "ID";
     this.gridColumn1.FieldName = "ID";
     this.gridColumn1.Name = "gridColumn1";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Order Type";
     this.gridColumn2.FieldName = "Name";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Mode";
     this.gridColumn4.FieldName = "Group";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     //
     // btnAddOrder
     //
     this.btnAddOrder.Image = global::HCMIS.Desktop.Properties.Resources.add_16;
     this.btnAddOrder.Location = new System.Drawing.Point(203, 664);
     this.btnAddOrder.Name = "btnAddOrder";
     this.btnAddOrder.Size = new System.Drawing.Size(142, 22);
     this.btnAddOrder.StyleController = this.layoutControl1;
     this.btnAddOrder.TabIndex = 9;
     this.btnAddOrder.Text = "Add New Order";
     this.btnAddOrder.Click += new System.EventHandler(this.btnAddOrder_Click);
     //
     // gridOrder
     //
     this.gridOrder.Location = new System.Drawing.Point(5, 87);
     this.gridOrder.MainView = this.gridOrderView;
     this.gridOrder.Name = "gridOrder";
     this.gridOrder.Padding = new System.Windows.Forms.Padding(2);
     this.gridOrder.Size = new System.Drawing.Size(340, 573);
     this.gridOrder.TabIndex = 1;
     this.gridOrder.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridOrderView});
     this.gridOrder.Click += new System.EventHandler(this.gridOrder_Click);
     //
     // gridOrderView
     //
     this.gridOrderView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colOrderNumber,
     this.colSupplierName,
     this.colID,
     this.grdColIsElectronic,
     this.grdColPOType});
     styleFormatCondition3.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
     styleFormatCondition3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Strikeout);
     styleFormatCondition3.Appearance.Options.UseBackColor = true;
     styleFormatCondition3.Appearance.Options.UseFont = true;
     styleFormatCondition3.ApplyToRow = true;
     styleFormatCondition3.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition3.Expression = "[Status]>[CurrentStatus]";
     styleFormatCondition4.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
     styleFormatCondition4.Appearance.Options.UseBackColor = true;
     styleFormatCondition4.ApplyToRow = true;
     styleFormatCondition4.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition4.Expression = "[Status]<[CurrentStatus]";
     this.gridOrderView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition3,
     styleFormatCondition4});
     this.gridOrderView.GridControl = this.gridOrder;
     this.gridOrderView.Name = "gridOrderView";
     this.gridOrderView.OptionsCustomization.AllowColumnMoving = false;
     this.gridOrderView.OptionsCustomization.AllowColumnResizing = false;
     this.gridOrderView.OptionsFilter.AllowColumnMRUFilterList = false;
     this.gridOrderView.OptionsFilter.AllowFilterEditor = false;
     this.gridOrderView.OptionsFilter.AllowFilterIncrementalSearch = false;
     this.gridOrderView.OptionsFilter.AllowMRUFilterList = false;
     this.gridOrderView.OptionsFilter.AllowMultiSelectInCheckedFilterPopup = false;
     this.gridOrderView.OptionsFilter.FilterEditorUseMenuForOperandsAndOperators = false;
     this.gridOrderView.OptionsFilter.ShowAllTableValuesInCheckedFilterPopup = false;
     this.gridOrderView.OptionsMenu.EnableColumnMenu = false;
     this.gridOrderView.OptionsMenu.EnableFooterMenu = false;
     this.gridOrderView.OptionsMenu.EnableGroupPanelMenu = false;
     this.gridOrderView.OptionsMenu.ShowAddNewSummaryItem = DevExpress.Utils.DefaultBoolean.False;
     this.gridOrderView.OptionsMenu.ShowAutoFilterRowItem = false;
     this.gridOrderView.OptionsMenu.ShowDateTimeGroupIntervalItems = false;
     this.gridOrderView.OptionsMenu.ShowGroupSortSummaryItems = false;
     this.gridOrderView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridOrderView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridOrderView.OptionsView.ShowGroupPanel = false;
     this.gridOrderView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridOrderView_FocusedRowChanged);
     this.gridOrderView.DoubleClick += new System.EventHandler(this.gridOrderView_DoubleClick);
     //
     // colOrderNumber
     //
     this.colOrderNumber.Caption = "PO No";
     this.colOrderNumber.FieldName = "OrderNumber";
     this.colOrderNumber.Name = "colOrderNumber";
     this.colOrderNumber.OptionsColumn.AllowEdit = false;
     this.colOrderNumber.OptionsColumn.AllowFocus = false;
     this.colOrderNumber.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colOrderNumber.OptionsColumn.AllowIncrementalSearch = false;
     this.colOrderNumber.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colOrderNumber.OptionsColumn.AllowMove = false;
     this.colOrderNumber.OptionsColumn.AllowShowHide = false;
     this.colOrderNumber.OptionsColumn.AllowSize = false;
     this.colOrderNumber.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colOrderNumber.OptionsColumn.ShowInCustomizationForm = false;
     this.colOrderNumber.OptionsColumn.ShowInExpressionEditor = false;
     this.colOrderNumber.OptionsColumn.TabStop = false;
     this.colOrderNumber.OptionsFilter.AllowAutoFilter = false;
     this.colOrderNumber.OptionsFilter.AllowFilter = false;
     this.colOrderNumber.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colOrderNumber.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colOrderNumber.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colOrderNumber.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colOrderNumber.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.colOrderNumber.Visible = true;
     this.colOrderNumber.VisibleIndex = 0;
     this.colOrderNumber.Width = 51;
     //
     // colSupplierName
     //
     this.colSupplierName.Caption = "Supplier";
     this.colSupplierName.FieldName = "Supplier";
     this.colSupplierName.Name = "colSupplierName";
     this.colSupplierName.OptionsColumn.AllowEdit = false;
     this.colSupplierName.OptionsColumn.AllowFocus = false;
     this.colSupplierName.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colSupplierName.OptionsColumn.AllowIncrementalSearch = false;
     this.colSupplierName.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colSupplierName.OptionsColumn.AllowMove = false;
     this.colSupplierName.OptionsColumn.AllowShowHide = false;
     this.colSupplierName.OptionsColumn.AllowSize = false;
     this.colSupplierName.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colSupplierName.OptionsColumn.ShowInCustomizationForm = false;
     this.colSupplierName.OptionsColumn.ShowInExpressionEditor = false;
     this.colSupplierName.OptionsColumn.TabStop = false;
     this.colSupplierName.OptionsFilter.AllowAutoFilter = false;
     this.colSupplierName.OptionsFilter.AllowFilter = false;
     this.colSupplierName.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colSupplierName.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colSupplierName.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colSupplierName.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colSupplierName.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.colSupplierName.Visible = true;
     this.colSupplierName.VisibleIndex = 1;
     this.colSupplierName.Width = 111;
     //
     // colID
     //
     this.colID.Caption = "ID";
     this.colID.FieldName = "ID";
     this.colID.Name = "colID";
     this.colID.OptionsColumn.AllowEdit = false;
     this.colID.OptionsColumn.AllowFocus = false;
     this.colID.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colID.OptionsColumn.AllowIncrementalSearch = false;
     this.colID.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colID.OptionsColumn.AllowMove = false;
     this.colID.OptionsColumn.AllowShowHide = false;
     this.colID.OptionsColumn.AllowSize = false;
     this.colID.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colID.OptionsColumn.ShowInCustomizationForm = false;
     this.colID.OptionsColumn.ShowInExpressionEditor = false;
     this.colID.OptionsColumn.TabStop = false;
     this.colID.OptionsFilter.AllowAutoFilter = false;
     this.colID.OptionsFilter.AllowFilter = false;
     this.colID.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colID.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colID.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colID.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colID.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     //
     // grdColIsElectronic
     //
     this.grdColIsElectronic.Caption = "IsElectronic";
     this.grdColIsElectronic.FieldName = "IsElectronicString";
     this.grdColIsElectronic.Name = "grdColIsElectronic";
     this.grdColIsElectronic.OptionsColumn.AllowEdit = false;
     this.grdColIsElectronic.OptionsColumn.AllowFocus = false;
     this.grdColIsElectronic.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.grdColIsElectronic.OptionsColumn.AllowIncrementalSearch = false;
     this.grdColIsElectronic.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grdColIsElectronic.OptionsColumn.AllowMove = false;
     this.grdColIsElectronic.OptionsColumn.AllowShowHide = false;
     this.grdColIsElectronic.OptionsColumn.AllowSize = false;
     this.grdColIsElectronic.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.grdColIsElectronic.OptionsColumn.ReadOnly = true;
     this.grdColIsElectronic.OptionsColumn.ShowInCustomizationForm = false;
     this.grdColIsElectronic.OptionsColumn.ShowInExpressionEditor = false;
     this.grdColIsElectronic.OptionsColumn.TabStop = false;
     this.grdColIsElectronic.OptionsFilter.AllowAutoFilter = false;
     this.grdColIsElectronic.OptionsFilter.AllowFilter = false;
     this.grdColIsElectronic.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.grdColIsElectronic.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.grdColIsElectronic.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.grdColIsElectronic.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.grdColIsElectronic.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.grdColIsElectronic.Visible = true;
     this.grdColIsElectronic.VisibleIndex = 2;
     this.grdColIsElectronic.Width = 72;
     //
     // grdColPOType
     //
     this.grdColPOType.Caption = "PO Type";
     this.grdColPOType.FieldName = "Name";
     this.grdColPOType.Name = "grdColPOType";
     this.grdColPOType.OptionsColumn.AllowEdit = false;
     this.grdColPOType.OptionsColumn.AllowFocus = false;
     this.grdColPOType.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.grdColPOType.OptionsColumn.AllowIncrementalSearch = false;
     this.grdColPOType.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grdColPOType.OptionsColumn.AllowMove = false;
     this.grdColPOType.OptionsColumn.AllowShowHide = false;
     this.grdColPOType.OptionsColumn.AllowSize = false;
     this.grdColPOType.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.grdColPOType.OptionsColumn.ShowInCustomizationForm = false;
     this.grdColPOType.OptionsColumn.ShowInExpressionEditor = false;
     this.grdColPOType.OptionsColumn.TabStop = false;
     this.grdColPOType.OptionsFilter.AllowAutoFilter = false;
     this.grdColPOType.OptionsFilter.AllowFilter = false;
     this.grdColPOType.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.grdColPOType.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.grdColPOType.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.grdColPOType.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.grdColPOType.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.grdColPOType.Visible = true;
     this.grdColPOType.VisibleIndex = 3;
     this.grdColPOType.Width = 76;
     //
     // layoutControlItem21
     //
     this.layoutControlItem21.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem21.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem21.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem21.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem21.Control = this.lblPONumber;
     this.layoutControlItem21.CustomizationFormText = "Order Number:";
     this.layoutControlItem21.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem21.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem21.MinSize = new System.Drawing.Size(81, 20);
     this.layoutControlItem21.Name = "layoutControlItem21";
     this.layoutControlItem21.Size = new System.Drawing.Size(210, 20);
     this.layoutControlItem21.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem21.Text = "Order Number:";
     this.layoutControlItem21.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem21.TextSize = new System.Drawing.Size(82, 13);
     this.layoutControlItem21.TextToControlDistance = 5;
     //
     // 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.layoutControlGroup2,
     this.LayoutSelectedOrderDetail,
     this.LayoutEmptyDetails,
     this.emptySpaceItem9});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1280, 691);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "Purchase Orders";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem8,
     this.emptySpaceItem1,
     this.layoutControlGroup6});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup2.Size = new System.Drawing.Size(350, 691);
     this.layoutControlGroup2.Text = "Orders";
     this.layoutControlGroup2.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gridOrder;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 82);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(344, 577);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.btnAddOrder;
     this.layoutControlItem8.CustomizationFormText = "layoutControlItem8";
     this.layoutControlItem8.Location = new System.Drawing.Point(198, 659);
     this.layoutControlItem8.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem8.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem8.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem8.Text = "layoutControlItem8";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem8.TextToControlDistance = 0;
     this.layoutControlItem8.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 659);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(198, 26);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup6
     //
     this.layoutControlGroup6.CustomizationFormText = "Filter";
     this.layoutControlGroup6.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem3,
     this.layoutControlItem11});
     this.layoutControlGroup6.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup6.Name = "layoutControlGroup6";
     this.layoutControlGroup6.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup6.Size = new System.Drawing.Size(344, 82);
     this.layoutControlGroup6.Text = "Filter";
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.gridLkEditOrderType;
     this.layoutControlItem3.CustomizationFormText = "Order Type";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(100, 20);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(330, 25);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "PO Type:";
     this.layoutControlItem3.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(45, 13);
     this.layoutControlItem3.TextToControlDistance = 5;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.txtFilter;
     this.layoutControlItem11.CustomizationFormText = "Filter:";
     this.layoutControlItem11.Location = new System.Drawing.Point(0, 25);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(330, 24);
     this.layoutControlItem11.Text = "Filter:";
     this.layoutControlItem11.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem11.TextSize = new System.Drawing.Size(28, 13);
     this.layoutControlItem11.TextToControlDistance = 22;
     //
     // LayoutSelectedOrderDetail
     //
     this.LayoutSelectedOrderDetail.CustomizationFormText = "Purchase Order Details";
     this.LayoutSelectedOrderDetail.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.HeaderGroup,
     this.layoutControlItem6});
     this.LayoutSelectedOrderDetail.Location = new System.Drawing.Point(358, 75);
     this.LayoutSelectedOrderDetail.Name = "LayoutSelectedOrderDetail";
     this.LayoutSelectedOrderDetail.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.LayoutSelectedOrderDetail.Size = new System.Drawing.Size(922, 616);
     this.LayoutSelectedOrderDetail.Text = "Order Details";
     this.LayoutSelectedOrderDetail.TextVisible = false;
     this.LayoutSelectedOrderDetail.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // HeaderGroup
     //
     this.HeaderGroup.AppearanceGroup.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.HeaderGroup.AppearanceGroup.Options.UseFont = true;
     this.HeaderGroup.CustomizationFormText = " ";
     this.HeaderGroup.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem12,
     this.layoutControlItem14,
     this.layoutControlItem16,
     this.layoutControlItem18,
     this.emptySpaceItem3,
     this.layoutControlItem2,
     this.layoutControlItem25,
     this.emptySpaceItem4,
     this.layoutControlItem44,
     this.layoutControlItem48,
     this.layoutControlItem42,
     this.layoutControlItem5,
     this.layoutControlGroup3,
     this.layoutControlGroup7,
     this.layoutControlGroup8,
     this.layoutControlGroup9,
     this.layoutControlItem46,
     this.layoutControlItem23});
     this.HeaderGroup.Location = new System.Drawing.Point(0, 0);
     this.HeaderGroup.Name = "HeaderGroup";
     this.HeaderGroup.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.HeaderGroup.Size = new System.Drawing.Size(916, 173);
     this.HeaderGroup.Text = " ";
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem12.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem12.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem12.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem12.Control = this.lblMode;
     this.layoutControlItem12.CustomizationFormText = "Mode:";
     this.layoutControlItem12.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem12.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem12.MinSize = new System.Drawing.Size(39, 20);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Size = new System.Drawing.Size(226, 20);
     this.layoutControlItem12.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem12.Text = "Mode:";
     this.layoutControlItem12.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem12.TextSize = new System.Drawing.Size(34, 13);
     this.layoutControlItem12.TextToControlDistance = 20;
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem14.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem14.Control = this.lblAccount;
     this.layoutControlItem14.CustomizationFormText = "Account:";
     this.layoutControlItem14.Location = new System.Drawing.Point(226, 20);
     this.layoutControlItem14.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem14.MinSize = new System.Drawing.Size(52, 20);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(226, 20);
     this.layoutControlItem14.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem14.Text = "Account:";
     this.layoutControlItem14.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem14.TextSize = new System.Drawing.Size(49, 13);
     this.layoutControlItem14.TextToControlDistance = 12;
     //
     // layoutControlItem16
     //
     this.layoutControlItem16.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem16.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem16.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem16.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem16.Control = this.lblSubAccount;
     this.layoutControlItem16.CustomizationFormText = "Sub Account:";
     this.layoutControlItem16.Location = new System.Drawing.Point(452, 20);
     this.layoutControlItem16.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem16.MinSize = new System.Drawing.Size(91, 20);
     this.layoutControlItem16.Name = "layoutControlItem16";
     this.layoutControlItem16.Size = new System.Drawing.Size(225, 20);
     this.layoutControlItem16.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem16.Text = "Sub Account:";
     this.layoutControlItem16.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem16.TextSize = new System.Drawing.Size(73, 13);
     this.layoutControlItem16.TextToControlDistance = 17;
     //
     // layoutControlItem18
     //
     this.layoutControlItem18.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem18.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem18.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem18.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem18.Control = this.lblActivity;
     this.layoutControlItem18.CustomizationFormText = "Activity:";
     this.layoutControlItem18.Location = new System.Drawing.Point(677, 20);
     this.layoutControlItem18.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem18.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem18.Name = "layoutControlItem18";
     this.layoutControlItem18.Size = new System.Drawing.Size(225, 20);
     this.layoutControlItem18.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem18.Text = "Activity:";
     this.layoutControlItem18.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem18.TextSize = new System.Drawing.Size(47, 13);
     this.layoutControlItem18.TextToControlDistance = 5;
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(0, 114);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(756, 26);
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btnEditOrder;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(756, 114);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem25
     //
     this.layoutControlItem25.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem25.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem25.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem25.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem25.Control = this.lblSupplier;
     this.layoutControlItem25.CustomizationFormText = "Supplier:";
     this.layoutControlItem25.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem25.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem25.MinSize = new System.Drawing.Size(51, 20);
     this.layoutControlItem25.Name = "layoutControlItem25";
     this.layoutControlItem25.Size = new System.Drawing.Size(226, 20);
     this.layoutControlItem25.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem25.Text = "Supplier:";
     this.layoutControlItem25.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem25.TextSize = new System.Drawing.Size(49, 13);
     this.layoutControlItem25.TextToControlDistance = 5;
     //
     // emptySpaceItem4
     //
     this.emptySpaceItem4.AllowHotTrack = false;
     this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4";
     this.emptySpaceItem4.Location = new System.Drawing.Point(677, 0);
     this.emptySpaceItem4.Name = "emptySpaceItem4";
     this.emptySpaceItem4.Size = new System.Drawing.Size(225, 20);
     this.emptySpaceItem4.Text = "emptySpaceItem4";
     this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem44
     //
     this.layoutControlItem44.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem44.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem44.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem44.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem44.Control = this.lblPaymentType;
     this.layoutControlItem44.CustomizationFormText = "Payment Type:";
     this.layoutControlItem44.Location = new System.Drawing.Point(452, 0);
     this.layoutControlItem44.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem44.MinSize = new System.Drawing.Size(94, 20);
     this.layoutControlItem44.Name = "layoutControlItem44";
     this.layoutControlItem44.Size = new System.Drawing.Size(225, 20);
     this.layoutControlItem44.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem44.Text = "Payment Type:";
     this.layoutControlItem44.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem44.TextSize = new System.Drawing.Size(85, 13);
     this.layoutControlItem44.TextToControlDistance = 5;
     //
     // layoutControlItem48
     //
     this.layoutControlItem48.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem48.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem48.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem48.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem48.Control = this.lblLetterNo;
     this.layoutControlItem48.CustomizationFormText = "Letter No:";
     this.layoutControlItem48.Location = new System.Drawing.Point(226, 40);
     this.layoutControlItem48.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem48.MinSize = new System.Drawing.Size(64, 20);
     this.layoutControlItem48.Name = "layoutControlItem48";
     this.layoutControlItem48.Size = new System.Drawing.Size(226, 20);
     this.layoutControlItem48.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem48.Text = "Letter No:";
     this.layoutControlItem48.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem48.TextSize = new System.Drawing.Size(55, 13);
     this.layoutControlItem48.TextToControlDistance = 5;
     //
     // layoutControlItem42
     //
     this.layoutControlItem42.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem42.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem42.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem42.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem42.Control = this.lblSyncDate;
     this.layoutControlItem42.CustomizationFormText = "Sync Date:";
     this.layoutControlItem42.Location = new System.Drawing.Point(452, 40);
     this.layoutControlItem42.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem42.MinSize = new System.Drawing.Size(62, 20);
     this.layoutControlItem42.Name = "layoutControlItem42";
     this.layoutControlItem42.Size = new System.Drawing.Size(225, 20);
     this.layoutControlItem42.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem42.Text = "Sync Date:";
     this.layoutControlItem42.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem42.TextSize = new System.Drawing.Size(60, 13);
     this.layoutControlItem42.TextToControlDistance = 30;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.chkboxIsElectronic;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(677, 40);
     this.layoutControlItem5.MinSize = new System.Drawing.Size(24, 20);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(225, 20);
     this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem29,
     this.layoutControlItem33});
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 60);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup3.Size = new System.Drawing.Size(217, 54);
     this.layoutControlGroup3.Spacing = new DevExpress.XtraLayout.Utils.Padding(-2, 2, 2, 2);
     this.layoutControlGroup3.Text = "layoutControlGroup3";
     this.layoutControlGroup3.TextVisible = false;
     //
     // layoutControlItem29
     //
     this.layoutControlItem29.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem29.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem29.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem29.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem29.Control = this.lblTotalValue;
     this.layoutControlItem29.CustomizationFormText = "layoutControlItem29";
     this.layoutControlItem29.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem29.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem29.MinSize = new System.Drawing.Size(66, 20);
     this.layoutControlItem29.Name = "layoutControlItem29";
     this.layoutControlItem29.Size = new System.Drawing.Size(207, 20);
     this.layoutControlItem29.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem29.Text = "Total Value:";
     this.layoutControlItem29.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem29.TextSize = new System.Drawing.Size(66, 13);
     this.layoutControlItem29.TextToControlDistance = 36;
     //
     // layoutControlItem33
     //
     this.layoutControlItem33.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem33.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem33.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem33.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem33.Control = this.lblRemainingValue;
     this.layoutControlItem33.CustomizationFormText = "layoutControlItem33";
     this.layoutControlItem33.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem33.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem33.MinSize = new System.Drawing.Size(91, 20);
     this.layoutControlItem33.Name = "layoutControlItem33";
     this.layoutControlItem33.Size = new System.Drawing.Size(207, 20);
     this.layoutControlItem33.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem33.Text = "Remaining Value:";
     this.layoutControlItem33.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem33.TextSize = new System.Drawing.Size(97, 13);
     this.layoutControlItem33.TextToControlDistance = 5;
     //
     // layoutControlGroup7
     //
     this.layoutControlGroup7.CustomizationFormText = "layoutControlGroup7";
     this.layoutControlGroup7.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem31,
     this.layoutControlItem35});
     this.layoutControlGroup7.Location = new System.Drawing.Point(217, 60);
     this.layoutControlGroup7.Name = "layoutControlGroup7";
     this.layoutControlGroup7.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup7.Size = new System.Drawing.Size(227, 54);
     this.layoutControlGroup7.Text = "layoutControlGroup7";
     this.layoutControlGroup7.TextVisible = false;
     //
     // layoutControlItem31
     //
     this.layoutControlItem31.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem31.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem31.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem31.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem31.Control = this.lblNBE;
     this.layoutControlItem31.CustomizationFormText = "layoutControlItem31";
     this.layoutControlItem31.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem31.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem31.MinSize = new System.Drawing.Size(108, 20);
     this.layoutControlItem31.Name = "layoutControlItem31";
     this.layoutControlItem31.Size = new System.Drawing.Size(213, 20);
     this.layoutControlItem31.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem31.Text = "NBE Service Charge:";
     this.layoutControlItem31.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem31.TextSize = new System.Drawing.Size(111, 13);
     this.layoutControlItem31.TextToControlDistance = 5;
     //
     // layoutControlItem35
     //
     this.layoutControlItem35.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem35.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem35.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem35.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem35.Control = this.lblInsurance;
     this.layoutControlItem35.CustomizationFormText = "layoutControlItem35";
     this.layoutControlItem35.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem35.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem35.MinSize = new System.Drawing.Size(61, 20);
     this.layoutControlItem35.Name = "layoutControlItem35";
     this.layoutControlItem35.Size = new System.Drawing.Size(213, 20);
     this.layoutControlItem35.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem35.Text = "Insurance:";
     this.layoutControlItem35.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem35.TextSize = new System.Drawing.Size(60, 13);
     this.layoutControlItem35.TextToControlDistance = 56;
     //
     // layoutControlGroup8
     //
     this.layoutControlGroup8.CustomizationFormText = "layoutControlGroup8";
     this.layoutControlGroup8.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem50,
     this.layoutControlItem37});
     this.layoutControlGroup8.Location = new System.Drawing.Point(444, 60);
     this.layoutControlGroup8.Name = "layoutControlGroup8";
     this.layoutControlGroup8.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup8.Size = new System.Drawing.Size(225, 54);
     this.layoutControlGroup8.Text = "layoutControlGroup8";
     this.layoutControlGroup8.TextVisible = false;
     //
     // layoutControlItem50
     //
     this.layoutControlItem50.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem50.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem50.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem50.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem50.Control = this.lblPOBy;
     this.layoutControlItem50.CustomizationFormText = "PO By:";
     this.layoutControlItem50.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem50.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem50.MinSize = new System.Drawing.Size(47, 20);
     this.layoutControlItem50.Name = "layoutControlItem50";
     this.layoutControlItem50.Size = new System.Drawing.Size(211, 20);
     this.layoutControlItem50.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem50.Text = "PO By:";
     this.layoutControlItem50.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem50.TextSize = new System.Drawing.Size(35, 13);
     this.layoutControlItem50.TextToControlDistance = 18;
     //
     // layoutControlItem37
     //
     this.layoutControlItem37.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem37.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem37.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem37.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem37.Control = this.lblOrderDate;
     this.layoutControlItem37.CustomizationFormText = "layoutControlItem37";
     this.layoutControlItem37.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem37.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem37.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem37.Name = "layoutControlItem37";
     this.layoutControlItem37.Size = new System.Drawing.Size(211, 20);
     this.layoutControlItem37.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem37.Text = "PO Date:";
     this.layoutControlItem37.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem37.TextSize = new System.Drawing.Size(48, 13);
     this.layoutControlItem37.TextToControlDistance = 5;
     //
     // layoutControlGroup9
     //
     this.layoutControlGroup9.CustomizationFormText = "layoutControlGroup9";
     this.layoutControlGroup9.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem27,
     this.layoutControlItem40});
     this.layoutControlGroup9.Location = new System.Drawing.Point(669, 60);
     this.layoutControlGroup9.Name = "layoutControlGroup9";
     this.layoutControlGroup9.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup9.Size = new System.Drawing.Size(233, 54);
     this.layoutControlGroup9.Text = "layoutControlGroup9";
     this.layoutControlGroup9.TextVisible = false;
     //
     // layoutControlItem27
     //
     this.layoutControlItem27.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem27.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem27.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem27.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem27.Control = this.lblPOType;
     this.layoutControlItem27.CustomizationFormText = "layoutControlItem27";
     this.layoutControlItem27.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem27.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem27.MinSize = new System.Drawing.Size(54, 20);
     this.layoutControlItem27.Name = "layoutControlItem27";
     this.layoutControlItem27.Size = new System.Drawing.Size(219, 20);
     this.layoutControlItem27.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem27.Text = "PO Type:";
     this.layoutControlItem27.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem27.TextSize = new System.Drawing.Size(49, 13);
     this.layoutControlItem27.TextToControlDistance = 5;
     //
     // layoutControlItem40
     //
     this.layoutControlItem40.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem40.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem40.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem40.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem40.Control = this.lblPOStatus;
     this.layoutControlItem40.CustomizationFormText = "layoutControlItem40";
     this.layoutControlItem40.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem40.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem40.MinSize = new System.Drawing.Size(65, 20);
     this.layoutControlItem40.Name = "layoutControlItem40";
     this.layoutControlItem40.Size = new System.Drawing.Size(219, 20);
     this.layoutControlItem40.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem40.Text = "Status: ";
     this.layoutControlItem40.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem40.TextSize = new System.Drawing.Size(43, 13);
     this.layoutControlItem40.TextToControlDistance = 11;
     //
     // layoutControlItem46
     //
     this.layoutControlItem46.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem46.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem46.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem46.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem46.Control = this.lblShipper;
     this.layoutControlItem46.CustomizationFormText = "Shipper:";
     this.layoutControlItem46.Location = new System.Drawing.Point(226, 0);
     this.layoutControlItem46.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem46.MinSize = new System.Drawing.Size(65, 20);
     this.layoutControlItem46.Name = "layoutControlItem46";
     this.layoutControlItem46.Size = new System.Drawing.Size(226, 20);
     this.layoutControlItem46.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem46.Text = "Shipper:";
     this.layoutControlItem46.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem46.TextSize = new System.Drawing.Size(46, 13);
     this.layoutControlItem46.TextToControlDistance = 15;
     //
     // layoutControlItem23
     //
     this.layoutControlItem23.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem23.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem23.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem23.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem23.Control = this.lblRefNo;
     this.layoutControlItem23.CustomizationFormText = "Ref No:";
     this.layoutControlItem23.Location = new System.Drawing.Point(0, 40);
     this.layoutControlItem23.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem23.MinSize = new System.Drawing.Size(46, 20);
     this.layoutControlItem23.Name = "layoutControlItem23";
     this.layoutControlItem23.Size = new System.Drawing.Size(226, 20);
     this.layoutControlItem23.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem23.Text = "Ref No:";
     this.layoutControlItem23.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem23.TextSize = new System.Drawing.Size(39, 13);
     this.layoutControlItem23.TextToControlDistance = 16;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.TabOrderTabs;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 173);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(916, 437);
     this.layoutControlItem6.Text = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible = false;
     //
     // LayoutEmptyDetails
     //
     this.LayoutEmptyDetails.CustomizationFormText = " ";
     this.LayoutEmptyDetails.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.simpleLabelItem1});
     this.LayoutEmptyDetails.Location = new System.Drawing.Point(358, 0);
     this.LayoutEmptyDetails.Name = "LayoutEmptyDetails";
     this.LayoutEmptyDetails.Size = new System.Drawing.Size(922, 75);
     this.LayoutEmptyDetails.Text = " ";
     //
     // simpleLabelItem1
     //
     this.simpleLabelItem1.AllowHotTrack = false;
     this.simpleLabelItem1.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem1.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem1.AppearanceItemCaption.Options.UseTextOptions = true;
     this.simpleLabelItem1.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.simpleLabelItem1.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.simpleLabelItem1.ControlAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.simpleLabelItem1.CustomizationFormText = "Please Select a Purchase Order From The Left";
     this.simpleLabelItem1.Location = new System.Drawing.Point(0, 0);
     this.simpleLabelItem1.MinSize = new System.Drawing.Size(115, 17);
     this.simpleLabelItem1.Name = "simpleLabelItem1";
     this.simpleLabelItem1.Size = new System.Drawing.Size(898, 32);
     this.simpleLabelItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.simpleLabelItem1.Text = "Please Select Order";
     this.simpleLabelItem1.TextSize = new System.Drawing.Size(110, 13);
     //
     // emptySpaceItem9
     //
     this.emptySpaceItem9.AllowHotTrack = false;
     this.emptySpaceItem9.CustomizationFormText = "emptySpaceItem9";
     this.emptySpaceItem9.Location = new System.Drawing.Point(350, 0);
     this.emptySpaceItem9.MaxSize = new System.Drawing.Size(8, 0);
     this.emptySpaceItem9.MinSize = new System.Drawing.Size(8, 24);
     this.emptySpaceItem9.Name = "emptySpaceItem9";
     this.emptySpaceItem9.Size = new System.Drawing.Size(8, 691);
     this.emptySpaceItem9.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem9.Text = "emptySpaceItem9";
     this.emptySpaceItem9.TextSize = new System.Drawing.Size(0, 0);
     //
     // simpleLabelItem4
     //
     this.simpleLabelItem4.AllowHotTrack = false;
     this.simpleLabelItem4.CustomizationFormText = "LabellblTotalValue";
     this.simpleLabelItem4.Location = new System.Drawing.Point(224, 27);
     this.simpleLabelItem4.Name = "lblTotalValue";
     this.simpleLabelItem4.Size = new System.Drawing.Size(224, 17);
     this.simpleLabelItem4.Text = "LabellblTotalValue";
     this.simpleLabelItem4.TextSize = new System.Drawing.Size(220, 13);
     //
     // simpleLabelItem5
     //
     this.simpleLabelItem5.AllowHotTrack = false;
     this.simpleLabelItem5.CustomizationFormText = "Total Value : ";
     this.simpleLabelItem5.Location = new System.Drawing.Point(0, 27);
     this.simpleLabelItem5.Name = "simpleLabelItem3";
     this.simpleLabelItem5.Size = new System.Drawing.Size(224, 17);
     this.simpleLabelItem5.Text = "Total Value : ";
     this.simpleLabelItem5.TextSize = new System.Drawing.Size(220, 13);
     //
     // simpleLabelItem6
     //
     this.simpleLabelItem6.AllowHotTrack = false;
     this.simpleLabelItem6.CustomizationFormText = "Purchase Order Number : ";
     this.simpleLabelItem6.Location = new System.Drawing.Point(0, 0);
     this.simpleLabelItem6.Name = "simpleLabelItem2";
     this.simpleLabelItem6.Size = new System.Drawing.Size(224, 17);
     this.simpleLabelItem6.Text = "Purchase Order Number : ";
     this.simpleLabelItem6.TextSize = new System.Drawing.Size(220, 13);
     //
     // simpleLabelItem7
     //
     this.simpleLabelItem7.AllowHotTrack = false;
     this.simpleLabelItem7.CustomizationFormText = "LabellblPONumber";
     this.simpleLabelItem7.Location = new System.Drawing.Point(224, 0);
     this.simpleLabelItem7.Name = "lblPONumber";
     this.simpleLabelItem7.Size = new System.Drawing.Size(224, 17);
     this.simpleLabelItem7.Text = "LabellblPONumber";
     this.simpleLabelItem7.TextSize = new System.Drawing.Size(220, 13);
     //
     // simpleLabelItem8
     //
     this.simpleLabelItem8.AllowHotTrack = false;
     this.simpleLabelItem8.CustomizationFormText = "Purchase Order Number : ";
     this.simpleLabelItem8.Location = new System.Drawing.Point(0, 0);
     this.simpleLabelItem8.Name = "simpleLabelItem2";
     this.simpleLabelItem8.Size = new System.Drawing.Size(224, 17);
     this.simpleLabelItem8.Text = "Purchase Order Number : ";
     this.simpleLabelItem8.TextSize = new System.Drawing.Size(220, 13);
     //
     // simpleLabelItem9
     //
     this.simpleLabelItem9.AllowHotTrack = false;
     this.simpleLabelItem9.CustomizationFormText = "Purchase Order Number : ";
     this.simpleLabelItem9.Location = new System.Drawing.Point(0, 0);
     this.simpleLabelItem9.Name = "simpleLabelItem2";
     this.simpleLabelItem9.Size = new System.Drawing.Size(224, 17);
     this.simpleLabelItem9.Text = "Purchase Order Number : ";
     this.simpleLabelItem9.TextSize = new System.Drawing.Size(220, 13);
     //
     // simpleLabelItem10
     //
     this.simpleLabelItem10.AllowHotTrack = false;
     this.simpleLabelItem10.CustomizationFormText = "LabellblPONumber";
     this.simpleLabelItem10.Location = new System.Drawing.Point(224, 0);
     this.simpleLabelItem10.Name = "lblPONumber";
     this.simpleLabelItem10.Size = new System.Drawing.Size(224, 17);
     this.simpleLabelItem10.Text = "LabellblPONumber";
     this.simpleLabelItem10.TextSize = new System.Drawing.Size(220, 13);
     //
     // simpleLabelItem11
     //
     this.simpleLabelItem11.AllowHotTrack = false;
     this.simpleLabelItem11.CustomizationFormText = "Purchase Order Number : ";
     this.simpleLabelItem11.Location = new System.Drawing.Point(0, 0);
     this.simpleLabelItem11.Name = "simpleLabelItem2";
     this.simpleLabelItem11.Size = new System.Drawing.Size(224, 17);
     this.simpleLabelItem11.Text = "Purchase Order Number : ";
     this.simpleLabelItem11.TextSize = new System.Drawing.Size(220, 13);
     //
     // simpleLabelItem14
     //
     this.simpleLabelItem14.AllowHotTrack = false;
     this.simpleLabelItem14.CustomizationFormText = "LabellblPONumber";
     this.simpleLabelItem14.Location = new System.Drawing.Point(224, 0);
     this.simpleLabelItem14.Name = "lblPONumber";
     this.simpleLabelItem14.Size = new System.Drawing.Size(224, 17);
     this.simpleLabelItem14.Text = "LabellblPONumber";
     this.simpleLabelItem14.TextSize = new System.Drawing.Size(220, 13);
     //
     // simpleLabelItem18
     //
     this.simpleLabelItem18.AllowHotTrack = false;
     this.simpleLabelItem18.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem18.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem18.CustomizationFormText = "Account";
     this.simpleLabelItem18.Location = new System.Drawing.Point(340, 0);
     this.simpleLabelItem18.Name = "simpleLabelItem16";
     this.simpleLabelItem18.Size = new System.Drawing.Size(117, 17);
     this.simpleLabelItem18.Text = "Account";
     this.simpleLabelItem18.TextSize = new System.Drawing.Size(111, 13);
     //
     // simpleLabelItem19
     //
     this.simpleLabelItem19.AllowHotTrack = false;
     this.simpleLabelItem19.CustomizationFormText = "LabellblAccount";
     this.simpleLabelItem19.Location = new System.Drawing.Point(115, 17);
     this.simpleLabelItem19.Name = "lblAccount";
     this.simpleLabelItem19.Size = new System.Drawing.Size(771, 17);
     this.simpleLabelItem19.Text = " ";
     this.simpleLabelItem19.TextSize = new System.Drawing.Size(111, 13);
     //
     // simpleLabelItem20
     //
     this.simpleLabelItem20.AllowHotTrack = false;
     this.simpleLabelItem20.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem20.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem20.CustomizationFormText = "Account";
     this.simpleLabelItem20.Location = new System.Drawing.Point(0, 17);
     this.simpleLabelItem20.Name = "simpleLabelItem16";
     this.simpleLabelItem20.Size = new System.Drawing.Size(115, 17);
     this.simpleLabelItem20.Text = "Account";
     this.simpleLabelItem20.TextSize = new System.Drawing.Size(111, 13);
     //
     // simpleLabelItem21
     //
     this.simpleLabelItem21.AllowHotTrack = false;
     this.simpleLabelItem21.CustomizationFormText = "LabellblAccount";
     this.simpleLabelItem21.Location = new System.Drawing.Point(115, 17);
     this.simpleLabelItem21.Name = "lblAccount";
     this.simpleLabelItem21.Size = new System.Drawing.Size(771, 17);
     this.simpleLabelItem21.Text = " ";
     this.simpleLabelItem21.TextSize = new System.Drawing.Size(111, 13);
     //
     // simpleLabelItem22
     //
     this.simpleLabelItem22.AllowHotTrack = false;
     this.simpleLabelItem22.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem22.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem22.CustomizationFormText = "Account";
     this.simpleLabelItem22.Location = new System.Drawing.Point(0, 17);
     this.simpleLabelItem22.Name = "simpleLabelItem16";
     this.simpleLabelItem22.Size = new System.Drawing.Size(115, 17);
     this.simpleLabelItem22.Text = "Account";
     this.simpleLabelItem22.TextSize = new System.Drawing.Size(111, 13);
     //
     // simpleLabelItem23
     //
     this.simpleLabelItem23.AllowHotTrack = false;
     this.simpleLabelItem23.CustomizationFormText = "LabellblAccount";
     this.simpleLabelItem23.Location = new System.Drawing.Point(115, 17);
     this.simpleLabelItem23.Name = "lblAccount";
     this.simpleLabelItem23.Size = new System.Drawing.Size(771, 17);
     this.simpleLabelItem23.Text = " ";
     this.simpleLabelItem23.TextSize = new System.Drawing.Size(111, 13);
     //
     // simpleLabelItem24
     //
     this.simpleLabelItem24.AllowHotTrack = false;
     this.simpleLabelItem24.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem24.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem24.CustomizationFormText = "Insurance";
     this.simpleLabelItem24.Location = new System.Drawing.Point(397, 85);
     this.simpleLabelItem24.Name = "simpleLabelItem13";
     this.simpleLabelItem24.Size = new System.Drawing.Size(143, 17);
     this.simpleLabelItem24.Text = "Insurance:";
     this.simpleLabelItem24.TextSize = new System.Drawing.Size(111, 13);
     //
     // simpleLabelItem26
     //
     this.simpleLabelItem26.AllowHotTrack = false;
     this.simpleLabelItem26.CustomizationFormText = "LabellblInsurance";
     this.simpleLabelItem26.Location = new System.Drawing.Point(540, 85);
     this.simpleLabelItem26.Name = "lblInsurance";
     this.simpleLabelItem26.Size = new System.Drawing.Size(213, 17);
     this.simpleLabelItem26.Text = " ";
     this.simpleLabelItem26.TextSize = new System.Drawing.Size(111, 13);
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(0, 50);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(857, 269);
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // gridView2
     //
     this.gridView2.Name = "gridView2";
     //
     // emptySpaceItem5
     //
     this.emptySpaceItem5.AllowHotTrack = false;
     this.emptySpaceItem5.CustomizationFormText = "emptySpaceItem5";
     this.emptySpaceItem5.Location = new System.Drawing.Point(0, 271);
     this.emptySpaceItem5.Name = "emptySpaceItem5";
     this.emptySpaceItem5.Size = new System.Drawing.Size(496, 23);
     this.emptySpaceItem5.Text = "emptySpaceItem5";
     this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem8
     //
     this.emptySpaceItem8.AllowHotTrack = false;
     this.emptySpaceItem8.CustomizationFormText = "emptySpaceItem8";
     this.emptySpaceItem8.Location = new System.Drawing.Point(742, 68);
     this.emptySpaceItem8.Name = "emptySpaceItem8";
     this.emptySpaceItem8.Size = new System.Drawing.Size(193, 17);
     this.emptySpaceItem8.Text = "emptySpaceItem8";
     this.emptySpaceItem8.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem20
     //
     this.layoutControlItem20.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem20.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem20.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem20.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem20.Control = this.txtFilter;
     this.layoutControlItem20.CustomizationFormText = "Letter Number";
     this.layoutControlItem20.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem20.Name = "layoutControlItem20";
     this.layoutControlItem20.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem20.Text = "Letter Number:";
     this.layoutControlItem20.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem20.TextSize = new System.Drawing.Size(85, 13);
     this.layoutControlItem20.TextToControlDistance = 9;
     //
     // layoutControlItem38
     //
     this.layoutControlItem38.Control = this.lblMode;
     this.layoutControlItem38.CustomizationFormText = "Order Number: ";
     this.layoutControlItem38.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem38.Name = "layoutControlItem38";
     this.layoutControlItem38.Size = new System.Drawing.Size(252, 22);
     this.layoutControlItem38.Text = "Order No.: ";
     this.layoutControlItem38.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem38.TextSize = new System.Drawing.Size(55, 13);
     this.layoutControlItem38.TextToControlDistance = 8;
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.Control = this.lblAccount;
     this.layoutControlItem13.CustomizationFormText = "Order Number: ";
     this.layoutControlItem13.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem13.Name = "layoutControlItem38";
     this.layoutControlItem13.Size = new System.Drawing.Size(252, 22);
     this.layoutControlItem13.Text = "Order No.: ";
     this.layoutControlItem13.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem13.TextSize = new System.Drawing.Size(55, 13);
     this.layoutControlItem13.TextToControlDistance = 8;
     //
     // layoutControlItem15
     //
     this.layoutControlItem15.Control = this.lblSubAccount;
     this.layoutControlItem15.CustomizationFormText = "Order Number: ";
     this.layoutControlItem15.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem15.Name = "layoutControlItem38";
     this.layoutControlItem15.Size = new System.Drawing.Size(252, 22);
     this.layoutControlItem15.Text = "Order No.: ";
     this.layoutControlItem15.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem15.TextSize = new System.Drawing.Size(55, 13);
     this.layoutControlItem15.TextToControlDistance = 8;
     //
     // layoutControlItem17
     //
     this.layoutControlItem17.Control = this.lblActivity;
     this.layoutControlItem17.CustomizationFormText = "Order Number: ";
     this.layoutControlItem17.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem17.Name = "layoutControlItem38";
     this.layoutControlItem17.Size = new System.Drawing.Size(252, 22);
     this.layoutControlItem17.Text = "Order No.: ";
     this.layoutControlItem17.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem17.TextSize = new System.Drawing.Size(55, 13);
     this.layoutControlItem17.TextToControlDistance = 8;
     //
     // layoutControlItem19
     //
     this.layoutControlItem19.Control = this.lblPONumber;
     this.layoutControlItem19.CustomizationFormText = "Order Number: ";
     this.layoutControlItem19.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem19.Name = "layoutControlItem38";
     this.layoutControlItem19.Size = new System.Drawing.Size(252, 22);
     this.layoutControlItem19.Text = "Order No.: ";
     this.layoutControlItem19.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem19.TextSize = new System.Drawing.Size(55, 13);
     this.layoutControlItem19.TextToControlDistance = 8;
     //
     // layoutControlItem22
     //
     this.layoutControlItem22.Control = this.lblRefNo;
     this.layoutControlItem22.CustomizationFormText = "Order Number: ";
     this.layoutControlItem22.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem22.Name = "layoutControlItem38";
     this.layoutControlItem22.Size = new System.Drawing.Size(252, 22);
     this.layoutControlItem22.Text = "Order No.: ";
     this.layoutControlItem22.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem22.TextSize = new System.Drawing.Size(55, 13);
     this.layoutControlItem22.TextToControlDistance = 8;
     //
     // layoutControlItem24
     //
     this.layoutControlItem24.Control = this.lblSupplier;
     this.layoutControlItem24.CustomizationFormText = "Order Number: ";
     this.layoutControlItem24.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem24.Name = "layoutControlItem38";
     this.layoutControlItem24.Size = new System.Drawing.Size(252, 22);
     this.layoutControlItem24.Text = "Order No.: ";
     this.layoutControlItem24.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem24.TextSize = new System.Drawing.Size(55, 13);
     this.layoutControlItem24.TextToControlDistance = 8;
     //
     // layoutControlItem26
     //
     this.layoutControlItem26.Control = this.lblPOType;
     this.layoutControlItem26.CustomizationFormText = "Order Number: ";
     this.layoutControlItem26.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem26.Name = "layoutControlItem38";
     this.layoutControlItem26.Size = new System.Drawing.Size(252, 22);
     this.layoutControlItem26.Text = "Order No.: ";
     this.layoutControlItem26.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem26.TextSize = new System.Drawing.Size(55, 13);
     this.layoutControlItem26.TextToControlDistance = 8;
     //
     // layoutControlItem28
     //
     this.layoutControlItem28.Control = this.lblTotalValue;
     this.layoutControlItem28.CustomizationFormText = "layoutControlItem27";
     this.layoutControlItem28.Location = new System.Drawing.Point(0, 658);
     this.layoutControlItem28.Name = "layoutControlItem27";
     this.layoutControlItem28.Size = new System.Drawing.Size(1264, 17);
     this.layoutControlItem28.Text = "layoutControlItem27";
     this.layoutControlItem28.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem28.TextSize = new System.Drawing.Size(99, 13);
     this.layoutControlItem28.TextToControlDistance = 5;
     //
     // layoutControlItem30
     //
     this.layoutControlItem30.Control = this.lblNBE;
     this.layoutControlItem30.CustomizationFormText = "layoutControlItem27";
     this.layoutControlItem30.Location = new System.Drawing.Point(0, 658);
     this.layoutControlItem30.Name = "layoutControlItem27";
     this.layoutControlItem30.Size = new System.Drawing.Size(1264, 17);
     this.layoutControlItem30.Text = "layoutControlItem27";
     this.layoutControlItem30.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem30.TextSize = new System.Drawing.Size(99, 13);
     this.layoutControlItem30.TextToControlDistance = 5;
     //
     // layoutControlItem32
     //
     this.layoutControlItem32.Control = this.lblRemainingValue;
     this.layoutControlItem32.CustomizationFormText = "layoutControlItem27";
     this.layoutControlItem32.Location = new System.Drawing.Point(0, 658);
     this.layoutControlItem32.Name = "layoutControlItem27";
     this.layoutControlItem32.Size = new System.Drawing.Size(1264, 17);
     this.layoutControlItem32.Text = "layoutControlItem27";
     this.layoutControlItem32.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem32.TextSize = new System.Drawing.Size(99, 13);
     this.layoutControlItem32.TextToControlDistance = 5;
     //
     // layoutControlItem34
     //
     this.layoutControlItem34.Control = this.lblInsurance;
     this.layoutControlItem34.CustomizationFormText = "layoutControlItem27";
     this.layoutControlItem34.Location = new System.Drawing.Point(0, 658);
     this.layoutControlItem34.Name = "layoutControlItem27";
     this.layoutControlItem34.Size = new System.Drawing.Size(1264, 17);
     this.layoutControlItem34.Text = "layoutControlItem27";
     this.layoutControlItem34.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem34.TextSize = new System.Drawing.Size(99, 13);
     this.layoutControlItem34.TextToControlDistance = 5;
     //
     // layoutControlItem36
     //
     this.layoutControlItem36.Control = this.lblOrderDate;
     this.layoutControlItem36.CustomizationFormText = "layoutControlItem27";
     this.layoutControlItem36.Location = new System.Drawing.Point(0, 658);
     this.layoutControlItem36.Name = "layoutControlItem27";
     this.layoutControlItem36.Size = new System.Drawing.Size(1264, 17);
     this.layoutControlItem36.Text = "layoutControlItem27";
     this.layoutControlItem36.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem36.TextSize = new System.Drawing.Size(99, 13);
     this.layoutControlItem36.TextToControlDistance = 5;
     //
     // layoutControlItem39
     //
     this.layoutControlItem39.Control = this.lblPOStatus;
     this.layoutControlItem39.CustomizationFormText = "layoutControlItem27";
     this.layoutControlItem39.Location = new System.Drawing.Point(0, 658);
     this.layoutControlItem39.Name = "layoutControlItem27";
     this.layoutControlItem39.Size = new System.Drawing.Size(1264, 17);
     this.layoutControlItem39.Text = "layoutControlItem27";
     this.layoutControlItem39.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem39.TextSize = new System.Drawing.Size(99, 13);
     this.layoutControlItem39.TextToControlDistance = 5;
     //
     // layoutControlItem41
     //
     this.layoutControlItem41.Control = this.lblSyncDate;
     this.layoutControlItem41.CustomizationFormText = "layoutControlItem37";
     this.layoutControlItem41.Location = new System.Drawing.Point(0, 641);
     this.layoutControlItem41.Name = "layoutControlItem37";
     this.layoutControlItem41.Size = new System.Drawing.Size(1264, 17);
     this.layoutControlItem41.Text = "layoutControlItem37";
     this.layoutControlItem41.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem41.TextSize = new System.Drawing.Size(99, 13);
     this.layoutControlItem41.TextToControlDistance = 5;
     //
     // layoutControlItem43
     //
     this.layoutControlItem43.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem43.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem43.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem43.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem43.Control = this.lblPaymentType;
     this.layoutControlItem43.CustomizationFormText = "Ref No:";
     this.layoutControlItem43.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem43.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem43.MinSize = new System.Drawing.Size(46, 20);
     this.layoutControlItem43.Name = "layoutControlItem23";
     this.layoutControlItem43.Size = new System.Drawing.Size(210, 20);
     this.layoutControlItem43.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem43.Text = "Ref No:";
     this.layoutControlItem43.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem43.TextSize = new System.Drawing.Size(39, 13);
     this.layoutControlItem43.TextToControlDistance = 77;
     //
     // layoutControlItem45
     //
     this.layoutControlItem45.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem45.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem45.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem45.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem45.Control = this.lblShipper;
     this.layoutControlItem45.CustomizationFormText = "Ref No:";
     this.layoutControlItem45.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem45.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem45.MinSize = new System.Drawing.Size(46, 20);
     this.layoutControlItem45.Name = "layoutControlItem23";
     this.layoutControlItem45.Size = new System.Drawing.Size(210, 20);
     this.layoutControlItem45.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem45.Text = "Ref No:";
     this.layoutControlItem45.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem45.TextSize = new System.Drawing.Size(39, 13);
     this.layoutControlItem45.TextToControlDistance = 77;
     //
     // layoutControlItem47
     //
     this.layoutControlItem47.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem47.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem47.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem47.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem47.Control = this.lblLetterNo;
     this.layoutControlItem47.CustomizationFormText = "layoutControlItem27";
     this.layoutControlItem47.Location = new System.Drawing.Point(426, 0);
     this.layoutControlItem47.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem47.MinSize = new System.Drawing.Size(54, 20);
     this.layoutControlItem47.Name = "layoutControlItem27";
     this.layoutControlItem47.Size = new System.Drawing.Size(291, 20);
     this.layoutControlItem47.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem47.Text = "PO Type:";
     this.layoutControlItem47.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem47.TextSize = new System.Drawing.Size(49, 13);
     this.layoutControlItem47.TextToControlDistance = 16;
     //
     // layoutControlItem49
     //
     this.layoutControlItem49.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem49.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem49.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem49.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem49.Control = this.lblPOBy;
     this.layoutControlItem49.CustomizationFormText = "layoutControlItem27";
     this.layoutControlItem49.Location = new System.Drawing.Point(426, 0);
     this.layoutControlItem49.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem49.MinSize = new System.Drawing.Size(54, 20);
     this.layoutControlItem49.Name = "layoutControlItem27";
     this.layoutControlItem49.Size = new System.Drawing.Size(291, 20);
     this.layoutControlItem49.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem49.Text = "PO Type:";
     this.layoutControlItem49.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem49.TextSize = new System.Drawing.Size(49, 13);
     this.layoutControlItem49.TextToControlDistance = 16;
     //
     // PurchaseOrderForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1284, 695);
     this.Controls.Add(this.layoutControl1);
     this.Name = "PurchaseOrderForm";
     this.Padding = new System.Windows.Forms.Padding(2);
     this.Text = "Purchase Order Form";
     this.Load += new System.EventHandler(this.OrderForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.btnEditInvoice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtFilter.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TabOrderTabs)).EndInit();
     this.TabOrderTabs.ResumeLayout(false);
     this.InvoicesTab.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     this.layoutControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridInvoice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridInvoiceView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     this.tabPoDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl3)).EndInit();
     this.layoutControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdPoDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPoDetailView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLkEditOrderType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrderView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LayoutSelectedOrderDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem44)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem48)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem42)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem33)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem50)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem46)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LayoutEmptyDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem26)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem34)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem41)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem43)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem45)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem47)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem49)).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(frmTonKho));
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.colSo_Luong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.rptMayTinh = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiXem = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSua = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.txtKhoHang = new DevExpress.XtraEditors.GridLookUpEdit();
     this.kHOHANGBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsTonKho = new Do_An_Quan_Ly_Kho.TonKho.DS.dsTonKho();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMa_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Kho1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.tONKHOBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gbList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colTen_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMa_Hang_Hoa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDon_Vi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMa_Kho_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNhom_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Nhom_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.tON_KHOTableAdapter = new Do_An_Quan_Ly_Kho.TonKho.DS.dsTonKhoTableAdapters.TON_KHOTableAdapter();
     this.kHO_HANGTableAdapter = new Do_An_Quan_Ly_Kho.TonKho.DS.dsTonKhoTableAdapters.KHO_HANGTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kHOHANGBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsTonKho)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tONKHOBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     this.SuspendLayout();
     //
     // colSo_Luong
     //
     this.colSo_Luong.Caption = "Số Lượng";
     this.colSo_Luong.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong.FieldName = "So_Luong";
     this.colSo_Luong.Name = "colSo_Luong";
     this.colSo_Luong.OptionsColumn.ReadOnly = true;
     this.colSo_Luong.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong.SummaryItem.DisplayFormat = "{0:##,##0.###}";
     this.colSo_Luong.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colSo_Luong.Visible = true;
     this.colSo_Luong.VisibleIndex = 3;
     this.colSo_Luong.Width = 109;
     //
     // rptMayTinh
     //
     this.rptMayTinh.AutoHeight = false;
     this.rptMayTinh.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinh.DisplayFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.EditFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.Name = "rptMayTinh";
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiXem,
     this.bbiSua,
     this.bbiXoa,
     this.bbiDong});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 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(49, 160);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiSua),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXoa),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong)});
     this.bar2.OptionsBar.AllowDelete = true;
     this.bar2.OptionsBar.DrawSizeGrip = true;
     this.bar2.Text = "Main menu";
     //
     // bbiXem
     //
     this.bbiXem.Caption = "Xem";
     this.bbiXem.Id = 0;
     this.bbiXem.ImageIndex = 35;
     this.bbiXem.Name = "bbiXem";
     this.bbiXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXem_ItemClick);
     //
     // bbiSua
     //
     this.bbiSua.Caption = "Sửa";
     this.bbiSua.Id = 1;
     this.bbiSua.ImageIndex = 29;
     this.bbiSua.Name = "bbiSua";
     this.bbiSua.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // bbiXoa
     //
     this.bbiXoa.Caption = "Xóa";
     this.bbiXoa.Id = 2;
     this.bbiXoa.ImageIndex = 16;
     this.bbiXoa.Name = "bbiXoa";
     this.bbiXoa.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 6;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.txtKhoHang);
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 26);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1102, 633);
     this.layoutControl1.TabIndex = 4;
     this.layoutControl1.Text = "layoutControl1";
     //
     // txtKhoHang
     //
     this.txtKhoHang.Location = new System.Drawing.Point(51, 2);
     this.txtKhoHang.MenuManager = this.bm;
     this.txtKhoHang.Name = "txtKhoHang";
     this.txtKhoHang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtKhoHang.Properties.DataSource = this.kHOHANGBindingSource;
     this.txtKhoHang.Properties.DisplayMember = "Ten_Kho";
     this.txtKhoHang.Properties.NullText = "";
     this.txtKhoHang.Properties.NullValuePrompt = "(Kho Hàng)";
     this.txtKhoHang.Properties.ValueMember = "Ma_Kho";
     this.txtKhoHang.Properties.View = this.gridLookUpEdit1View;
     this.txtKhoHang.Size = new System.Drawing.Size(147, 20);
     this.txtKhoHang.StyleController = this.layoutControl1;
     this.txtKhoHang.TabIndex = 10;
     this.txtKhoHang.EditValueChanged += new System.EventHandler(this.txtKhoHang_EditValueChanged);
     //
     // kHOHANGBindingSource
     //
     this.kHOHANGBindingSource.DataMember = "KHO_HANG";
     this.kHOHANGBindingSource.DataSource = this.dsTonKho;
     //
     // dsTonKho
     //
     this.dsTonKho.DataSetName = "dsTonKho";
     this.dsTonKho.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMa_Kho,
     this.colTen_Kho1});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colMa_Kho
     //
     this.colMa_Kho.Caption = "Mã Kho";
     this.colMa_Kho.FieldName = "Ma_Kho";
     this.colMa_Kho.Name = "colMa_Kho";
     this.colMa_Kho.OptionsColumn.ReadOnly = true;
     this.colMa_Kho.Visible = true;
     this.colMa_Kho.VisibleIndex = 0;
     //
     // colTen_Kho1
     //
     this.colTen_Kho1.Caption = "Tên Kho";
     this.colTen_Kho1.FieldName = "Ten_Kho";
     this.colTen_Kho1.Name = "colTen_Kho1";
     this.colTen_Kho1.OptionsColumn.ReadOnly = true;
     this.colTen_Kho1.Visible = true;
     this.colTen_Kho1.VisibleIndex = 1;
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(202, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(898, 20);
     this.layoutControl2.TabIndex = 8;
     this.layoutControl2.Text = "layoutControl2";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(898, 20);
     this.layoutControlGroup2.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // gcList
     //
     this.gcList.DataSource = this.tONKHOBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 26);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rptMayTinh});
     this.gcList.Size = new System.Drawing.Size(1098, 605);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // tONKHOBindingSource
     //
     this.tONKHOBindingSource.DataMember = "TON_KHO";
     this.tONKHOBindingSource.DataSource = this.dsTonKho;
     //
     // gbList
     //
     this.gbList.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.gbList.Appearance.GroupRow.ForeColor = System.Drawing.Color.Red;
     this.gbList.Appearance.GroupRow.Options.UseFont = true;
     this.gbList.Appearance.GroupRow.Options.UseForeColor = true;
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colTen_Kho,
     this.colMa_Hang_Hoa,
     this.colTen_Hang,
     this.colDon_Vi,
     this.colMa_Kho_Hang,
     this.colNhom_Hang,
     this.colTen_Nhom_Hang,
     this.colSo_Luong});
     this.gbList.CustomizationFormBounds = new System.Drawing.Rectangle(854, 328, 216, 199);
     styleFormatCondition1.Appearance.ForeColor = System.Drawing.Color.Red;
     styleFormatCondition1.Appearance.Options.UseForeColor = true;
     styleFormatCondition1.Column = this.colSo_Luong;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "Iif([So_Luong] < 0, True ,False )";
     this.gbList.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.gbList.GridControl = this.gcList;
     this.gbList.GroupCount = 1;
     this.gbList.GroupPanelText = "Kéo cột và thả vào đây để nhóm dữ liệu";
     this.gbList.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong", null, " - Số Lượng: {0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong", this.colSo_Luong, "{0:##,##0.###}")});
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsBehavior.AutoExpandAllGroups = true;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colTen_Kho, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     //
     // colTen_Kho
     //
     this.colTen_Kho.Caption = "Kho Hàng";
     this.colTen_Kho.FieldName = "Ten_Kho";
     this.colTen_Kho.Name = "colTen_Kho";
     this.colTen_Kho.OptionsColumn.ReadOnly = true;
     this.colTen_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colMa_Hang_Hoa
     //
     this.colMa_Hang_Hoa.Caption = "Mã Hàng";
     this.colMa_Hang_Hoa.FieldName = "Ma_Hang_Hoa";
     this.colMa_Hang_Hoa.Name = "colMa_Hang_Hoa";
     this.colMa_Hang_Hoa.OptionsColumn.ReadOnly = true;
     this.colMa_Hang_Hoa.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Hang_Hoa.Visible = true;
     this.colMa_Hang_Hoa.VisibleIndex = 0;
     this.colMa_Hang_Hoa.Width = 154;
     //
     // colTen_Hang
     //
     this.colTen_Hang.Caption = "Tên Hàng";
     this.colTen_Hang.FieldName = "Ten_Hang";
     this.colTen_Hang.Name = "colTen_Hang";
     this.colTen_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Hang.Visible = true;
     this.colTen_Hang.VisibleIndex = 1;
     this.colTen_Hang.Width = 354;
     //
     // colDon_Vi
     //
     this.colDon_Vi.Caption = "Đơn Vị";
     this.colDon_Vi.FieldName = "Don_Vi";
     this.colDon_Vi.Name = "colDon_Vi";
     this.colDon_Vi.OptionsColumn.ReadOnly = true;
     this.colDon_Vi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDon_Vi.Visible = true;
     this.colDon_Vi.VisibleIndex = 2;
     this.colDon_Vi.Width = 132;
     //
     // colMa_Kho_Hang
     //
     this.colMa_Kho_Hang.Caption = "Mã Kho";
     this.colMa_Kho_Hang.FieldName = "Ma_Kho_Hang";
     this.colMa_Kho_Hang.Name = "colMa_Kho_Hang";
     this.colMa_Kho_Hang.OptionsColumn.ReadOnly = true;
     this.colMa_Kho_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colNhom_Hang
     //
     this.colNhom_Hang.Caption = "Mã Nhóm Hàng";
     this.colNhom_Hang.FieldName = "Nhom_Hang";
     this.colNhom_Hang.Name = "colNhom_Hang";
     this.colNhom_Hang.OptionsColumn.ReadOnly = true;
     this.colNhom_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colTen_Nhom_Hang
     //
     this.colTen_Nhom_Hang.Caption = "Nhóm Hàng";
     this.colTen_Nhom_Hang.FieldName = "Ten_Nhom_Hang";
     this.colTen_Nhom_Hang.Name = "colTen_Nhom_Hang";
     this.colTen_Nhom_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Nhom_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Nhom_Hang.Visible = true;
     this.colTen_Nhom_Hang.VisibleIndex = 4;
     this.colTen_Nhom_Hang.Width = 318;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem5,
     this.layoutControlItem2});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1102, 633);
     this.layoutControlGroup1.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1102, 609);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(200, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(902, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.txtKhoHang;
     this.layoutControlItem2.CustomizationFormText = "Kho hàng";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(250, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(103, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(200, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Kho hàng";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(45, 13);
     //
     // tON_KHOTableAdapter
     //
     this.tON_KHOTableAdapter.ClearBeforeFill = true;
     //
     // kHO_HANGTableAdapter
     //
     this.kHO_HANGTableAdapter.ClearBeforeFill = true;
     //
     // TonKho
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1102, 659);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "TonKho";
     this.Text = "Tồn Kho";
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kHOHANGBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsTonKho)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tONKHOBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).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.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule3 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule4 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule5 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule6 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RDM_ReceiptAddDlg));
     this.dataLayoutControlMain = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.lueBaseProductId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSBaseProductId = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnClear = new DevExpress.XtraEditors.SimpleButton();
     this.tbQun = new DevExpress.XtraEditors.TextEdit();
     this.deRDM_Date = new DevExpress.XtraEditors.DateEdit();
     this.lueRDM_Promo_Type_Id = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSRDM_Promo_Type = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lueRouteNumber = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSRoute = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridLookUpEdit1View = 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.tbOpenComment = new DevExpress.XtraEditors.MemoEdit();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.tbReceiptNo = new DevExpress.XtraEditors.TextEdit();
     this.layoutControlGroupMain = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.ItemForAssetplaceId = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.dxValidationProviderMain = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControlMain)).BeginInit();
     this.dataLayoutControlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueBaseProductId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSBaseProductId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbQun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deRDM_Date.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deRDM_Date.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueRDM_Promo_Type_Id.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSRDM_Promo_Type)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueRouteNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSRoute)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbOpenComment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbReceiptNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroupMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForAssetplaceId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).BeginInit();
     this.SuspendLayout();
     //
     // dataLayoutControlMain
     //
     this.dataLayoutControlMain.Controls.Add(this.lueBaseProductId);
     this.dataLayoutControlMain.Controls.Add(this.btnClear);
     this.dataLayoutControlMain.Controls.Add(this.tbQun);
     this.dataLayoutControlMain.Controls.Add(this.deRDM_Date);
     this.dataLayoutControlMain.Controls.Add(this.lueRDM_Promo_Type_Id);
     this.dataLayoutControlMain.Controls.Add(this.lueRouteNumber);
     this.dataLayoutControlMain.Controls.Add(this.tbOpenComment);
     this.dataLayoutControlMain.Controls.Add(this.btnSave);
     this.dataLayoutControlMain.Controls.Add(this.btnCancel);
     this.dataLayoutControlMain.Controls.Add(this.tbReceiptNo);
     this.dataLayoutControlMain.DataMember = "TblAssets";
     this.dataLayoutControlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataLayoutControlMain.Location = new System.Drawing.Point(0, 0);
     this.dataLayoutControlMain.Name = "dataLayoutControlMain";
     this.dataLayoutControlMain.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(737, 146, 330, 510);
     this.dataLayoutControlMain.OptionsView.RightToLeftMirroringApplied = true;
     this.dataLayoutControlMain.Root = this.layoutControlGroupMain;
     this.dataLayoutControlMain.Size = new System.Drawing.Size(439, 285);
     this.dataLayoutControlMain.TabIndex = 0;
     this.dataLayoutControlMain.Text = "dataLayoutControl1";
     //
     // lueBaseProductId
     //
     this.lueBaseProductId.Location = new System.Drawing.Point(90, 110);
     this.lueBaseProductId.Name = "lueBaseProductId";
     this.lueBaseProductId.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
     this.lueBaseProductId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueBaseProductId.Properties.DataSource = this.LSMSBaseProductId;
     this.lueBaseProductId.Properties.DisplayMember = "BaseProduct";
     this.lueBaseProductId.Properties.NullText = "";
     this.lueBaseProductId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueBaseProductId.Properties.ValueMember = "BaseProductId";
     this.lueBaseProductId.Properties.View = this.gridView2;
     this.lueBaseProductId.Size = new System.Drawing.Size(337, 20);
     this.lueBaseProductId.StyleController = this.dataLayoutControlMain;
     this.lueBaseProductId.TabIndex = 35;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     conditionValidationRule1.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProviderMain.SetValidationRule(this.lueBaseProductId, conditionValidationRule1);
     //
     // LSMSBaseProductId
     //
     this.LSMSBaseProductId.ElementType = typeof(NICSQLTools.Data.Linq.PRD_BaseProduct);
     this.LSMSBaseProductId.KeyExpression = "[BaseProductId]";
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn8});
     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 = "Base Product";
     this.gridColumn8.FieldName = "BaseProduct";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 0;
     //
     // btnClear
     //
     this.btnClear.Image = global::NICSQLTools.Properties.Resources.clear_16x16;
     this.btnClear.Location = new System.Drawing.Point(277, 224);
     this.btnClear.Name = "btnClear";
     this.btnClear.Size = new System.Drawing.Size(150, 22);
     this.btnClear.StyleController = this.dataLayoutControlMain;
     this.btnClear.TabIndex = 34;
     this.btnClear.Text = "Clear";
     this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
     //
     // tbQun
     //
     this.tbQun.Location = new System.Drawing.Point(90, 134);
     this.tbQun.Name = "tbQun";
     this.tbQun.Properties.DisplayFormat.FormatString = "n2";
     this.tbQun.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbQun.Properties.EditFormat.FormatString = "n2";
     this.tbQun.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbQun.Properties.Mask.EditMask = "\\d+";
     this.tbQun.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbQun.Properties.Mask.ShowPlaceHolders = false;
     this.tbQun.Size = new System.Drawing.Size(337, 20);
     this.tbQun.StyleController = this.dataLayoutControlMain;
     this.tbQun.TabIndex = 33;
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "This value is not valid";
     conditionValidationRule2.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProviderMain.SetValidationRule(this.tbQun, conditionValidationRule2);
     //
     // deRDM_Date
     //
     this.deRDM_Date.EditValue = null;
     this.deRDM_Date.Location = new System.Drawing.Point(90, 38);
     this.deRDM_Date.Name = "deRDM_Date";
     this.deRDM_Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deRDM_Date.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deRDM_Date.Size = new System.Drawing.Size(337, 20);
     this.deRDM_Date.StyleController = this.dataLayoutControlMain;
     this.deRDM_Date.TabIndex = 32;
     conditionValidationRule3.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule3.ErrorText = "This value is not valid";
     conditionValidationRule3.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProviderMain.SetValidationRule(this.deRDM_Date, conditionValidationRule3);
     //
     // lueRDM_Promo_Type_Id
     //
     this.lueRDM_Promo_Type_Id.Location = new System.Drawing.Point(90, 86);
     this.lueRDM_Promo_Type_Id.Name = "lueRDM_Promo_Type_Id";
     this.lueRDM_Promo_Type_Id.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
     this.lueRDM_Promo_Type_Id.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueRDM_Promo_Type_Id.Properties.DataSource = this.LSMSRDM_Promo_Type;
     this.lueRDM_Promo_Type_Id.Properties.DisplayMember = "RDM_Promo_Type1";
     this.lueRDM_Promo_Type_Id.Properties.NullText = "";
     this.lueRDM_Promo_Type_Id.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueRDM_Promo_Type_Id.Properties.ValueMember = "RDM_Promo_Type_Id";
     this.lueRDM_Promo_Type_Id.Properties.View = this.gridView1;
     this.lueRDM_Promo_Type_Id.Size = new System.Drawing.Size(337, 20);
     this.lueRDM_Promo_Type_Id.StyleController = this.dataLayoutControlMain;
     this.lueRDM_Promo_Type_Id.TabIndex = 31;
     conditionValidationRule4.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule4.ErrorText = "This value is not valid";
     conditionValidationRule4.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProviderMain.SetValidationRule(this.lueRDM_Promo_Type_Id, conditionValidationRule4);
     //
     // LSMSRDM_Promo_Type
     //
     this.LSMSRDM_Promo_Type.ElementType = typeof(NICSQLTools.Data.Linq.RDM_Promo_Type);
     this.LSMSRDM_Promo_Type.KeyExpression = "[RDM_Promo_Type_Id]";
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn6,
     this.gridColumn7});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = 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 = "Type";
     this.gridColumn6.FieldName = "RDM_Promo_Type1";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.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 = "Year";
     this.gridColumn7.FieldName = "YearNum";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 1;
     //
     // lueRouteNumber
     //
     this.lueRouteNumber.Location = new System.Drawing.Point(90, 62);
     this.lueRouteNumber.Name = "lueRouteNumber";
     this.lueRouteNumber.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
     this.lueRouteNumber.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueRouteNumber.Properties.DataSource = this.LSMSRoute;
     this.lueRouteNumber.Properties.DisplayMember = "Route_Number";
     this.lueRouteNumber.Properties.NullText = "";
     this.lueRouteNumber.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueRouteNumber.Properties.ValueMember = "Route_Number";
     this.lueRouteNumber.Properties.View = this.gridLookUpEdit1View;
     this.lueRouteNumber.Size = new System.Drawing.Size(337, 20);
     this.lueRouteNumber.StyleController = this.dataLayoutControlMain;
     this.lueRouteNumber.TabIndex = 30;
     conditionValidationRule5.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule5.ErrorText = "This value is not valid";
     conditionValidationRule5.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProviderMain.SetValidationRule(this.lueRouteNumber, conditionValidationRule5);
     //
     // LSMSRoute
     //
     this.LSMSRoute.ElementType = typeof(NICSQLTools.Data.Linq.vRDM_Route_ByUser);
     this.LSMSRoute.KeyExpression = "[Route_Number], [UserId]";
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.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 = "Route Number";
     this.gridColumn1.FieldName = "Route_Number";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 79;
     //
     // 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 = "Route Name";
     this.gridColumn2.FieldName = "Route_Name";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // 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 = "Supervisor";
     this.gridColumn3.FieldName = "Supervisor";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // 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 = "Brand Route";
     this.gridColumn4.FieldName = "Brand_Route";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // 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 = "Sales District 2";
     this.gridColumn5.FieldName = "Sales_District_2";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 80;
     //
     // tbOpenComment
     //
     this.tbOpenComment.Location = new System.Drawing.Point(90, 158);
     this.tbOpenComment.Name = "tbOpenComment";
     this.tbOpenComment.Properties.MaxLength = 255;
     this.tbOpenComment.Size = new System.Drawing.Size(337, 62);
     this.tbOpenComment.StyleController = this.dataLayoutControlMain;
     this.tbOpenComment.TabIndex = 24;
     //
     // btnSave
     //
     this.btnSave.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.btnSave.Appearance.Options.UseFont = true;
     this.btnSave.Image = global::NICSQLTools.Properties.Resources.apply_16x16;
     this.btnSave.Location = new System.Drawing.Point(12, 224);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(261, 49);
     this.btnSave.StyleController = this.dataLayoutControlMain;
     this.btnSave.TabIndex = 17;
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.btnCancel.Appearance.Options.UseFont = true;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Image = global::NICSQLTools.Properties.Resources.cancel_16x16;
     this.btnCancel.Location = new System.Drawing.Point(277, 250);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(150, 23);
     this.btnCancel.StyleController = this.dataLayoutControlMain;
     this.btnCancel.TabIndex = 16;
     this.btnCancel.Text = "Cancel";
     //
     // tbReceiptNo
     //
     this.tbReceiptNo.EnterMoveNextControl = true;
     this.tbReceiptNo.Location = new System.Drawing.Point(90, 12);
     this.tbReceiptNo.Name = "tbReceiptNo";
     this.tbReceiptNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.tbReceiptNo.Properties.Appearance.Options.UseFont = true;
     this.tbReceiptNo.Properties.Appearance.Options.UseTextOptions = true;
     this.tbReceiptNo.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.tbReceiptNo.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.tbReceiptNo.Size = new System.Drawing.Size(337, 22);
     this.tbReceiptNo.StyleController = this.dataLayoutControlMain;
     this.tbReceiptNo.TabIndex = 11;
     conditionValidationRule6.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule6.ErrorText = "This value is not valid";
     conditionValidationRule6.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProviderMain.SetValidationRule(this.tbReceiptNo, conditionValidationRule6);
     //
     // layoutControlGroupMain
     //
     this.layoutControlGroupMain.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroupMain.GroupBordersVisible = false;
     this.layoutControlGroupMain.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.layoutControlGroupMain.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroupMain.Name = "Root";
     this.layoutControlGroupMain.Size = new System.Drawing.Size(439, 285);
     this.layoutControlGroupMain.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.AllowDrawBackground = false;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.ItemForAssetplaceId,
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem6,
     this.layoutControlItem8,
     this.layoutControlItem13,
     this.layoutControlItem14,
     this.layoutControlItem9,
     this.layoutControlItem3,
     this.layoutControlItem4});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "autoGeneratedGroup0";
     this.layoutControlGroup2.Size = new System.Drawing.Size(419, 265);
     //
     // ItemForAssetplaceId
     //
     this.ItemForAssetplaceId.Control = this.tbReceiptNo;
     this.ItemForAssetplaceId.Location = new System.Drawing.Point(0, 0);
     this.ItemForAssetplaceId.Name = "ItemForAssetplaceId";
     this.ItemForAssetplaceId.Size = new System.Drawing.Size(419, 26);
     this.ItemForAssetplaceId.Text = "Receipt No";
     this.ItemForAssetplaceId.TextSize = new System.Drawing.Size(75, 13);
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.btnCancel;
     this.layoutControlItem1.Location = new System.Drawing.Point(265, 238);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(154, 27);
     this.layoutControlItem1.Text = "Cancel";
     this.layoutControlItem1.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btnSave;
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 212);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(62, 27);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(265, 53);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Save";
     this.layoutControlItem2.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.lueRouteNumber;
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 50);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(419, 24);
     this.layoutControlItem6.Text = "Route";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(75, 13);
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.lueRDM_Promo_Type_Id;
     this.layoutControlItem8.Location = new System.Drawing.Point(0, 74);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(419, 24);
     this.layoutControlItem8.Text = "Promotion Type";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(75, 13);
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.Control = this.deRDM_Date;
     this.layoutControlItem13.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(419, 24);
     this.layoutControlItem13.Text = "Date";
     this.layoutControlItem13.TextSize = new System.Drawing.Size(75, 13);
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.Control = this.tbQun;
     this.layoutControlItem14.Location = new System.Drawing.Point(0, 122);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(419, 24);
     this.layoutControlItem14.Text = "Quantity";
     this.layoutControlItem14.TextSize = new System.Drawing.Size(75, 13);
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem9.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.layoutControlItem9.Control = this.tbOpenComment;
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 146);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(419, 66);
     this.layoutControlItem9.Text = "Comment";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(75, 13);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnClear;
     this.layoutControlItem3.Location = new System.Drawing.Point(265, 212);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(154, 26);
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.lueBaseProductId;
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 98);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(419, 24);
     this.layoutControlItem4.Text = "Product";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(75, 13);
     //
     // RDM_ReceiptAddDlg
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(439, 285);
     this.Controls.Add(this.dataLayoutControlMain);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "RDM_ReceiptAddDlg";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Editor";
     this.Load += new System.EventHandler(this.Dlg_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControlMain)).EndInit();
     this.dataLayoutControlMain.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lueBaseProductId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSBaseProductId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbQun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deRDM_Date.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deRDM_Date.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueRDM_Promo_Type_Id.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSRDM_Promo_Type)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueRouteNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSRoute)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbOpenComment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbReceiptNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroupMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForAssetplaceId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).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.lblPhong = new System.Windows.Forms.Label();
     this.glkPhong = new DevExpress.XtraEditors.GridLookUpEdit();
     this.glkvPhong = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMaPhong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMaPhieu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGia = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGioNhan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grpDV = new DevExpress.XtraEditors.GroupControl();
     this.lblGioTinh = new System.Windows.Forms.DataGridView();
     this.colNgayThue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDichVu = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDonGia = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colSoLuong = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colThanhTien = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.lblNgayNhan = new System.Windows.Forms.Label();
     this.lblNgayTra = new System.Windows.Forms.Label();
     this.grpPT = new DevExpress.XtraEditors.GroupControl();
     this.grdPT = new System.Windows.Forms.DataGridView();
     this.colMaPT = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colPhuThu = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colPhanTramPThu = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colChonPThu = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.grpCK = new DevExpress.XtraEditors.GroupControl();
     this.grdCK = new System.Windows.Forms.DataGridView();
     this.colMaCK = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colChietKhau = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colPhanTram = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colChon = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.label4 = new System.Windows.Forms.Label();
     this.txtTongTien = new System.Windows.Forms.TextBox();
     this.txtPhuThu = new System.Windows.Forms.TextBox();
     this.lblPT = new System.Windows.Forms.Label();
     this.txtChietKhau = new System.Windows.Forms.TextBox();
     this.lblCK = new System.Windows.Forms.Label();
     this.lblDonGia = new System.Windows.Forms.Label();
     this.lblGia = new System.Windows.Forms.Label();
     this.groupControl = new DevExpress.XtraEditors.GroupControl();
     this.txtGioiTinh = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.txtEmail = new System.Windows.Forms.TextBox();
     this.lblEmail = new System.Windows.Forms.Label();
     this.txtCMND = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.txtHoTen = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.txtLKH = new System.Windows.Forms.TextBox();
     this.lblLoaiKH = new System.Windows.Forms.Label();
     this.txtMaKH = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.btnThanhTien = new DevExpress.XtraEditors.SimpleButton();
     this.txtDichVu = new System.Windows.Forms.TextBox();
     this.lblDV = new System.Windows.Forms.Label();
     this.dtpNgayTra = new System.Windows.Forms.DateTimePicker();
     this.dtpNgayNhan = new System.Windows.Forms.DateTimePicker();
     this.btnThanhToan = new DevExpress.XtraEditors.SimpleButton();
     this.txtTienNhan = new System.Windows.Forms.TextBox();
     this.label9 = new System.Windows.Forms.Label();
     this.txtTienThua = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.lblSoHD = new System.Windows.Forms.Label();
     this.lblMaHD = new System.Windows.Forms.Label();
     this.btnMakeNew = new DevExpress.XtraEditors.SimpleButton();
     this.lblMaPhieu = new System.Windows.Forms.Label();
     this.lblPNP = new System.Windows.Forms.Label();
     this.lblSoNgay = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.btnHoaDon = new DevExpress.XtraEditors.SimpleButton();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.glkPhong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.glkvPhong)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpDV)).BeginInit();
     this.grpDV.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lblGioTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPT)).BeginInit();
     this.grpPT.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdPT)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCK)).BeginInit();
     this.grpCK.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdCK)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl)).BeginInit();
     this.groupControl.SuspendLayout();
     this.SuspendLayout();
     //
     // lblPhong
     //
     this.lblPhong.AutoSize = true;
     this.lblPhong.Location = new System.Drawing.Point(287, 24);
     this.lblPhong.Name = "lblPhong";
     this.lblPhong.Size = new System.Drawing.Size(41, 13);
     this.lblPhong.TabIndex = 0;
     this.lblPhong.Text = "Phòng:";
     //
     // glkPhong
     //
     this.glkPhong.EditValue = "";
     this.glkPhong.Location = new System.Drawing.Point(334, 17);
     this.glkPhong.Name = "glkPhong";
     this.glkPhong.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.glkPhong.Properties.Appearance.Options.UseFont = true;
     this.glkPhong.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.glkPhong.Properties.View = this.glkvPhong;
     this.glkPhong.Size = new System.Drawing.Size(162, 30);
     this.glkPhong.TabIndex = 1;
     this.glkPhong.EditValueChanged += new System.EventHandler(this.glookupPhong_EditValueChanged);
     //
     // glkvPhong
     //
     this.glkvPhong.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMaPhong,
     this.colMaPhieu,
     this.colGia,
     this.colGioNhan});
     this.glkvPhong.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.glkvPhong.Name = "glkvPhong";
     this.glkvPhong.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.glkvPhong.OptionsView.ShowGroupPanel = false;
     //
     // colMaPhong
     //
     this.colMaPhong.Caption = "Mã phòng";
     this.colMaPhong.FieldName = "MaPhong";
     this.colMaPhong.Name = "colMaPhong";
     this.colMaPhong.Visible = true;
     this.colMaPhong.VisibleIndex = 1;
     this.colMaPhong.Width = 255;
     //
     // colMaPhieu
     //
     this.colMaPhieu.Caption = "Mã phiếu";
     this.colMaPhieu.FieldName = "MaPhieu";
     this.colMaPhieu.Name = "colMaPhieu";
     this.colMaPhieu.Visible = true;
     this.colMaPhieu.VisibleIndex = 0;
     this.colMaPhieu.Width = 185;
     //
     // colGia
     //
     this.colGia.Caption = "Đơn giá";
     this.colGia.FieldName = "DonGia";
     this.colGia.Name = "colGia";
     this.colGia.Visible = true;
     this.colGia.VisibleIndex = 2;
     this.colGia.Width = 338;
     //
     // colGioNhan
     //
     this.colGioNhan.Caption = "Giờ nhận";
     this.colGioNhan.DisplayFormat.FormatString = "HH:mm dd/MM/yyy";
     this.colGioNhan.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.colGioNhan.FieldName = "GioNhan";
     this.colGioNhan.Name = "colGioNhan";
     this.colGioNhan.Visible = true;
     this.colGioNhan.VisibleIndex = 3;
     this.colGioNhan.Width = 402;
     //
     // grpDV
     //
     this.grpDV.Controls.Add(this.lblGioTinh);
     this.grpDV.Location = new System.Drawing.Point(387, 70);
     this.grpDV.Name = "grpDV";
     this.grpDV.Size = new System.Drawing.Size(350, 228);
     this.grpDV.TabIndex = 3;
     this.grpDV.Text = "Dịch vụ đã sử dụng";
     //
     // lblGioTinh
     //
     this.lblGioTinh.AllowUserToAddRows = false;
     this.lblGioTinh.AllowUserToDeleteRows = false;
     this.lblGioTinh.AllowUserToResizeRows = false;
     this.lblGioTinh.BackgroundColor = System.Drawing.Color.White;
     this.lblGioTinh.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.lblGioTinh.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colNgayThue,
     this.colDichVu,
     this.colDonGia,
     this.colSoLuong,
     this.colThanhTien});
     this.lblGioTinh.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblGioTinh.GridColor = System.Drawing.Color.Black;
     this.lblGioTinh.Location = new System.Drawing.Point(2, 21);
     this.lblGioTinh.Name = "lblGioTinh";
     this.lblGioTinh.ReadOnly = true;
     this.lblGioTinh.RowHeadersVisible = false;
     this.lblGioTinh.Size = new System.Drawing.Size(346, 205);
     this.lblGioTinh.TabIndex = 0;
     //
     // colNgayThue
     //
     this.colNgayThue.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.colNgayThue.DataPropertyName = "NGAYTHUE";
     this.colNgayThue.HeaderText = "Ngày thuê";
     this.colNgayThue.Name = "colNgayThue";
     this.colNgayThue.ReadOnly = true;
     this.colNgayThue.Width = 82;
     //
     // colDichVu
     //
     this.colDichVu.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colDichVu.DataPropertyName = "dichvu";
     this.colDichVu.HeaderText = "Dịch vụ";
     this.colDichVu.Name = "colDichVu";
     this.colDichVu.ReadOnly = true;
     this.colDichVu.Width = 67;
     //
     // colDonGia
     //
     this.colDonGia.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colDonGia.DataPropertyName = "dongia";
     this.colDonGia.HeaderText = "Đơn giá";
     this.colDonGia.Name = "colDonGia";
     this.colDonGia.ReadOnly = true;
     this.colDonGia.Width = 69;
     //
     // colSoLuong
     //
     this.colSoLuong.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colSoLuong.DataPropertyName = "soluong";
     this.colSoLuong.HeaderText = "Số lượng";
     this.colSoLuong.Name = "colSoLuong";
     this.colSoLuong.ReadOnly = true;
     this.colSoLuong.Width = 74;
     //
     // colThanhTien
     //
     this.colThanhTien.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colThanhTien.HeaderText = "Thành tiền";
     this.colThanhTien.Name = "colThanhTien";
     this.colThanhTien.ReadOnly = true;
     this.colThanhTien.Width = 83;
     //
     // lblNgayNhan
     //
     this.lblNgayNhan.AutoSize = true;
     this.lblNgayNhan.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNgayNhan.Location = new System.Drawing.Point(802, 73);
     this.lblNgayNhan.Name = "lblNgayNhan";
     this.lblNgayNhan.Size = new System.Drawing.Size(141, 19);
     this.lblNgayNhan.TabIndex = 5;
     this.lblNgayNhan.Text = "Ngày nhận phòng:";
     //
     // lblNgayTra
     //
     this.lblNgayTra.AutoSize = true;
     this.lblNgayTra.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNgayTra.Location = new System.Drawing.Point(818, 118);
     this.lblNgayTra.Name = "lblNgayTra";
     this.lblNgayTra.Size = new System.Drawing.Size(125, 19);
     this.lblNgayTra.TabIndex = 6;
     this.lblNgayTra.Text = "Ngày trả phòng:";
     //
     // grpPT
     //
     this.grpPT.Controls.Add(this.grdPT);
     this.grpPT.Location = new System.Drawing.Point(26, 323);
     this.grpPT.Name = "grpPT";
     this.grpPT.Size = new System.Drawing.Size(324, 228);
     this.grpPT.TabIndex = 29;
     this.grpPT.Text = "Phụ thu";
     //
     // grdPT
     //
     this.grdPT.AllowUserToResizeRows = false;
     this.grdPT.BackgroundColor = System.Drawing.Color.White;
     this.grdPT.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdPT.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colMaPT,
     this.colPhuThu,
     this.colPhanTramPThu,
     this.colChonPThu});
     this.grdPT.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdPT.GridColor = System.Drawing.Color.Black;
     this.grdPT.Location = new System.Drawing.Point(2, 21);
     this.grdPT.Name = "grdPT";
     this.grdPT.RowHeadersVisible = false;
     this.grdPT.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdPT.Size = new System.Drawing.Size(320, 205);
     this.grdPT.TabIndex = 0;
     this.grdPT.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridPhuThu_CellValueChanged);
     //
     // colMaPT
     //
     this.colMaPT.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colMaPT.DataPropertyName = "MAPT";
     this.colMaPT.HeaderText = "Mã phụ thu";
     this.colMaPT.Name = "colMaPT";
     this.colMaPT.Width = 86;
     //
     // colPhuThu
     //
     this.colPhuThu.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.colPhuThu.DataPropertyName = "TENPT";
     this.colPhuThu.HeaderText = "Phụ thu";
     this.colPhuThu.Name = "colPhuThu";
     this.colPhuThu.ReadOnly = true;
     this.colPhuThu.Width = 69;
     //
     // colPhanTramPThu
     //
     this.colPhanTramPThu.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colPhanTramPThu.DataPropertyName = "PHANTRAMPT";
     this.colPhanTramPThu.HeaderText = "Phần trăm";
     this.colPhanTramPThu.Name = "colPhanTramPThu";
     this.colPhanTramPThu.ReadOnly = true;
     this.colPhanTramPThu.Width = 81;
     //
     // colChonPThu
     //
     this.colChonPThu.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colChonPThu.HeaderText = "Chọn";
     this.colChonPThu.Name = "colChonPThu";
     this.colChonPThu.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.colChonPThu.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.colChonPThu.Width = 57;
     //
     // grpCK
     //
     this.grpCK.Controls.Add(this.grdCK);
     this.grpCK.Location = new System.Drawing.Point(24, 70);
     this.grpCK.Name = "grpCK";
     this.grpCK.Size = new System.Drawing.Size(324, 228);
     this.grpCK.TabIndex = 30;
     this.grpCK.Text = "Chiết khấu";
     //
     // grdCK
     //
     this.grdCK.AllowUserToAddRows = false;
     this.grdCK.AllowUserToDeleteRows = false;
     this.grdCK.AllowUserToResizeRows = false;
     this.grdCK.BackgroundColor = System.Drawing.Color.White;
     this.grdCK.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdCK.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colMaCK,
     this.colChietKhau,
     this.colPhanTram,
     this.colChon});
     this.grdCK.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.grdCK.GridColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.grdCK.Location = new System.Drawing.Point(2, 21);
     this.grdCK.Name = "grdCK";
     this.grdCK.RowHeadersVisible = false;
     this.grdCK.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdCK.Size = new System.Drawing.Size(320, 205);
     this.grdCK.TabIndex = 0;
     this.grdCK.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridChietKhau_CellValueChanged);
     //
     // colMaCK
     //
     this.colMaCK.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colMaCK.DataPropertyName = "MACK";
     this.colMaCK.HeaderText = "Mã chiết khấu";
     this.colMaCK.Name = "colMaCK";
     this.colMaCK.Width = 98;
     //
     // colChietKhau
     //
     this.colChietKhau.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.colChietKhau.DataPropertyName = "TENCK";
     this.colChietKhau.HeaderText = "Chiết khấu";
     this.colChietKhau.Name = "colChietKhau";
     this.colChietKhau.ReadOnly = true;
     this.colChietKhau.Width = 83;
     //
     // colPhanTram
     //
     this.colPhanTram.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colPhanTram.DataPropertyName = "PHANTRAM";
     this.colPhanTram.HeaderText = "Phần trăm";
     this.colPhanTram.Name = "colPhanTram";
     this.colPhanTram.ReadOnly = true;
     this.colPhanTram.Width = 81;
     //
     // colChon
     //
     this.colChon.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colChon.HeaderText = "Chọn";
     this.colChon.Name = "colChon";
     this.colChon.Width = 38;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(860, 334);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(83, 19);
     this.label4.TabIndex = 33;
     this.label4.Text = "Tổng tiền:";
     //
     // txtTongTien
     //
     this.txtTongTien.BackColor = System.Drawing.Color.Yellow;
     this.txtTongTien.Enabled = false;
     this.txtTongTien.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTongTien.Location = new System.Drawing.Point(977, 323);
     this.txtTongTien.Name = "txtTongTien";
     this.txtTongTien.Size = new System.Drawing.Size(211, 30);
     this.txtTongTien.TabIndex = 34;
     this.txtTongTien.Text = "0";
     //
     // txtPhuThu
     //
     this.txtPhuThu.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtPhuThu.Enabled = false;
     this.txtPhuThu.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPhuThu.ForeColor = System.Drawing.SystemColors.Desktop;
     this.txtPhuThu.Location = new System.Drawing.Point(977, 225);
     this.txtPhuThu.Name = "txtPhuThu";
     this.txtPhuThu.Size = new System.Drawing.Size(211, 27);
     this.txtPhuThu.TabIndex = 36;
     this.txtPhuThu.Text = "0 %";
     //
     // lblPT
     //
     this.lblPT.AutoSize = true;
     this.lblPT.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPT.Location = new System.Drawing.Point(873, 232);
     this.lblPT.Name = "lblPT";
     this.lblPT.Size = new System.Drawing.Size(70, 19);
     this.lblPT.TabIndex = 35;
     this.lblPT.Text = "Phụ thu:";
     //
     // txtChietKhau
     //
     this.txtChietKhau.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtChietKhau.Enabled = false;
     this.txtChietKhau.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtChietKhau.ForeColor = System.Drawing.SystemColors.Desktop;
     this.txtChietKhau.Location = new System.Drawing.Point(977, 176);
     this.txtChietKhau.Name = "txtChietKhau";
     this.txtChietKhau.Size = new System.Drawing.Size(211, 27);
     this.txtChietKhau.TabIndex = 38;
     this.txtChietKhau.Text = "0 %";
     //
     // lblCK
     //
     this.lblCK.AutoSize = true;
     this.lblCK.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCK.Location = new System.Drawing.Point(853, 181);
     this.lblCK.Name = "lblCK";
     this.lblCK.Size = new System.Drawing.Size(90, 19);
     this.lblCK.TabIndex = 37;
     this.lblCK.Text = "Chiết khấu:";
     //
     // lblDonGia
     //
     this.lblDonGia.AutoSize = true;
     this.lblDonGia.Location = new System.Drawing.Point(526, 24);
     this.lblDonGia.Name = "lblDonGia";
     this.lblDonGia.Size = new System.Drawing.Size(26, 13);
     this.lblDonGia.TabIndex = 39;
     this.lblDonGia.Text = "Giá:";
     //
     // lblGia
     //
     this.lblGia.AutoSize = true;
     this.lblGia.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGia.Location = new System.Drawing.Point(558, 16);
     this.lblGia.Name = "lblGia";
     this.lblGia.Size = new System.Drawing.Size(28, 29);
     this.lblGia.TabIndex = 40;
     this.lblGia.Text = "0";
     //
     // groupControl
     //
     this.groupControl.Controls.Add(this.txtGioiTinh);
     this.groupControl.Controls.Add(this.label23);
     this.groupControl.Controls.Add(this.txtEmail);
     this.groupControl.Controls.Add(this.lblEmail);
     this.groupControl.Controls.Add(this.txtCMND);
     this.groupControl.Controls.Add(this.label11);
     this.groupControl.Controls.Add(this.txtHoTen);
     this.groupControl.Controls.Add(this.label10);
     this.groupControl.Controls.Add(this.txtLKH);
     this.groupControl.Controls.Add(this.lblLoaiKH);
     this.groupControl.Controls.Add(this.txtMaKH);
     this.groupControl.Controls.Add(this.label8);
     this.groupControl.Location = new System.Drawing.Point(389, 323);
     this.groupControl.Name = "groupControl";
     this.groupControl.Size = new System.Drawing.Size(348, 228);
     this.groupControl.TabIndex = 41;
     this.groupControl.Text = "Thông tin khách hàng";
     //
     // txtGioiTinh
     //
     this.txtGioiTinh.Enabled = false;
     this.txtGioiTinh.Location = new System.Drawing.Point(103, 191);
     this.txtGioiTinh.Name = "txtGioiTinh";
     this.txtGioiTinh.Size = new System.Drawing.Size(196, 21);
     this.txtGioiTinh.TabIndex = 44;
     this.txtGioiTinh.Tag = "infoKH";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(54, 197);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(45, 13);
     this.label23.TabIndex = 43;
     this.label23.Text = "Giới tính";
     //
     // txtEmail
     //
     this.txtEmail.Enabled = false;
     this.txtEmail.Location = new System.Drawing.Point(103, 157);
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Size = new System.Drawing.Size(196, 21);
     this.txtEmail.TabIndex = 36;
     this.txtEmail.Tag = "infoKH";
     //
     // lblEmail
     //
     this.lblEmail.AutoSize = true;
     this.lblEmail.Location = new System.Drawing.Point(68, 163);
     this.lblEmail.Name = "lblEmail";
     this.lblEmail.Size = new System.Drawing.Size(31, 13);
     this.lblEmail.TabIndex = 35;
     this.lblEmail.Text = "Email";
     //
     // txtCMND
     //
     this.txtCMND.Enabled = false;
     this.txtCMND.Location = new System.Drawing.Point(103, 123);
     this.txtCMND.Name = "txtCMND";
     this.txtCMND.Size = new System.Drawing.Size(196, 21);
     this.txtCMND.TabIndex = 34;
     this.txtCMND.Tag = "infoKH";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(63, 129);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(36, 13);
     this.label11.TabIndex = 33;
     this.label11.Text = "CMND";
     //
     // txtHoTen
     //
     this.txtHoTen.Enabled = false;
     this.txtHoTen.Location = new System.Drawing.Point(103, 89);
     this.txtHoTen.Name = "txtHoTen";
     this.txtHoTen.Size = new System.Drawing.Size(196, 21);
     this.txtHoTen.TabIndex = 32;
     this.txtHoTen.Tag = "infoKH";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(60, 95);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(39, 13);
     this.label10.TabIndex = 31;
     this.label10.Text = "Họ tên";
     //
     // txtLKH
     //
     this.txtLKH.Enabled = false;
     this.txtLKH.Location = new System.Drawing.Point(103, 55);
     this.txtLKH.Name = "txtLKH";
     this.txtLKH.Size = new System.Drawing.Size(196, 21);
     this.txtLKH.TabIndex = 30;
     this.txtLKH.Tag = "infoKH";
     //
     // lblLoaiKH
     //
     this.lblLoaiKH.AutoSize = true;
     this.lblLoaiKH.Location = new System.Drawing.Point(15, 61);
     this.lblLoaiKH.Name = "lblLoaiKH";
     this.lblLoaiKH.Size = new System.Drawing.Size(84, 13);
     this.lblLoaiKH.TabIndex = 29;
     this.lblLoaiKH.Text = "Loại khách hàng";
     //
     // txtMaKH
     //
     this.txtMaKH.Enabled = false;
     this.txtMaKH.Location = new System.Drawing.Point(103, 21);
     this.txtMaKH.Name = "txtMaKH";
     this.txtMaKH.Size = new System.Drawing.Size(196, 21);
     this.txtMaKH.TabIndex = 28;
     this.txtMaKH.Tag = "infoKH";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(20, 27);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(79, 13);
     this.label8.TabIndex = 27;
     this.label8.Text = "Mã khách hàng";
     //
     // btnThanhTien
     //
     this.btnThanhTien.Location = new System.Drawing.Point(987, 481);
     this.btnThanhTien.Name = "btnThanhTien";
     this.btnThanhTien.Size = new System.Drawing.Size(80, 30);
     this.btnThanhTien.TabIndex = 42;
     this.btnThanhTien.Text = "Thành tiền";
     this.btnThanhTien.Click += new System.EventHandler(this.btnThanhToan_Click);
     //
     // txtDichVu
     //
     this.txtDichVu.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtDichVu.Enabled = false;
     this.txtDichVu.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDichVu.ForeColor = System.Drawing.SystemColors.Desktop;
     this.txtDichVu.Location = new System.Drawing.Point(977, 274);
     this.txtDichVu.Name = "txtDichVu";
     this.txtDichVu.Size = new System.Drawing.Size(211, 27);
     this.txtDichVu.TabIndex = 44;
     this.txtDichVu.Text = "0";
     //
     // lblDV
     //
     this.lblDV.AutoSize = true;
     this.lblDV.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDV.Location = new System.Drawing.Point(850, 277);
     this.lblDV.Name = "lblDV";
     this.lblDV.Size = new System.Drawing.Size(93, 19);
     this.lblDV.TabIndex = 43;
     this.lblDV.Text = "Phí dịch vụ:";
     //
     // dtpNgayTra
     //
     this.dtpNgayTra.CustomFormat = "dd/MM/yyyy HH:mm\'";
     this.dtpNgayTra.Enabled = false;
     this.dtpNgayTra.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtpNgayTra.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpNgayTra.Location = new System.Drawing.Point(977, 116);
     this.dtpNgayTra.Name = "dtpNgayTra";
     this.dtpNgayTra.Size = new System.Drawing.Size(211, 27);
     this.dtpNgayTra.TabIndex = 45;
     //
     // dtpNgayNhan
     //
     this.dtpNgayNhan.CustomFormat = "dd/MM/yyyy HH:mm\'";
     this.dtpNgayNhan.Enabled = false;
     this.dtpNgayNhan.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtpNgayNhan.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpNgayNhan.Location = new System.Drawing.Point(977, 73);
     this.dtpNgayNhan.Name = "dtpNgayNhan";
     this.dtpNgayNhan.Size = new System.Drawing.Size(211, 27);
     this.dtpNgayNhan.TabIndex = 46;
     //
     // btnThanhToan
     //
     this.btnThanhToan.Enabled = false;
     this.btnThanhToan.Location = new System.Drawing.Point(1095, 481);
     this.btnThanhToan.Name = "btnThanhToan";
     this.btnThanhToan.Size = new System.Drawing.Size(80, 30);
     this.btnThanhToan.TabIndex = 47;
     this.btnThanhToan.Text = "Thanh toán";
     this.btnThanhToan.Click += new System.EventHandler(this.btnThanhToan_Click_1);
     //
     // txtTienNhan
     //
     this.txtTienNhan.BackColor = System.Drawing.Color.White;
     this.txtTienNhan.Font = new System.Drawing.Font("Tahoma", 14.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTienNhan.Location = new System.Drawing.Point(977, 375);
     this.txtTienNhan.Name = "txtTienNhan";
     this.txtTienNhan.Size = new System.Drawing.Size(211, 30);
     this.txtTienNhan.TabIndex = 49;
     this.txtTienNhan.Text = "0";
     this.txtTienNhan.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtTienNhan_KeyPress);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(860, 385);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(104, 19);
     this.label9.TabIndex = 48;
     this.label9.Text = "Số tiền nhận:";
     //
     // txtTienThua
     //
     this.txtTienThua.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtTienThua.Enabled = false;
     this.txtTienThua.Font = new System.Drawing.Font("Tahoma", 14.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTienThua.Location = new System.Drawing.Point(977, 427);
     this.txtTienThua.Name = "txtTienThua";
     this.txtTienThua.Size = new System.Drawing.Size(211, 30);
     this.txtTienThua.TabIndex = 51;
     this.txtTienThua.Text = "0";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.Location = new System.Drawing.Point(860, 436);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(101, 19);
     this.label15.TabIndex = 50;
     this.label15.Text = "Số tiền thừa:";
     //
     // lblSoHD
     //
     this.lblSoHD.AutoSize = true;
     this.lblSoHD.Location = new System.Drawing.Point(1080, 33);
     this.lblSoHD.Name = "lblSoHD";
     this.lblSoHD.Size = new System.Drawing.Size(41, 13);
     this.lblSoHD.TabIndex = 52;
     this.lblSoHD.Text = "Số HĐ:";
     //
     // lblMaHD
     //
     this.lblMaHD.AutoSize = true;
     this.lblMaHD.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMaHD.Location = new System.Drawing.Point(1127, 28);
     this.lblMaHD.Name = "lblMaHD";
     this.lblMaHD.Size = new System.Drawing.Size(36, 19);
     this.lblMaHD.TabIndex = 53;
     this.lblMaHD.Text = "000";
     //
     // btnMakeNew
     //
     this.btnMakeNew.Location = new System.Drawing.Point(987, 534);
     this.btnMakeNew.Name = "btnMakeNew";
     this.btnMakeNew.Size = new System.Drawing.Size(80, 29);
     this.btnMakeNew.TabIndex = 54;
     this.btnMakeNew.Text = "Lập HĐ mới";
     this.btnMakeNew.Visible = false;
     this.btnMakeNew.Click += new System.EventHandler(this.btnMakeNew_Click);
     //
     // lblMaPhieu
     //
     this.lblMaPhieu.AutoSize = true;
     this.lblMaPhieu.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMaPhieu.Location = new System.Drawing.Point(974, 27);
     this.lblMaPhieu.Name = "lblMaPhieu";
     this.lblMaPhieu.Size = new System.Drawing.Size(36, 19);
     this.lblMaPhieu.TabIndex = 56;
     this.lblMaPhieu.Text = "000";
     //
     // lblPNP
     //
     this.lblPNP.AutoSize = true;
     this.lblPNP.Location = new System.Drawing.Point(853, 31);
     this.lblPNP.Name = "lblPNP";
     this.lblPNP.Size = new System.Drawing.Size(114, 13);
     this.lblPNP.TabIndex = 55;
     this.lblPNP.Text = "Mã phiếu nhận phòng:";
     //
     // lblSoNgay
     //
     this.lblSoNgay.AutoSize = true;
     this.lblSoNgay.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSoNgay.Location = new System.Drawing.Point(1062, 148);
     this.lblSoNgay.Name = "lblSoNgay";
     this.lblSoNgay.Size = new System.Drawing.Size(18, 19);
     this.lblSoNgay.TabIndex = 58;
     this.lblSoNgay.Text = "0";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(1013, 151);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(50, 13);
     this.label19.TabIndex = 57;
     this.label19.Text = "Số ngày:";
     //
     // btnHoaDon
     //
     this.btnHoaDon.Location = new System.Drawing.Point(1095, 534);
     this.btnHoaDon.Name = "btnHoaDon";
     this.btnHoaDon.Size = new System.Drawing.Size(80, 29);
     this.btnHoaDon.TabIndex = 54;
     this.btnHoaDon.Text = "Xuất hóa đơn";
     this.btnHoaDon.Visible = false;
     this.btnHoaDon.Click += new System.EventHandler(this.btnHoaDon_Click);
     //
     // backgroundWorker1
     //
     this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
     this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
     //
     // usrThanhToan
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.lblSoNgay);
     this.Controls.Add(this.label19);
     this.Controls.Add(this.lblMaPhieu);
     this.Controls.Add(this.lblPNP);
     this.Controls.Add(this.btnHoaDon);
     this.Controls.Add(this.btnMakeNew);
     this.Controls.Add(this.lblMaHD);
     this.Controls.Add(this.lblSoHD);
     this.Controls.Add(this.txtTienThua);
     this.Controls.Add(this.label15);
     this.Controls.Add(this.txtTienNhan);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.btnThanhToan);
     this.Controls.Add(this.dtpNgayNhan);
     this.Controls.Add(this.dtpNgayTra);
     this.Controls.Add(this.txtDichVu);
     this.Controls.Add(this.lblDV);
     this.Controls.Add(this.btnThanhTien);
     this.Controls.Add(this.groupControl);
     this.Controls.Add(this.lblGia);
     this.Controls.Add(this.lblDonGia);
     this.Controls.Add(this.txtChietKhau);
     this.Controls.Add(this.lblCK);
     this.Controls.Add(this.txtPhuThu);
     this.Controls.Add(this.lblPT);
     this.Controls.Add(this.txtTongTien);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.grpCK);
     this.Controls.Add(this.grpPT);
     this.Controls.Add(this.lblNgayTra);
     this.Controls.Add(this.lblNgayNhan);
     this.Controls.Add(this.grpDV);
     this.Controls.Add(this.glkPhong);
     this.Controls.Add(this.lblPhong);
     this.Name = "usrThanhToan";
     this.Size = new System.Drawing.Size(1288, 619);
     this.Load += new System.EventHandler(this.usrThanhToan_Load);
     ((System.ComponentModel.ISupportInitialize)(this.glkPhong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.glkvPhong)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpDV)).EndInit();
     this.grpDV.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lblGioTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPT)).EndInit();
     this.grpPT.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdPT)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCK)).EndInit();
     this.grpCK.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdCK)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl)).EndInit();
     this.groupControl.ResumeLayout(false);
     this.groupControl.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #32
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(frmReportProductStock));
     this.crystalRptProductStock = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
     this.chkShowCetagory = new System.Windows.Forms.CheckBox();
     this.chkShowStock = new System.Windows.Forms.CheckBox();
     this.chkShowColor = new System.Windows.Forms.CheckBox();
     this.btnView = new System.Windows.Forms.Button();
     this.btnToSearch = new System.Windows.Forms.Button();
     this.lblToSearch = new System.Windows.Forms.Label();
     this.txtToCode = new System.Windows.Forms.TextBox();
     this.btnFromSearch = new System.Windows.Forms.Button();
     this.lblFromSearch = new System.Windows.Forms.Label();
     this.txtFromCode = new System.Windows.Forms.TextBox();
     this.cmbProductCatagory = new System.Windows.Forms.ComboBox();
     this.lblProductCatagory = new System.Windows.Forms.Label();
     this.chkShowCompany = new System.Windows.Forms.CheckBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.lblHeaderEn = new System.Windows.Forms.Label();
     this.txtFromProduct = new System.Windows.Forms.TextBox();
     this.txtToProduct = new System.Windows.Forms.TextBox();
     this.cmbWarehouse = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.btnClear = new System.Windows.Forms.Button();
     this.cmbFProductName = new System.Windows.Forms.ComboBox();
     this.cmbProductNameNew = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProductNameNew.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     this.SuspendLayout();
     //
     // crystalRptProductStock
     //
     this.crystalRptProductStock.ActiveViewIndex = -1;
     this.crystalRptProductStock.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.crystalRptProductStock.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.crystalRptProductStock.Cursor = System.Windows.Forms.Cursors.Default;
     this.crystalRptProductStock.Location = new System.Drawing.Point(0, 112);
     this.crystalRptProductStock.Name = "crystalRptProductStock";
     this.crystalRptProductStock.Size = new System.Drawing.Size(1243, 379);
     this.crystalRptProductStock.TabIndex = 5;
     this.crystalRptProductStock.ToolPanelView = CrystalDecisions.Windows.Forms.ToolPanelViewType.None;
     //
     // chkShowCetagory
     //
     this.chkShowCetagory.AutoSize = true;
     this.chkShowCetagory.Checked = true;
     this.chkShowCetagory.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkShowCetagory.Font = new System.Drawing.Font("Tahoma", 9.25F, System.Drawing.FontStyle.Bold);
     this.chkShowCetagory.Location = new System.Drawing.Point(6, 19);
     this.chkShowCetagory.Name = "chkShowCetagory";
     this.chkShowCetagory.Size = new System.Drawing.Size(130, 20);
     this.chkShowCetagory.TabIndex = 6;
     this.chkShowCetagory.Text = "Show  Cetagory";
     this.chkShowCetagory.UseVisualStyleBackColor = true;
     //
     // chkShowStock
     //
     this.chkShowStock.AutoSize = true;
     this.chkShowStock.Checked = true;
     this.chkShowStock.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkShowStock.Font = new System.Drawing.Font("Tahoma", 9.25F, System.Drawing.FontStyle.Bold);
     this.chkShowStock.Location = new System.Drawing.Point(6, 40);
     this.chkShowStock.Name = "chkShowStock";
     this.chkShowStock.Size = new System.Drawing.Size(102, 20);
     this.chkShowStock.TabIndex = 8;
     this.chkShowStock.Text = "Show Stock";
     this.chkShowStock.UseVisualStyleBackColor = true;
     //
     // chkShowColor
     //
     this.chkShowColor.AutoSize = true;
     this.chkShowColor.Checked = true;
     this.chkShowColor.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkShowColor.Font = new System.Drawing.Font("Tahoma", 9.25F, System.Drawing.FontStyle.Bold);
     this.chkShowColor.Location = new System.Drawing.Point(140, 40);
     this.chkShowColor.Name = "chkShowColor";
     this.chkShowColor.Size = new System.Drawing.Size(99, 20);
     this.chkShowColor.TabIndex = 9;
     this.chkShowColor.Text = "Show Color";
     this.chkShowColor.UseVisualStyleBackColor = true;
     //
     // btnView
     //
     this.btnView.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnView.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
     this.btnView.FlatAppearance.BorderSize = 0;
     this.btnView.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
     this.btnView.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(232)))), ((int)(((byte)(244)))));
     this.btnView.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnView.Image = ((System.Drawing.Image)(resources.GetObject("btnView.Image")));
     this.btnView.Location = new System.Drawing.Point(871, 74);
     this.btnView.Name = "btnView";
     this.btnView.Size = new System.Drawing.Size(37, 26);
     this.btnView.TabIndex = 5;
     this.btnView.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnView.UseVisualStyleBackColor = true;
     this.btnView.Click += new System.EventHandler(this.btnView_Click);
     //
     // btnToSearch
     //
     this.btnToSearch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnToSearch.BackgroundImage")));
     this.btnToSearch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnToSearch.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnToSearch.FlatAppearance.BorderColor = System.Drawing.Color.WhiteSmoke;
     this.btnToSearch.FlatAppearance.BorderSize = 0;
     this.btnToSearch.FlatAppearance.MouseDownBackColor = System.Drawing.Color.WhiteSmoke;
     this.btnToSearch.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.btnToSearch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnToSearch.Location = new System.Drawing.Point(527, 78);
     this.btnToSearch.Name = "btnToSearch";
     this.btnToSearch.Size = new System.Drawing.Size(26, 26);
     this.btnToSearch.TabIndex = 3;
     this.btnToSearch.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnToSearch.UseVisualStyleBackColor = true;
     this.btnToSearch.Click += new System.EventHandler(this.btnToSearch_Click);
     //
     // lblToSearch
     //
     this.lblToSearch.AutoSize = true;
     this.lblToSearch.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblToSearch.Location = new System.Drawing.Point(298, 82);
     this.lblToSearch.Name = "lblToSearch";
     this.lblToSearch.Size = new System.Drawing.Size(82, 18);
     this.lblToSearch.TabIndex = 208;
     this.lblToSearch.Text = "To Product";
     //
     // txtToCode
     //
     this.txtToCode.Font = new System.Drawing.Font("Arial", 12F);
     this.txtToCode.Location = new System.Drawing.Point(407, 78);
     this.txtToCode.Name = "txtToCode";
     this.txtToCode.Size = new System.Drawing.Size(114, 26);
     this.txtToCode.TabIndex = 4;
     this.txtToCode.TextChanged += new System.EventHandler(this.txtToCode_TextChanged);
     //
     // btnFromSearch
     //
     this.btnFromSearch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnFromSearch.BackgroundImage")));
     this.btnFromSearch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnFromSearch.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnFromSearch.FlatAppearance.BorderColor = System.Drawing.Color.WhiteSmoke;
     this.btnFromSearch.FlatAppearance.BorderSize = 0;
     this.btnFromSearch.FlatAppearance.MouseDownBackColor = System.Drawing.Color.WhiteSmoke;
     this.btnFromSearch.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.btnFromSearch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnFromSearch.Location = new System.Drawing.Point(527, 46);
     this.btnFromSearch.Name = "btnFromSearch";
     this.btnFromSearch.Size = new System.Drawing.Size(26, 26);
     this.btnFromSearch.TabIndex = 1;
     this.btnFromSearch.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnFromSearch.UseVisualStyleBackColor = true;
     this.btnFromSearch.Click += new System.EventHandler(this.btnFromSearch_Click);
     //
     // lblFromSearch
     //
     this.lblFromSearch.AutoSize = true;
     this.lblFromSearch.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFromSearch.Location = new System.Drawing.Point(298, 50);
     this.lblFromSearch.Name = "lblFromSearch";
     this.lblFromSearch.Size = new System.Drawing.Size(103, 18);
     this.lblFromSearch.TabIndex = 205;
     this.lblFromSearch.Text = "From Product";
     //
     // txtFromCode
     //
     this.txtFromCode.Font = new System.Drawing.Font("Arial", 12F);
     this.txtFromCode.Location = new System.Drawing.Point(407, 46);
     this.txtFromCode.Name = "txtFromCode";
     this.txtFromCode.Size = new System.Drawing.Size(114, 26);
     this.txtFromCode.TabIndex = 2;
     this.txtFromCode.TextChanged += new System.EventHandler(this.txtFromCode_TextChanged);
     //
     // cmbProductCatagory
     //
     this.cmbProductCatagory.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbProductCatagory.Font = new System.Drawing.Font("Arial", 12F);
     this.cmbProductCatagory.FormattingEnabled = true;
     this.cmbProductCatagory.Location = new System.Drawing.Point(87, 46);
     this.cmbProductCatagory.Name = "cmbProductCatagory";
     this.cmbProductCatagory.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.cmbProductCatagory.Size = new System.Drawing.Size(193, 26);
     this.cmbProductCatagory.TabIndex = 0;
     //
     // lblProductCatagory
     //
     this.lblProductCatagory.AutoSize = true;
     this.lblProductCatagory.Font = new System.Drawing.Font("Arial", 12F);
     this.lblProductCatagory.Location = new System.Drawing.Point(9, 50);
     this.lblProductCatagory.Name = "lblProductCatagory";
     this.lblProductCatagory.Size = new System.Drawing.Size(72, 18);
     this.lblProductCatagory.TabIndex = 202;
     this.lblProductCatagory.Text = "Category";
     //
     // chkShowCompany
     //
     this.chkShowCompany.AutoSize = true;
     this.chkShowCompany.Checked = true;
     this.chkShowCompany.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkShowCompany.Font = new System.Drawing.Font("Tahoma", 9.25F, System.Drawing.FontStyle.Bold);
     this.chkShowCompany.Location = new System.Drawing.Point(140, 20);
     this.chkShowCompany.Name = "chkShowCompany";
     this.chkShowCompany.Size = new System.Drawing.Size(125, 20);
     this.chkShowCompany.TabIndex = 7;
     this.chkShowCompany.Text = "Show Campany";
     this.chkShowCompany.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.chkShowCetagory);
     this.groupBox1.Controls.Add(this.chkShowCompany);
     this.groupBox1.Controls.Add(this.chkShowStock);
     this.groupBox1.Controls.Add(this.chkShowColor);
     this.groupBox1.Location = new System.Drawing.Point(965, 36);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(267, 64);
     this.groupBox1.TabIndex = 211;
     this.groupBox1.TabStop = false;
     //
     // lblHeaderEn
     //
     this.lblHeaderEn.AutoSize = true;
     this.lblHeaderEn.Font = new System.Drawing.Font("Arial", 16F, ((System.Drawing.FontStyle)(((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)
         | System.Drawing.FontStyle.Underline))));
     this.lblHeaderEn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(141)))), ((int)(((byte)(188)))));
     this.lblHeaderEn.Location = new System.Drawing.Point(12, 9);
     this.lblHeaderEn.Name = "lblHeaderEn";
     this.lblHeaderEn.Size = new System.Drawing.Size(117, 25);
     this.lblHeaderEn.TabIndex = 214;
     this.lblHeaderEn.Text = "Stock List";
     //
     // txtFromProduct
     //
     this.txtFromProduct.Font = new System.Drawing.Font("Arial", 12F);
     this.txtFromProduct.Location = new System.Drawing.Point(559, 46);
     this.txtFromProduct.Name = "txtFromProduct";
     this.txtFromProduct.ReadOnly = true;
     this.txtFromProduct.Size = new System.Drawing.Size(306, 26);
     this.txtFromProduct.TabIndex = 215;
     this.txtFromProduct.TextChanged += new System.EventHandler(this.txtFromProduct_TextChanged);
     //
     // txtToProduct
     //
     this.txtToProduct.Font = new System.Drawing.Font("Arial", 12F);
     this.txtToProduct.Location = new System.Drawing.Point(559, 78);
     this.txtToProduct.Name = "txtToProduct";
     this.txtToProduct.ReadOnly = true;
     this.txtToProduct.Size = new System.Drawing.Size(306, 26);
     this.txtToProduct.TabIndex = 216;
     //
     // cmbWarehouse
     //
     this.cmbWarehouse.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbWarehouse.Font = new System.Drawing.Font("Arial", 12F);
     this.cmbWarehouse.FormattingEnabled = true;
     this.cmbWarehouse.Location = new System.Drawing.Point(87, 78);
     this.cmbWarehouse.Name = "cmbWarehouse";
     this.cmbWarehouse.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.cmbWarehouse.Size = new System.Drawing.Size(193, 26);
     this.cmbWarehouse.TabIndex = 217;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Arial", 12F);
     this.label1.Location = new System.Drawing.Point(9, 82);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(56, 18);
     this.label1.TabIndex = 218;
     this.label1.Text = "Depart";
     //
     // btnClear
     //
     this.btnClear.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnClear.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
     this.btnClear.FlatAppearance.BorderSize = 0;
     this.btnClear.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
     this.btnClear.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(232)))), ((int)(((byte)(244)))));
     this.btnClear.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnClear.Image = global::FIL.Properties.Resources.clear_32;
     this.btnClear.Location = new System.Drawing.Point(914, 74);
     this.btnClear.Name = "btnClear";
     this.btnClear.Size = new System.Drawing.Size(37, 26);
     this.btnClear.TabIndex = 219;
     this.btnClear.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnClear.UseVisualStyleBackColor = true;
     this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
     //
     // cmbFProductName
     //
     this.cmbFProductName.Font = new System.Drawing.Font("Arial", 12F);
     this.cmbFProductName.FormattingEnabled = true;
     this.cmbFProductName.Location = new System.Drawing.Point(407, 8);
     this.cmbFProductName.Name = "cmbFProductName";
     this.cmbFProductName.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.cmbFProductName.Size = new System.Drawing.Size(115, 26);
     this.cmbFProductName.TabIndex = 220;
     this.cmbFProductName.Visible = false;
     this.cmbFProductName.SelectedIndexChanged += new System.EventHandler(this.cmbFProductName_SelectedIndexChanged);
     this.cmbFProductName.SelectedValueChanged += new System.EventHandler(this.cmbFProductName_SelectedValueChanged);
     //
     // cmbProductNameNew
     //
     this.cmbProductNameNew.Location = new System.Drawing.Point(559, 12);
     this.cmbProductNameNew.Name = "cmbProductNameNew";
     this.cmbProductNameNew.Properties.Appearance.Font = new System.Drawing.Font("Arial", 12F);
     this.cmbProductNameNew.Properties.Appearance.Options.UseFont = true;
     this.cmbProductNameNew.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbProductNameNew.Properties.NullText = "";
     this.cmbProductNameNew.Properties.PopupSizeable = false;
     this.cmbProductNameNew.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cmbProductNameNew.Properties.View = this.gridLookUpEdit1View;
     this.cmbProductNameNew.Size = new System.Drawing.Size(306, 24);
     this.cmbProductNameNew.TabIndex = 221;
     this.cmbProductNameNew.EditValueChanged += new System.EventHandler(this.cmbProductNameNew_EditValueChanged);
     this.cmbProductNameNew.Enter += new System.EventHandler(this.cmbProductNameNew_Enter);
     this.cmbProductNameNew.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cmbProductNameNew_KeyDown);
     this.cmbProductNameNew.Leave += new System.EventHandler(this.cmbProductNameNew_Leave);
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // frmReportProductStock
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1244, 503);
     this.Controls.Add(this.cmbFProductName);
     this.Controls.Add(this.btnClear);
     this.Controls.Add(this.cmbWarehouse);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.txtToProduct);
     this.Controls.Add(this.txtFromProduct);
     this.Controls.Add(this.lblHeaderEn);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.btnView);
     this.Controls.Add(this.btnToSearch);
     this.Controls.Add(this.lblToSearch);
     this.Controls.Add(this.txtToCode);
     this.Controls.Add(this.btnFromSearch);
     this.Controls.Add(this.lblFromSearch);
     this.Controls.Add(this.txtFromCode);
     this.Controls.Add(this.cmbProductCatagory);
     this.Controls.Add(this.lblProductCatagory);
     this.Controls.Add(this.crystalRptProductStock);
     this.Controls.Add(this.cmbProductNameNew);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MinimizeBox = false;
     this.Name = "frmReportProductStock";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Load += new System.EventHandler(this.frmReportProductStock_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProductNameNew.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).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.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtpGeneral = new DevExpress.XtraTab.XtraTabPage();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.deExportDate = new DevExpress.XtraEditors.DateEdit();
     this.luePersonId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSTBLWarasa = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPersonId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicateWarasa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitteWarasa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.colMonthName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colYearName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMonthName1 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtpGeneral.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deExportDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deExportDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luePersonId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLWarasa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.panelControl1.Controls.Add(this.btnClose);
     this.panelControl1.Controls.Add(this.btnSave);
     this.panelControl1.Location = new System.Drawing.Point(5, 164);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(520, 44);
     this.panelControl1.TabIndex = 1;
     //
     // btnClose
     //
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Image = global::RetirementCenter.Properties.Resources.Delete;
     this.btnClose.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleRight;
     this.btnClose.Location = new System.Drawing.Point(7, 7);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(90, 30);
     this.btnClose.TabIndex = 0;
     this.btnClose.Text = "اغلاق";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnSave
     //
     this.btnSave.Image = global::RetirementCenter.Properties.Resources.Save;
     this.btnSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleRight;
     this.btnSave.Location = new System.Drawing.Point(308, 5);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(207, 38);
     this.btnSave.TabIndex = 4;
     this.btnSave.Text = "حفـــــــــــــــــــــــــظ";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(5, 12);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.xtraTabControl1.SelectedTabPage = this.xtpGeneral;
     this.xtraTabControl1.Size = new System.Drawing.Size(525, 146);
     this.xtraTabControl1.TabIndex = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtpGeneral});
     //
     // xtpGeneral
     //
     this.xtpGeneral.Controls.Add(this.layoutControl1);
     this.xtpGeneral.Image = global::RetirementCenter.Properties.Resources.Edit;
     this.xtpGeneral.Name = "xtpGeneral";
     this.xtpGeneral.Size = new System.Drawing.Size(519, 99);
     this.xtpGeneral.Text = "بيانات أساسيه";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.deExportDate);
     this.layoutControl1.Controls.Add(this.luePersonId);
     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(519, 99);
     this.layoutControl1.TabIndex = 5;
     this.layoutControl1.Text = "layoutControl1";
     //
     // deExportDate
     //
     this.deExportDate.EditValue = null;
     this.deExportDate.Location = new System.Drawing.Point(12, 42);
     this.deExportDate.Name = "deExportDate";
     this.deExportDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deExportDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deExportDate.Size = new System.Drawing.Size(435, 20);
     this.deExportDate.StyleController = this.layoutControl1;
     this.deExportDate.TabIndex = 4;
     //
     // luePersonId
     //
     this.luePersonId.EditValue = "";
     this.luePersonId.Location = new System.Drawing.Point(12, 12);
     this.luePersonId.Name = "luePersonId";
     this.luePersonId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.luePersonId.Properties.Appearance.Options.UseFont = true;
     this.luePersonId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luePersonId.Properties.DataSource = this.LSMSTBLWarasa;
     this.luePersonId.Properties.DisplayMember = "personName";
     this.luePersonId.Properties.NullText = "";
     this.luePersonId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.luePersonId.Properties.ValueMember = "PersonId";
     this.luePersonId.Properties.View = this.gridView1;
     this.luePersonId.Size = new System.Drawing.Size(435, 26);
     this.luePersonId.StyleController = this.layoutControl1;
     this.luePersonId.TabIndex = 1;
     //
     // 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.colPersonId,
     this.colpersonName,
     this.colSyndicateWarasa,
     this.colSubCommitteWarasa,
     this.colsarfnumber});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowAutoFilterRow = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // 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 = 0;
     //
     // colpersonName
     //
     this.colpersonName.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.Caption = "الاسم";
     this.colpersonName.FieldName = "personName";
     this.colpersonName.Name = "colpersonName";
     this.colpersonName.Visible = true;
     this.colpersonName.VisibleIndex = 1;
     //
     // colSyndicateWarasa
     //
     this.colSyndicateWarasa.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicateWarasa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateWarasa.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicateWarasa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateWarasa.Caption = "الفرعية";
     this.colSyndicateWarasa.FieldName = "SyndicateWarasa";
     this.colSyndicateWarasa.Name = "colSyndicateWarasa";
     this.colSyndicateWarasa.Visible = true;
     this.colSyndicateWarasa.VisibleIndex = 2;
     //
     // colSubCommitteWarasa
     //
     this.colSubCommitteWarasa.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitteWarasa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteWarasa.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitteWarasa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteWarasa.Caption = "اللجنة";
     this.colSubCommitteWarasa.FieldName = "SubCommitteWarasa";
     this.colSubCommitteWarasa.Name = "colSubCommitteWarasa";
     this.colSubCommitteWarasa.Visible = true;
     this.colSubCommitteWarasa.VisibleIndex = 3;
     //
     // 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 = 4;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Size = new System.Drawing.Size(519, 99);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.luePersonId;
     this.layoutControlItem1.CustomizationFormText = "الاسم";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(499, 30);
     this.layoutControlItem1.Text = "الاسم";
     this.layoutControlItem1.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(57, 13);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.deExportDate;
     this.layoutControlItem2.CustomizationFormText = "تاريخ التصدير";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 30);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(499, 49);
     this.layoutControlItem2.Text = "تاريخ التصدير";
     this.layoutControlItem2.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(57, 13);
     //
     // colMonthName
     //
     this.colMonthName.AppearanceCell.Options.UseTextOptions = true;
     this.colMonthName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMonthName.AppearanceHeader.Options.UseTextOptions = true;
     this.colMonthName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMonthName.Caption = "اسم الشهر";
     this.colMonthName.FieldName = "MonthName";
     this.colMonthName.Name = "colMonthName";
     this.colMonthName.Visible = true;
     this.colMonthName.VisibleIndex = 0;
     //
     // colYearName
     //
     this.colYearName.AppearanceCell.Options.UseTextOptions = true;
     this.colYearName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colYearName.AppearanceHeader.Options.UseTextOptions = true;
     this.colYearName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colYearName.Caption = "اسم السنه";
     this.colYearName.FieldName = "YearName";
     this.colYearName.Name = "colYearName";
     this.colYearName.Visible = true;
     this.colYearName.VisibleIndex = 0;
     //
     // colMonthName1
     //
     this.colMonthName1.AppearanceCell.Options.UseTextOptions = true;
     this.colMonthName1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMonthName1.AppearanceHeader.Options.UseTextOptions = true;
     this.colMonthName1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMonthName1.Caption = "اسم الشهر";
     this.colMonthName1.FieldName = "MonthName";
     this.colMonthName1.Name = "colMonthName1";
     this.colMonthName1.Visible = true;
     this.colMonthName1.VisibleIndex = 0;
     //
     // ActivateVisaWarasaWFrm
     //
     this.AcceptButton = this.btnSave;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnClose;
     this.ClientSize = new System.Drawing.Size(542, 213);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox = false;
     this.Name = "ActivateVisaWarasaWFrm";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "تحرير";
     this.Load += new System.EventHandler(this.FormWFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtpGeneral.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.deExportDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deExportDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luePersonId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLWarasa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #34
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(User));
     this.gbxIdentification = new System.Windows.Forms.GroupBox();
     this.cbxActive = new DevExpress.XtraEditors.CheckEdit();
     this.lblName = new DevExpress.XtraEditors.LabelControl();
     this.lblSurname = new DevExpress.XtraEditors.LabelControl();
     this.txtName = new DevExpress.XtraEditors.TextEdit();
     this.txtSurname = new DevExpress.XtraEditors.TextEdit();
     this.tabctrlUser = new DevExpress.XtraTab.XtraTabControl();
     this.tabpageMain = new DevExpress.XtraTab.XtraTabPage();
     this.gbxAuthentication = new System.Windows.Forms.GroupBox();
     this.louEmployee = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.lblPassword = new DevExpress.XtraEditors.LabelControl();
     this.lblLogin = new DevExpress.XtraEditors.LabelControl();
     this.txtPassword = new DevExpress.XtraEditors.TextEdit();
     this.txtLogin = new DevExpress.XtraEditors.TextEdit();
     this.tabpageAuthorisation = new DevExpress.XtraTab.XtraTabPage();
     this.cbxMaterialCategoryDelete = new DevExpress.XtraEditors.CheckEdit();
     this.cbxMaterialCategoryMaintain = new DevExpress.XtraEditors.CheckEdit();
     this.cbxMaterialCategoryDisplay = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.cbxMaterialDelete = new DevExpress.XtraEditors.CheckEdit();
     this.cbxMaterialMaintain = new DevExpress.XtraEditors.CheckEdit();
     this.cbxMaterialDisplay = new DevExpress.XtraEditors.CheckEdit();
     this.cbxMaterialMemoDelete = new DevExpress.XtraEditors.CheckEdit();
     this.cbxMaterialMemoMaintain = new DevExpress.XtraEditors.CheckEdit();
     this.cbxMaterialMemoDisplay = new DevExpress.XtraEditors.CheckEdit();
     this.cbxMaterialMaintenanceDelete = new DevExpress.XtraEditors.CheckEdit();
     this.cbxMaterialMaintenanceMaintain = new DevExpress.XtraEditors.CheckEdit();
     this.cbxMaterialMaintenanceDisplay = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.cbxFuelCorrectionDelete = new DevExpress.XtraEditors.CheckEdit();
     this.cbxFuelCorrectionMaintain = new DevExpress.XtraEditors.CheckEdit();
     this.cbxFuelCorrectionDisplay = new DevExpress.XtraEditors.CheckEdit();
     this.cbxFuelDeliveryDelete = new DevExpress.XtraEditors.CheckEdit();
     this.cbxFuelDeliveryMaintain = new DevExpress.XtraEditors.CheckEdit();
     this.cbxFuelDeliveryDisplay = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.cbxVehicleDisplay = new DevExpress.XtraEditors.CheckEdit();
     this.cbxFuelDelete = new DevExpress.XtraEditors.CheckEdit();
     this.cbxFuelMaintain = new DevExpress.XtraEditors.CheckEdit();
     this.cbxFuelDisplay = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.cbxEmployeeDisplay = new DevExpress.XtraEditors.CheckEdit();
     this.cbxCostingDisplay = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.cbxCustomerDisplay = new DevExpress.XtraEditors.CheckEdit();
     this.cbxSettingsMaintain = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.cbxTaskDelete = new DevExpress.XtraEditors.CheckEdit();
     this.cbxTaskMaintain = new DevExpress.XtraEditors.CheckEdit();
     this.cbxTaskDisplay = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.cbxUserDelete = new DevExpress.XtraEditors.CheckEdit();
     this.cbxUserMaintain = new DevExpress.XtraEditors.CheckEdit();
     this.cbxUserDisplay = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.iclMedium = new DevExpress.Utils.ImageCollection(this.components);
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.chkPlanningDelete = new DevExpress.XtraEditors.CheckEdit();
     this.chkPlanningMaintain = new DevExpress.XtraEditors.CheckEdit();
     this.chkPlanningDisplay = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.chkVehiclesMaintain = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.gbxIdentification.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxActive.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSurname.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabctrlUser)).BeginInit();
     this.tabctrlUser.SuspendLayout();
     this.tabpageMain.SuspendLayout();
     this.gbxAuthentication.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.louEmployee.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPassword.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLogin.Properties)).BeginInit();
     this.tabpageAuthorisation.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialCategoryDelete.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialCategoryMaintain.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialCategoryDisplay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialDelete.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialMaintain.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialDisplay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialMemoDelete.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialMemoMaintain.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialMemoDisplay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialMaintenanceDelete.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialMaintenanceMaintain.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialMaintenanceDisplay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelCorrectionDelete.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelCorrectionMaintain.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelCorrectionDisplay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelDeliveryDelete.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelDeliveryMaintain.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelDeliveryDisplay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxVehicleDisplay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelDelete.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelMaintain.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelDisplay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxEmployeeDisplay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxCostingDisplay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxCustomerDisplay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxSettingsMaintain.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxTaskDelete.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxTaskMaintain.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxTaskDisplay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxUserDelete.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxUserMaintain.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxUserDisplay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.iclMedium)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkPlanningDelete.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkPlanningMaintain.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkPlanningDisplay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkVehiclesMaintain.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gbxIdentification
     //
     this.gbxIdentification.Controls.Add(this.cbxActive);
     this.gbxIdentification.Controls.Add(this.lblName);
     this.gbxIdentification.Controls.Add(this.lblSurname);
     this.gbxIdentification.Controls.Add(this.txtName);
     this.gbxIdentification.Controls.Add(this.txtSurname);
     this.gbxIdentification.Location = new System.Drawing.Point(3, 4);
     this.gbxIdentification.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.gbxIdentification.Name = "gbxIdentification";
     this.gbxIdentification.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.gbxIdentification.Size = new System.Drawing.Size(481, 103);
     this.gbxIdentification.TabIndex = 0;
     this.gbxIdentification.TabStop = false;
     this.gbxIdentification.Text = "Identification";
     //
     // cbxActive
     //
     this.cbxActive.Location = new System.Drawing.Point(369, 25);
     this.cbxActive.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxActive.Name = "cbxActive";
     this.cbxActive.Properties.Caption = "Active";
     this.cbxActive.Size = new System.Drawing.Size(87, 20);
     this.cbxActive.TabIndex = 28;
     //
     // lblName
     //
     this.lblName.Location = new System.Drawing.Point(26, 60);
     this.lblName.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(33, 16);
     this.lblName.TabIndex = 27;
     this.lblName.Text = "Name";
     //
     // lblSurname
     //
     this.lblSurname.Location = new System.Drawing.Point(26, 28);
     this.lblSurname.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.lblSurname.Name = "lblSurname";
     this.lblSurname.Size = new System.Drawing.Size(52, 16);
     this.lblSurname.TabIndex = 26;
     this.lblSurname.Text = "Surname";
     //
     // txtName
     //
     this.txtName.Location = new System.Drawing.Point(128, 57);
     this.txtName.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(216, 22);
     this.txtName.TabIndex = 25;
     //
     // txtSurname
     //
     this.txtSurname.Location = new System.Drawing.Point(128, 25);
     this.txtSurname.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtSurname.Name = "txtSurname";
     this.txtSurname.Size = new System.Drawing.Size(216, 22);
     this.txtSurname.TabIndex = 24;
     //
     // tabctrlUser
     //
     this.tabctrlUser.Location = new System.Drawing.Point(14, 15);
     this.tabctrlUser.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.tabctrlUser.Name = "tabctrlUser";
     this.tabctrlUser.SelectedTabPage = this.tabpageMain;
     this.tabctrlUser.Size = new System.Drawing.Size(495, 652);
     this.tabctrlUser.TabIndex = 1;
     this.tabctrlUser.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabpageMain,
     this.tabpageAuthorisation});
     //
     // tabpageMain
     //
     this.tabpageMain.Controls.Add(this.gbxAuthentication);
     this.tabpageMain.Controls.Add(this.gbxIdentification);
     this.tabpageMain.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.tabpageMain.Name = "tabpageMain";
     this.tabpageMain.Size = new System.Drawing.Size(489, 519);
     this.tabpageMain.Text = "Main";
     //
     // gbxAuthentication
     //
     this.gbxAuthentication.Controls.Add(this.louEmployee);
     this.gbxAuthentication.Controls.Add(this.labelControl1);
     this.gbxAuthentication.Controls.Add(this.lblPassword);
     this.gbxAuthentication.Controls.Add(this.lblLogin);
     this.gbxAuthentication.Controls.Add(this.txtPassword);
     this.gbxAuthentication.Controls.Add(this.txtLogin);
     this.gbxAuthentication.Location = new System.Drawing.Point(3, 114);
     this.gbxAuthentication.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.gbxAuthentication.Name = "gbxAuthentication";
     this.gbxAuthentication.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.gbxAuthentication.Size = new System.Drawing.Size(481, 142);
     this.gbxAuthentication.TabIndex = 1;
     this.gbxAuthentication.TabStop = false;
     this.gbxAuthentication.Text = "Authentication";
     //
     // louEmployee
     //
     this.louEmployee.Location = new System.Drawing.Point(128, 89);
     this.louEmployee.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.louEmployee.Name = "louEmployee";
     this.louEmployee.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louEmployee.Properties.DisplayMember = "DisplayName";
     this.louEmployee.Properties.NullText = "";
     this.louEmployee.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louEmployee.Properties.View = this.gridView4;
     this.louEmployee.Size = new System.Drawing.Size(216, 22);
     this.louEmployee.TabIndex = 30;
     //
     // gridView4
     //
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2});
     this.gridView4.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView4.OptionsView.ColumnAutoWidth = false;
     this.gridView4.OptionsView.ShowAutoFilterRow = true;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Naam";
     this.gridColumn1.FieldName = "Name";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 150;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Achternaam";
     this.gridColumn2.FieldName = "Surname";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(26, 92);
     this.labelControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(92, 16);
     this.labelControl1.TabIndex = 24;
     this.labelControl1.Text = "Application User";
     //
     // lblPassword
     //
     this.lblPassword.Location = new System.Drawing.Point(26, 60);
     this.lblPassword.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.lblPassword.Name = "lblPassword";
     this.lblPassword.Size = new System.Drawing.Size(55, 16);
     this.lblPassword.TabIndex = 23;
     this.lblPassword.Text = "Password";
     //
     // lblLogin
     //
     this.lblLogin.Location = new System.Drawing.Point(26, 28);
     this.lblLogin.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.lblLogin.Name = "lblLogin";
     this.lblLogin.Size = new System.Drawing.Size(30, 16);
     this.lblLogin.TabIndex = 22;
     this.lblLogin.Text = "Login";
     //
     // txtPassword
     //
     this.txtPassword.Location = new System.Drawing.Point(128, 57);
     this.txtPassword.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtPassword.Name = "txtPassword";
     this.txtPassword.Properties.PasswordChar = '*';
     this.txtPassword.Size = new System.Drawing.Size(216, 22);
     this.txtPassword.TabIndex = 1;
     //
     // txtLogin
     //
     this.txtLogin.Location = new System.Drawing.Point(128, 25);
     this.txtLogin.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtLogin.Name = "txtLogin";
     this.txtLogin.Size = new System.Drawing.Size(216, 22);
     this.txtLogin.TabIndex = 0;
     //
     // tabpageAuthorisation
     //
     this.tabpageAuthorisation.Controls.Add(this.chkVehiclesMaintain);
     this.tabpageAuthorisation.Controls.Add(this.labelControl27);
     this.tabpageAuthorisation.Controls.Add(this.chkPlanningDelete);
     this.tabpageAuthorisation.Controls.Add(this.chkPlanningMaintain);
     this.tabpageAuthorisation.Controls.Add(this.chkPlanningDisplay);
     this.tabpageAuthorisation.Controls.Add(this.labelControl26);
     this.tabpageAuthorisation.Controls.Add(this.labelControl25);
     this.tabpageAuthorisation.Controls.Add(this.cbxMaterialCategoryDelete);
     this.tabpageAuthorisation.Controls.Add(this.cbxMaterialCategoryMaintain);
     this.tabpageAuthorisation.Controls.Add(this.cbxMaterialCategoryDisplay);
     this.tabpageAuthorisation.Controls.Add(this.labelControl24);
     this.tabpageAuthorisation.Controls.Add(this.cbxMaterialDelete);
     this.tabpageAuthorisation.Controls.Add(this.cbxMaterialMaintain);
     this.tabpageAuthorisation.Controls.Add(this.cbxMaterialDisplay);
     this.tabpageAuthorisation.Controls.Add(this.cbxMaterialMemoDelete);
     this.tabpageAuthorisation.Controls.Add(this.cbxMaterialMemoMaintain);
     this.tabpageAuthorisation.Controls.Add(this.cbxMaterialMemoDisplay);
     this.tabpageAuthorisation.Controls.Add(this.cbxMaterialMaintenanceDelete);
     this.tabpageAuthorisation.Controls.Add(this.cbxMaterialMaintenanceMaintain);
     this.tabpageAuthorisation.Controls.Add(this.cbxMaterialMaintenanceDisplay);
     this.tabpageAuthorisation.Controls.Add(this.labelControl23);
     this.tabpageAuthorisation.Controls.Add(this.labelControl22);
     this.tabpageAuthorisation.Controls.Add(this.labelControl21);
     this.tabpageAuthorisation.Controls.Add(this.labelControl20);
     this.tabpageAuthorisation.Controls.Add(this.cbxFuelCorrectionDelete);
     this.tabpageAuthorisation.Controls.Add(this.cbxFuelCorrectionMaintain);
     this.tabpageAuthorisation.Controls.Add(this.cbxFuelCorrectionDisplay);
     this.tabpageAuthorisation.Controls.Add(this.cbxFuelDeliveryDelete);
     this.tabpageAuthorisation.Controls.Add(this.cbxFuelDeliveryMaintain);
     this.tabpageAuthorisation.Controls.Add(this.cbxFuelDeliveryDisplay);
     this.tabpageAuthorisation.Controls.Add(this.labelControl19);
     this.tabpageAuthorisation.Controls.Add(this.labelControl18);
     this.tabpageAuthorisation.Controls.Add(this.cbxVehicleDisplay);
     this.tabpageAuthorisation.Controls.Add(this.cbxFuelDelete);
     this.tabpageAuthorisation.Controls.Add(this.cbxFuelMaintain);
     this.tabpageAuthorisation.Controls.Add(this.cbxFuelDisplay);
     this.tabpageAuthorisation.Controls.Add(this.labelControl17);
     this.tabpageAuthorisation.Controls.Add(this.labelControl16);
     this.tabpageAuthorisation.Controls.Add(this.labelControl15);
     this.tabpageAuthorisation.Controls.Add(this.labelControl14);
     this.tabpageAuthorisation.Controls.Add(this.labelControl13);
     this.tabpageAuthorisation.Controls.Add(this.cbxEmployeeDisplay);
     this.tabpageAuthorisation.Controls.Add(this.cbxCostingDisplay);
     this.tabpageAuthorisation.Controls.Add(this.labelControl12);
     this.tabpageAuthorisation.Controls.Add(this.labelControl11);
     this.tabpageAuthorisation.Controls.Add(this.cbxCustomerDisplay);
     this.tabpageAuthorisation.Controls.Add(this.cbxSettingsMaintain);
     this.tabpageAuthorisation.Controls.Add(this.labelControl10);
     this.tabpageAuthorisation.Controls.Add(this.cbxTaskDelete);
     this.tabpageAuthorisation.Controls.Add(this.cbxTaskMaintain);
     this.tabpageAuthorisation.Controls.Add(this.cbxTaskDisplay);
     this.tabpageAuthorisation.Controls.Add(this.labelControl9);
     this.tabpageAuthorisation.Controls.Add(this.labelControl8);
     this.tabpageAuthorisation.Controls.Add(this.labelControl7);
     this.tabpageAuthorisation.Controls.Add(this.labelControl6);
     this.tabpageAuthorisation.Controls.Add(this.labelControl5);
     this.tabpageAuthorisation.Controls.Add(this.cbxUserDelete);
     this.tabpageAuthorisation.Controls.Add(this.cbxUserMaintain);
     this.tabpageAuthorisation.Controls.Add(this.cbxUserDisplay);
     this.tabpageAuthorisation.Controls.Add(this.labelControl4);
     this.tabpageAuthorisation.Controls.Add(this.labelControl3);
     this.tabpageAuthorisation.Controls.Add(this.labelControl2);
     this.tabpageAuthorisation.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.tabpageAuthorisation.Name = "tabpageAuthorisation";
     this.tabpageAuthorisation.Size = new System.Drawing.Size(489, 621);
     this.tabpageAuthorisation.Text = "Authorisatie";
     //
     // cbxMaterialCategoryDelete
     //
     this.cbxMaterialCategoryDelete.Location = new System.Drawing.Point(366, 478);
     this.cbxMaterialCategoryDelete.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxMaterialCategoryDelete.Name = "cbxMaterialCategoryDelete";
     this.cbxMaterialCategoryDelete.Properties.Caption = "";
     this.cbxMaterialCategoryDelete.Size = new System.Drawing.Size(87, 19);
     this.cbxMaterialCategoryDelete.TabIndex = 168;
     //
     // cbxMaterialCategoryMaintain
     //
     this.cbxMaterialCategoryMaintain.Location = new System.Drawing.Point(272, 478);
     this.cbxMaterialCategoryMaintain.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxMaterialCategoryMaintain.Name = "cbxMaterialCategoryMaintain";
     this.cbxMaterialCategoryMaintain.Properties.Caption = "";
     this.cbxMaterialCategoryMaintain.Size = new System.Drawing.Size(87, 19);
     this.cbxMaterialCategoryMaintain.TabIndex = 167;
     //
     // cbxMaterialCategoryDisplay
     //
     this.cbxMaterialCategoryDisplay.Location = new System.Drawing.Point(177, 476);
     this.cbxMaterialCategoryDisplay.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxMaterialCategoryDisplay.Name = "cbxMaterialCategoryDisplay";
     this.cbxMaterialCategoryDisplay.Properties.Caption = "";
     this.cbxMaterialCategoryDisplay.Size = new System.Drawing.Size(87, 19);
     this.cbxMaterialCategoryDisplay.TabIndex = 166;
     //
     // labelControl24
     //
     this.labelControl24.Location = new System.Drawing.Point(29, 481);
     this.labelControl24.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(112, 16);
     this.labelControl24.TabIndex = 165;
     this.labelControl24.Text = "Categorie Materiaal";
     //
     // cbxMaterialDelete
     //
     this.cbxMaterialDelete.Location = new System.Drawing.Point(366, 407);
     this.cbxMaterialDelete.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxMaterialDelete.Name = "cbxMaterialDelete";
     this.cbxMaterialDelete.Properties.Caption = "";
     this.cbxMaterialDelete.Size = new System.Drawing.Size(87, 19);
     this.cbxMaterialDelete.TabIndex = 164;
     //
     // cbxMaterialMaintain
     //
     this.cbxMaterialMaintain.Location = new System.Drawing.Point(272, 407);
     this.cbxMaterialMaintain.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxMaterialMaintain.Name = "cbxMaterialMaintain";
     this.cbxMaterialMaintain.Properties.Caption = "";
     this.cbxMaterialMaintain.Size = new System.Drawing.Size(87, 19);
     this.cbxMaterialMaintain.TabIndex = 163;
     //
     // cbxMaterialDisplay
     //
     this.cbxMaterialDisplay.Location = new System.Drawing.Point(177, 406);
     this.cbxMaterialDisplay.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxMaterialDisplay.Name = "cbxMaterialDisplay";
     this.cbxMaterialDisplay.Properties.Caption = "";
     this.cbxMaterialDisplay.Size = new System.Drawing.Size(87, 19);
     this.cbxMaterialDisplay.TabIndex = 162;
     //
     // cbxMaterialMemoDelete
     //
     this.cbxMaterialMemoDelete.Location = new System.Drawing.Point(366, 431);
     this.cbxMaterialMemoDelete.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxMaterialMemoDelete.Name = "cbxMaterialMemoDelete";
     this.cbxMaterialMemoDelete.Properties.Caption = "";
     this.cbxMaterialMemoDelete.Size = new System.Drawing.Size(87, 19);
     this.cbxMaterialMemoDelete.TabIndex = 161;
     //
     // cbxMaterialMemoMaintain
     //
     this.cbxMaterialMemoMaintain.Location = new System.Drawing.Point(272, 431);
     this.cbxMaterialMemoMaintain.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxMaterialMemoMaintain.Name = "cbxMaterialMemoMaintain";
     this.cbxMaterialMemoMaintain.Properties.Caption = "";
     this.cbxMaterialMemoMaintain.Size = new System.Drawing.Size(87, 19);
     this.cbxMaterialMemoMaintain.TabIndex = 160;
     //
     // cbxMaterialMemoDisplay
     //
     this.cbxMaterialMemoDisplay.Location = new System.Drawing.Point(177, 430);
     this.cbxMaterialMemoDisplay.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxMaterialMemoDisplay.Name = "cbxMaterialMemoDisplay";
     this.cbxMaterialMemoDisplay.Properties.Caption = "";
     this.cbxMaterialMemoDisplay.Size = new System.Drawing.Size(87, 19);
     this.cbxMaterialMemoDisplay.TabIndex = 159;
     //
     // cbxMaterialMaintenanceDelete
     //
     this.cbxMaterialMaintenanceDelete.Location = new System.Drawing.Point(366, 454);
     this.cbxMaterialMaintenanceDelete.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxMaterialMaintenanceDelete.Name = "cbxMaterialMaintenanceDelete";
     this.cbxMaterialMaintenanceDelete.Properties.Caption = "";
     this.cbxMaterialMaintenanceDelete.Size = new System.Drawing.Size(87, 19);
     this.cbxMaterialMaintenanceDelete.TabIndex = 158;
     //
     // cbxMaterialMaintenanceMaintain
     //
     this.cbxMaterialMaintenanceMaintain.Location = new System.Drawing.Point(272, 454);
     this.cbxMaterialMaintenanceMaintain.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxMaterialMaintenanceMaintain.Name = "cbxMaterialMaintenanceMaintain";
     this.cbxMaterialMaintenanceMaintain.Properties.Caption = "";
     this.cbxMaterialMaintenanceMaintain.Size = new System.Drawing.Size(87, 19);
     this.cbxMaterialMaintenanceMaintain.TabIndex = 157;
     //
     // cbxMaterialMaintenanceDisplay
     //
     this.cbxMaterialMaintenanceDisplay.Location = new System.Drawing.Point(177, 453);
     this.cbxMaterialMaintenanceDisplay.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxMaterialMaintenanceDisplay.Name = "cbxMaterialMaintenanceDisplay";
     this.cbxMaterialMaintenanceDisplay.Properties.Caption = "";
     this.cbxMaterialMaintenanceDisplay.Size = new System.Drawing.Size(87, 19);
     this.cbxMaterialMaintenanceDisplay.TabIndex = 156;
     //
     // labelControl23
     //
     this.labelControl23.Location = new System.Drawing.Point(29, 458);
     this.labelControl23.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(63, 16);
     this.labelControl23.TabIndex = 155;
     this.labelControl23.Text = "Onderhoud";
     //
     // labelControl22
     //
     this.labelControl22.Location = new System.Drawing.Point(29, 434);
     this.labelControl22.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(35, 16);
     this.labelControl22.TabIndex = 154;
     this.labelControl22.Text = "Memo";
     //
     // labelControl21
     //
     this.labelControl21.Location = new System.Drawing.Point(29, 411);
     this.labelControl21.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(53, 16);
     this.labelControl21.TabIndex = 153;
     this.labelControl21.Text = "Materiaal";
     //
     // labelControl20
     //
     this.labelControl20.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl20.Location = new System.Drawing.Point(23, 388);
     this.labelControl20.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(62, 17);
     this.labelControl20.TabIndex = 152;
     this.labelControl20.Text = "Materiaal";
     //
     // cbxFuelCorrectionDelete
     //
     this.cbxFuelCorrectionDelete.Location = new System.Drawing.Point(366, 292);
     this.cbxFuelCorrectionDelete.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxFuelCorrectionDelete.Name = "cbxFuelCorrectionDelete";
     this.cbxFuelCorrectionDelete.Properties.Caption = "";
     this.cbxFuelCorrectionDelete.Size = new System.Drawing.Size(87, 19);
     this.cbxFuelCorrectionDelete.TabIndex = 151;
     //
     // cbxFuelCorrectionMaintain
     //
     this.cbxFuelCorrectionMaintain.Location = new System.Drawing.Point(272, 292);
     this.cbxFuelCorrectionMaintain.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxFuelCorrectionMaintain.Name = "cbxFuelCorrectionMaintain";
     this.cbxFuelCorrectionMaintain.Properties.Caption = "";
     this.cbxFuelCorrectionMaintain.Size = new System.Drawing.Size(87, 19);
     this.cbxFuelCorrectionMaintain.TabIndex = 150;
     //
     // cbxFuelCorrectionDisplay
     //
     this.cbxFuelCorrectionDisplay.Location = new System.Drawing.Point(177, 290);
     this.cbxFuelCorrectionDisplay.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxFuelCorrectionDisplay.Name = "cbxFuelCorrectionDisplay";
     this.cbxFuelCorrectionDisplay.Properties.Caption = "";
     this.cbxFuelCorrectionDisplay.Size = new System.Drawing.Size(87, 19);
     this.cbxFuelCorrectionDisplay.TabIndex = 149;
     //
     // cbxFuelDeliveryDelete
     //
     this.cbxFuelDeliveryDelete.Location = new System.Drawing.Point(366, 268);
     this.cbxFuelDeliveryDelete.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxFuelDeliveryDelete.Name = "cbxFuelDeliveryDelete";
     this.cbxFuelDeliveryDelete.Properties.Caption = "";
     this.cbxFuelDeliveryDelete.Size = new System.Drawing.Size(87, 19);
     this.cbxFuelDeliveryDelete.TabIndex = 148;
     //
     // cbxFuelDeliveryMaintain
     //
     this.cbxFuelDeliveryMaintain.Location = new System.Drawing.Point(272, 268);
     this.cbxFuelDeliveryMaintain.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxFuelDeliveryMaintain.Name = "cbxFuelDeliveryMaintain";
     this.cbxFuelDeliveryMaintain.Properties.Caption = "";
     this.cbxFuelDeliveryMaintain.Size = new System.Drawing.Size(87, 19);
     this.cbxFuelDeliveryMaintain.TabIndex = 147;
     //
     // cbxFuelDeliveryDisplay
     //
     this.cbxFuelDeliveryDisplay.Location = new System.Drawing.Point(177, 267);
     this.cbxFuelDeliveryDisplay.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxFuelDeliveryDisplay.Name = "cbxFuelDeliveryDisplay";
     this.cbxFuelDeliveryDisplay.Properties.Caption = "";
     this.cbxFuelDeliveryDisplay.Size = new System.Drawing.Size(87, 19);
     this.cbxFuelDeliveryDisplay.TabIndex = 146;
     //
     // labelControl19
     //
     this.labelControl19.Location = new System.Drawing.Point(29, 294);
     this.labelControl19.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(52, 16);
     this.labelControl19.TabIndex = 145;
     this.labelControl19.Text = "Correctie";
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(29, 271);
     this.labelControl18.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(48, 16);
     this.labelControl18.TabIndex = 144;
     this.labelControl18.Text = "Levering";
     //
     // cbxVehicleDisplay
     //
     this.cbxVehicleDisplay.Location = new System.Drawing.Point(177, 343);
     this.cbxVehicleDisplay.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxVehicleDisplay.Name = "cbxVehicleDisplay";
     this.cbxVehicleDisplay.Properties.Caption = "";
     this.cbxVehicleDisplay.Size = new System.Drawing.Size(87, 19);
     this.cbxVehicleDisplay.TabIndex = 143;
     //
     // cbxFuelDelete
     //
     this.cbxFuelDelete.Location = new System.Drawing.Point(366, 245);
     this.cbxFuelDelete.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxFuelDelete.Name = "cbxFuelDelete";
     this.cbxFuelDelete.Properties.Caption = "";
     this.cbxFuelDelete.Size = new System.Drawing.Size(87, 19);
     this.cbxFuelDelete.TabIndex = 142;
     //
     // cbxFuelMaintain
     //
     this.cbxFuelMaintain.Location = new System.Drawing.Point(272, 245);
     this.cbxFuelMaintain.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxFuelMaintain.Name = "cbxFuelMaintain";
     this.cbxFuelMaintain.Properties.Caption = "";
     this.cbxFuelMaintain.Size = new System.Drawing.Size(87, 19);
     this.cbxFuelMaintain.TabIndex = 141;
     //
     // cbxFuelDisplay
     //
     this.cbxFuelDisplay.Location = new System.Drawing.Point(177, 244);
     this.cbxFuelDisplay.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxFuelDisplay.Name = "cbxFuelDisplay";
     this.cbxFuelDisplay.Properties.Caption = "";
     this.cbxFuelDisplay.Size = new System.Drawing.Size(87, 19);
     this.cbxFuelDisplay.TabIndex = 140;
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(31, 347);
     this.labelControl17.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(48, 16);
     this.labelControl17.TabIndex = 139;
     this.labelControl17.Text = "Voertuig";
     //
     // labelControl16
     //
     this.labelControl16.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl16.Location = new System.Drawing.Point(23, 324);
     this.labelControl16.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(60, 17);
     this.labelControl16.TabIndex = 138;
     this.labelControl16.Text = "Voertuig";
     //
     // labelControl15
     //
     this.labelControl15.Location = new System.Drawing.Point(29, 247);
     this.labelControl15.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(32, 16);
     this.labelControl15.TabIndex = 137;
     this.labelControl15.Text = "Pomp";
     //
     // labelControl14
     //
     this.labelControl14.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl14.Location = new System.Drawing.Point(21, 201);
     this.labelControl14.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(66, 17);
     this.labelControl14.TabIndex = 136;
     this.labelControl14.Text = "Financieel";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(29, 169);
     this.labelControl13.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(67, 16);
     this.labelControl13.TabIndex = 135;
     this.labelControl13.Text = "Werknemer";
     //
     // cbxEmployeeDisplay
     //
     this.cbxEmployeeDisplay.Location = new System.Drawing.Point(177, 161);
     this.cbxEmployeeDisplay.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxEmployeeDisplay.Name = "cbxEmployeeDisplay";
     this.cbxEmployeeDisplay.Properties.Caption = "";
     this.cbxEmployeeDisplay.Size = new System.Drawing.Size(87, 19);
     this.cbxEmployeeDisplay.TabIndex = 134;
     //
     // cbxCostingDisplay
     //
     this.cbxCostingDisplay.Location = new System.Drawing.Point(177, 220);
     this.cbxCostingDisplay.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxCostingDisplay.Name = "cbxCostingDisplay";
     this.cbxCostingDisplay.Properties.Caption = "";
     this.cbxCostingDisplay.Size = new System.Drawing.Size(87, 19);
     this.cbxCostingDisplay.TabIndex = 133;
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(29, 224);
     this.labelControl12.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(37, 16);
     this.labelControl12.TabIndex = 132;
     this.labelControl12.Text = "Omzet";
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(29, 145);
     this.labelControl11.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(28, 16);
     this.labelControl11.TabIndex = 131;
     this.labelControl11.Text = "Klant";
     //
     // cbxCustomerDisplay
     //
     this.cbxCustomerDisplay.Location = new System.Drawing.Point(177, 138);
     this.cbxCustomerDisplay.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxCustomerDisplay.Name = "cbxCustomerDisplay";
     this.cbxCustomerDisplay.Properties.Caption = "";
     this.cbxCustomerDisplay.Size = new System.Drawing.Size(87, 19);
     this.cbxCustomerDisplay.TabIndex = 130;
     //
     // cbxSettingsMaintain
     //
     this.cbxSettingsMaintain.Location = new System.Drawing.Point(272, 68);
     this.cbxSettingsMaintain.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxSettingsMaintain.Name = "cbxSettingsMaintain";
     this.cbxSettingsMaintain.Properties.Caption = "";
     this.cbxSettingsMaintain.Size = new System.Drawing.Size(87, 19);
     this.cbxSettingsMaintain.TabIndex = 129;
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(29, 70);
     this.labelControl10.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(46, 16);
     this.labelControl10.TabIndex = 128;
     this.labelControl10.Text = "Settings";
     //
     // cbxTaskDelete
     //
     this.cbxTaskDelete.Location = new System.Drawing.Point(366, 114);
     this.cbxTaskDelete.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxTaskDelete.Name = "cbxTaskDelete";
     this.cbxTaskDelete.Properties.Caption = "";
     this.cbxTaskDelete.Size = new System.Drawing.Size(87, 19);
     this.cbxTaskDelete.TabIndex = 127;
     //
     // cbxTaskMaintain
     //
     this.cbxTaskMaintain.Location = new System.Drawing.Point(272, 114);
     this.cbxTaskMaintain.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxTaskMaintain.Name = "cbxTaskMaintain";
     this.cbxTaskMaintain.Properties.Caption = "";
     this.cbxTaskMaintain.Size = new System.Drawing.Size(87, 19);
     this.cbxTaskMaintain.TabIndex = 126;
     //
     // cbxTaskDisplay
     //
     this.cbxTaskDisplay.Location = new System.Drawing.Point(177, 114);
     this.cbxTaskDisplay.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxTaskDisplay.Name = "cbxTaskDisplay";
     this.cbxTaskDisplay.Properties.Caption = "";
     this.cbxTaskDisplay.Size = new System.Drawing.Size(87, 19);
     this.cbxTaskDisplay.TabIndex = 125;
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(369, 23);
     this.labelControl9.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(36, 16);
     this.labelControl9.TabIndex = 124;
     this.labelControl9.Text = "Delete";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(274, 23);
     this.labelControl8.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(48, 16);
     this.labelControl8.TabIndex = 123;
     this.labelControl8.Text = "Maintain";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(180, 23);
     this.labelControl7.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(40, 16);
     this.labelControl7.TabIndex = 122;
     this.labelControl7.Text = "Display";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(29, 122);
     this.labelControl6.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(28, 16);
     this.labelControl6.TabIndex = 121;
     this.labelControl6.Text = "Taak";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl5.Location = new System.Drawing.Point(21, 98);
     this.labelControl5.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(43, 17);
     this.labelControl5.TabIndex = 120;
     this.labelControl5.Text = "Hoofd";
     //
     // cbxUserDelete
     //
     this.cbxUserDelete.Location = new System.Drawing.Point(366, 44);
     this.cbxUserDelete.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxUserDelete.Name = "cbxUserDelete";
     this.cbxUserDelete.Properties.Caption = "";
     this.cbxUserDelete.Size = new System.Drawing.Size(87, 19);
     this.cbxUserDelete.TabIndex = 119;
     //
     // cbxUserMaintain
     //
     this.cbxUserMaintain.Location = new System.Drawing.Point(272, 44);
     this.cbxUserMaintain.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxUserMaintain.Name = "cbxUserMaintain";
     this.cbxUserMaintain.Properties.Caption = "";
     this.cbxUserMaintain.Size = new System.Drawing.Size(87, 19);
     this.cbxUserMaintain.TabIndex = 118;
     //
     // cbxUserDisplay
     //
     this.cbxUserDisplay.Location = new System.Drawing.Point(177, 44);
     this.cbxUserDisplay.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbxUserDisplay.Name = "cbxUserDisplay";
     this.cbxUserDisplay.Properties.Caption = "";
     this.cbxUserDisplay.Size = new System.Drawing.Size(87, 19);
     this.cbxUserDisplay.TabIndex = 117;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(166, 23);
     this.labelControl4.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(0, 16);
     this.labelControl4.TabIndex = 116;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(29, 47);
     this.labelControl3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(55, 16);
     this.labelControl3.TabIndex = 115;
     this.labelControl3.Text = "Gebruiker";
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(21, 23);
     this.labelControl2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(90, 17);
     this.labelControl2.TabIndex = 114;
     this.labelControl2.Text = "Management";
     //
     // btnCancel
     //
     this.btnCancel.ImageIndex = 120;
     this.btnCancel.ImageList = this.iclMedium;
     this.btnCancel.Location = new System.Drawing.Point(417, 689);
     this.btnCancel.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(87, 39);
     this.btnCancel.TabIndex = 2;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // iclMedium
     //
     this.iclMedium.ImageSize = new System.Drawing.Size(24, 24);
     this.iclMedium.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("iclMedium.ImageStream")));
     this.iclMedium.Images.SetKeyName(0, "add_user_24.png");
     this.iclMedium.Images.SetKeyName(1, "arrow_left_24.png");
     this.iclMedium.Images.SetKeyName(2, "arrow_left_24_d.png");
     this.iclMedium.Images.SetKeyName(3, "arrow_left_24_h.png");
     this.iclMedium.Images.SetKeyName(4, "arrow_right_24.png");
     this.iclMedium.Images.SetKeyName(5, "arrow_right_24_d.png");
     this.iclMedium.Images.SetKeyName(6, "arrow_right_24_h.png");
     this.iclMedium.Images.SetKeyName(7, "copy_clipboard_24.png");
     this.iclMedium.Images.SetKeyName(8, "copy_clipboard_24_d.png");
     this.iclMedium.Images.SetKeyName(9, "copy_clipboard_24_h.png");
     this.iclMedium.Images.SetKeyName(10, "copy_clipboard_lined_24.png");
     this.iclMedium.Images.SetKeyName(11, "copy_clipboard_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(12, "copy_clipboard_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(13, "copy_to_folder_24.png");
     this.iclMedium.Images.SetKeyName(14, "copy_to_folder_24_d.png");
     this.iclMedium.Images.SetKeyName(15, "copy_to_folder_24_h.png");
     this.iclMedium.Images.SetKeyName(16, "cut_clipboard_24.png");
     this.iclMedium.Images.SetKeyName(17, "cut_clipboard_24_d.png");
     this.iclMedium.Images.SetKeyName(18, "cut_clipboard_24_h.png");
     this.iclMedium.Images.SetKeyName(19, "delete_24.png");
     this.iclMedium.Images.SetKeyName(20, "delete_24_d.png");
     this.iclMedium.Images.SetKeyName(21, "delete_24_h.png");
     this.iclMedium.Images.SetKeyName(22, "equipment_24.png");
     this.iclMedium.Images.SetKeyName(23, "excel-24.png");
     this.iclMedium.Images.SetKeyName(24, "favorites_24.png");
     this.iclMedium.Images.SetKeyName(25, "favorites_24_d.png");
     this.iclMedium.Images.SetKeyName(26, "favorites_24_h.png");
     this.iclMedium.Images.SetKeyName(27, "folder_closed_24.png");
     this.iclMedium.Images.SetKeyName(28, "folder_closed_24_d.png");
     this.iclMedium.Images.SetKeyName(29, "folder_closed_24_h.png");
     this.iclMedium.Images.SetKeyName(30, "folder_open_24.png");
     this.iclMedium.Images.SetKeyName(31, "folder_open_24_d.png");
     this.iclMedium.Images.SetKeyName(32, "folder_open_24_h.png");
     this.iclMedium.Images.SetKeyName(33, "folder_options_24.png");
     this.iclMedium.Images.SetKeyName(34, "folder_options_24_d.png");
     this.iclMedium.Images.SetKeyName(35, "folder_options_24_h.png");
     this.iclMedium.Images.SetKeyName(36, "folder_options_b_24.png");
     this.iclMedium.Images.SetKeyName(37, "folder_options_b_24_d.png");
     this.iclMedium.Images.SetKeyName(38, "folder_options_b_24_h.png");
     this.iclMedium.Images.SetKeyName(39, "folders_24.png");
     this.iclMedium.Images.SetKeyName(40, "folders_24_d.png");
     this.iclMedium.Images.SetKeyName(41, "folders_24_h.png");
     this.iclMedium.Images.SetKeyName(42, "help-24.png");
     this.iclMedium.Images.SetKeyName(43, "history_1_24.png");
     this.iclMedium.Images.SetKeyName(44, "history_1_24_d.png");
     this.iclMedium.Images.SetKeyName(45, "history_1_24_h.png");
     this.iclMedium.Images.SetKeyName(46, "history_24.png");
     this.iclMedium.Images.SetKeyName(47, "history_24_d.png");
     this.iclMedium.Images.SetKeyName(48, "history_24_h.png");
     this.iclMedium.Images.SetKeyName(49, "history_b1_24.png");
     this.iclMedium.Images.SetKeyName(50, "history_b1_24_d.png");
     this.iclMedium.Images.SetKeyName(51, "history_b1_24_h.png");
     this.iclMedium.Images.SetKeyName(52, "history_b_24.png");
     this.iclMedium.Images.SetKeyName(53, "history_b_24_d.png");
     this.iclMedium.Images.SetKeyName(54, "history_b_24_h.png");
     this.iclMedium.Images.SetKeyName(55, "home_24.png");
     this.iclMedium.Images.SetKeyName(56, "home_24_d.png");
     this.iclMedium.Images.SetKeyName(57, "home_24_h.png");
     this.iclMedium.Images.SetKeyName(58, "info-24.png");
     this.iclMedium.Images.SetKeyName(59, "logo-24.png");
     this.iclMedium.Images.SetKeyName(60, "mail_24.png");
     this.iclMedium.Images.SetKeyName(61, "mail_24_d.png");
     this.iclMedium.Images.SetKeyName(62, "mail_24_h.png");
     this.iclMedium.Images.SetKeyName(63, "mail_b_24.png");
     this.iclMedium.Images.SetKeyName(64, "mail_b_24_d.png");
     this.iclMedium.Images.SetKeyName(65, "mail_b_24_h.png");
     this.iclMedium.Images.SetKeyName(66, "move_to_folder_24.png");
     this.iclMedium.Images.SetKeyName(67, "move_to_folder_24_d.png");
     this.iclMedium.Images.SetKeyName(68, "move_to_folder_24_h.png");
     this.iclMedium.Images.SetKeyName(69, "new_document_24.png");
     this.iclMedium.Images.SetKeyName(70, "new_document_24_d.png");
     this.iclMedium.Images.SetKeyName(71, "new_document_24_h.png");
     this.iclMedium.Images.SetKeyName(72, "new_document_lined_24.png");
     this.iclMedium.Images.SetKeyName(73, "new_document_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(74, "new_document_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(75, "open_document_24.png");
     this.iclMedium.Images.SetKeyName(76, "open_document_24_d.png");
     this.iclMedium.Images.SetKeyName(77, "open_document_24_h.png");
     this.iclMedium.Images.SetKeyName(78, "paste_clipboard_24.png");
     this.iclMedium.Images.SetKeyName(79, "paste_clipboard_24_d.png");
     this.iclMedium.Images.SetKeyName(80, "paste_clipboard_24_h.png");
     this.iclMedium.Images.SetKeyName(81, "paste_clipboard_lined_24.png");
     this.iclMedium.Images.SetKeyName(82, "paste_clipboard_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(83, "paste_clipboard_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(84, "print_24.png");
     this.iclMedium.Images.SetKeyName(85, "print_24_d.png");
     this.iclMedium.Images.SetKeyName(86, "print_24_h.png");
     this.iclMedium.Images.SetKeyName(87, "print_preview_24.png");
     this.iclMedium.Images.SetKeyName(88, "print_preview_24_d.png");
     this.iclMedium.Images.SetKeyName(89, "print_preview_24_h.png");
     this.iclMedium.Images.SetKeyName(90, "print_preview_lined_24.png");
     this.iclMedium.Images.SetKeyName(91, "print_preview_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(92, "print_preview_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(93, "properties_document_24.png");
     this.iclMedium.Images.SetKeyName(94, "properties_document_24_d.png");
     this.iclMedium.Images.SetKeyName(95, "properties_document_24_h.png");
     this.iclMedium.Images.SetKeyName(96, "properties_document_b_24.png");
     this.iclMedium.Images.SetKeyName(97, "properties_document_b_24_d.png");
     this.iclMedium.Images.SetKeyName(98, "properties_document_b_24_h.png");
     this.iclMedium.Images.SetKeyName(99, "properties_document_b_lined_24.png");
     this.iclMedium.Images.SetKeyName(100, "properties_document_b_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(101, "properties_document_b_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(102, "properties_document_lined_24.png");
     this.iclMedium.Images.SetKeyName(103, "properties_document_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(104, "properties_document_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(105, "redo_24.png");
     this.iclMedium.Images.SetKeyName(106, "redo_24_d.png");
     this.iclMedium.Images.SetKeyName(107, "redo_24_h.png");
     this.iclMedium.Images.SetKeyName(108, "redo_square_24.png");
     this.iclMedium.Images.SetKeyName(109, "redo_square_24_d.png");
     this.iclMedium.Images.SetKeyName(110, "redo_square_24_h.png");
     this.iclMedium.Images.SetKeyName(111, "refresh_document_24.png");
     this.iclMedium.Images.SetKeyName(112, "refresh_document_24_d.png");
     this.iclMedium.Images.SetKeyName(113, "refresh_document_24_h.png");
     this.iclMedium.Images.SetKeyName(114, "save_24.png");
     this.iclMedium.Images.SetKeyName(115, "save_24_d.png");
     this.iclMedium.Images.SetKeyName(116, "save_24_h.png");
     this.iclMedium.Images.SetKeyName(117, "search_24.png");
     this.iclMedium.Images.SetKeyName(118, "search_24_d.png");
     this.iclMedium.Images.SetKeyName(119, "search_24_h.png");
     this.iclMedium.Images.SetKeyName(120, "stop_24.png");
     this.iclMedium.Images.SetKeyName(121, "stop_24_d.png");
     this.iclMedium.Images.SetKeyName(122, "stop_24_h.png");
     this.iclMedium.Images.SetKeyName(123, "undo_24.png");
     this.iclMedium.Images.SetKeyName(124, "undo_24_d.png");
     this.iclMedium.Images.SetKeyName(125, "undo_24_h.png");
     this.iclMedium.Images.SetKeyName(126, "undo_square_24.png");
     this.iclMedium.Images.SetKeyName(127, "undo_square_24_d.png");
     this.iclMedium.Images.SetKeyName(128, "undo_square_24_h.png");
     this.iclMedium.Images.SetKeyName(129, "up_folder_24.png");
     this.iclMedium.Images.SetKeyName(130, "up_folder_24_d.png");
     this.iclMedium.Images.SetKeyName(131, "up_folder_24_h.png");
     this.iclMedium.Images.SetKeyName(132, "users_24.png");
     this.iclMedium.Images.SetKeyName(133, "view_24.png");
     this.iclMedium.Images.SetKeyName(134, "view_24_d.png");
     this.iclMedium.Images.SetKeyName(135, "view_24_h.png");
     this.iclMedium.Images.SetKeyName(136, "ok_24.png");
     //
     // btnSave
     //
     this.btnSave.ImageIndex = 136;
     this.btnSave.ImageList = this.iclMedium;
     this.btnSave.Location = new System.Drawing.Point(324, 689);
     this.btnSave.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(87, 39);
     this.btnSave.TabIndex = 3;
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // labelControl25
     //
     this.labelControl25.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl25.Location = new System.Drawing.Point(21, 517);
     this.labelControl25.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(59, 17);
     this.labelControl25.TabIndex = 169;
     this.labelControl25.Text = "Planning";
     //
     // chkPlanningDelete
     //
     this.chkPlanningDelete.Location = new System.Drawing.Point(363, 538);
     this.chkPlanningDelete.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.chkPlanningDelete.Name = "chkPlanningDelete";
     this.chkPlanningDelete.Properties.Caption = "";
     this.chkPlanningDelete.Size = new System.Drawing.Size(87, 19);
     this.chkPlanningDelete.TabIndex = 173;
     //
     // chkPlanningMaintain
     //
     this.chkPlanningMaintain.Location = new System.Drawing.Point(269, 538);
     this.chkPlanningMaintain.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.chkPlanningMaintain.Name = "chkPlanningMaintain";
     this.chkPlanningMaintain.Properties.Caption = "";
     this.chkPlanningMaintain.Size = new System.Drawing.Size(87, 19);
     this.chkPlanningMaintain.TabIndex = 172;
     //
     // chkPlanningDisplay
     //
     this.chkPlanningDisplay.Location = new System.Drawing.Point(174, 537);
     this.chkPlanningDisplay.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.chkPlanningDisplay.Name = "chkPlanningDisplay";
     this.chkPlanningDisplay.Properties.Caption = "";
     this.chkPlanningDisplay.Size = new System.Drawing.Size(87, 19);
     this.chkPlanningDisplay.TabIndex = 171;
     //
     // labelControl26
     //
     this.labelControl26.Location = new System.Drawing.Point(26, 542);
     this.labelControl26.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(48, 16);
     this.labelControl26.TabIndex = 170;
     this.labelControl26.Text = "Planning";
     //
     // chkVehiclesMaintain
     //
     this.chkVehiclesMaintain.Location = new System.Drawing.Point(269, 562);
     this.chkVehiclesMaintain.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.chkVehiclesMaintain.Name = "chkVehiclesMaintain";
     this.chkVehiclesMaintain.Properties.Caption = "";
     this.chkVehiclesMaintain.Size = new System.Drawing.Size(87, 19);
     this.chkVehiclesMaintain.TabIndex = 175;
     //
     // labelControl27
     //
     this.labelControl27.Location = new System.Drawing.Point(26, 566);
     this.labelControl27.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(62, 16);
     this.labelControl27.TabIndex = 174;
     this.labelControl27.Text = "Voertuigen";
     //
     // User
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(521, 741);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.tabctrlUser);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.LookAndFeel.SkinName = "Office 2010 Blue";
     this.LookAndFeel.UseDefaultLookAndFeel = false;
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "User";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "User";
     this.gbxIdentification.ResumeLayout(false);
     this.gbxIdentification.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxActive.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSurname.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabctrlUser)).EndInit();
     this.tabctrlUser.ResumeLayout(false);
     this.tabpageMain.ResumeLayout(false);
     this.gbxAuthentication.ResumeLayout(false);
     this.gbxAuthentication.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.louEmployee.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPassword.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLogin.Properties)).EndInit();
     this.tabpageAuthorisation.ResumeLayout(false);
     this.tabpageAuthorisation.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialCategoryDelete.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialCategoryMaintain.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialCategoryDisplay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialDelete.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialMaintain.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialDisplay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialMemoDelete.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialMemoMaintain.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialMemoDisplay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialMaintenanceDelete.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialMaintenanceMaintain.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMaterialMaintenanceDisplay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelCorrectionDelete.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelCorrectionMaintain.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelCorrectionDisplay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelDeliveryDelete.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelDeliveryMaintain.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelDeliveryDisplay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxVehicleDisplay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelDelete.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelMaintain.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxFuelDisplay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxEmployeeDisplay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxCostingDisplay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxCustomerDisplay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxSettingsMaintain.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxTaskDelete.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxTaskMaintain.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxTaskDisplay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxUserDelete.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxUserMaintain.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxUserDisplay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.iclMedium)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkPlanningDelete.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkPlanningMaintain.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkPlanningDisplay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkVehiclesMaintain.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.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btnXoa = new System.Windows.Forms.Button();
     this.btnHuy = new System.Windows.Forms.Button();
     this.btnThem = new System.Windows.Forms.Button();
     this.btnDongY = new System.Windows.Forms.Button();
     this.btnSua = new System.Windows.Forms.Button();
     this.nudDonGia = new DevExpress.XtraEditors.SpinEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.txtTenDV = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtMaDV = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.glkPhong = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMaPhieuNhan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPhong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.gridDichVu = new DevExpress.XtraGrid.GridControl();
     this.grdvDV = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMaDV = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTenDV = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGia = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grdCTDV = new DevExpress.XtraGrid.GridControl();
     this.grdv_CTDV = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMaPhong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMaPhieu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNgayThue = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSoLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGiaTien = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanhTien = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMaDV_CTDV = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSearchLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSearchLookUpEdit();
     this.repositoryItemSearchLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.layoutView1 = new DevExpress.XtraGrid.Views.Layout.LayoutView();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.panel1 = new System.Windows.Forms.Panel();
     this.btnCTDV = new System.Windows.Forms.Button();
     this.lblMaPhong = new System.Windows.Forms.Label();
     this.lblSoLuong = new System.Windows.Forms.Label();
     this.btnThemDV = new System.Windows.Forms.Button();
     this.txtSoLuong = new System.Windows.Forms.TextBox();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nudDonGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.glkPhong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDichVu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdvDV)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdCTDV)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdv_CTDV)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSearchLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSearchLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.btnXoa);
     this.groupControl1.Controls.Add(this.btnHuy);
     this.groupControl1.Controls.Add(this.btnThem);
     this.groupControl1.Controls.Add(this.btnDongY);
     this.groupControl1.Controls.Add(this.btnSua);
     this.groupControl1.Controls.Add(this.nudDonGia);
     this.groupControl1.Controls.Add(this.label3);
     this.groupControl1.Controls.Add(this.txtTenDV);
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Controls.Add(this.txtMaDV);
     this.groupControl1.Controls.Add(this.label1);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Left;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(278, 619);
     this.groupControl1.TabIndex = 5;
     this.groupControl1.Text = "Thông tin dịch vụ";
     //
     // btnXoa
     //
     this.btnXoa.Location = new System.Drawing.Point(97, 167);
     this.btnXoa.Name = "btnXoa";
     this.btnXoa.Size = new System.Drawing.Size(74, 29);
     this.btnXoa.TabIndex = 44;
     this.btnXoa.Text = "Xóa";
     this.btnXoa.UseVisualStyleBackColor = true;
     this.btnXoa.Click += new System.EventHandler(this.btnXoa_Click_1);
     //
     // btnHuy
     //
     this.btnHuy.Location = new System.Drawing.Point(97, 167);
     this.btnHuy.Name = "btnHuy";
     this.btnHuy.Size = new System.Drawing.Size(74, 29);
     this.btnHuy.TabIndex = 47;
     this.btnHuy.Text = "Hủy";
     this.btnHuy.UseVisualStyleBackColor = true;
     this.btnHuy.Visible = false;
     this.btnHuy.Click += new System.EventHandler(this.btnHuy_Click);
     //
     // btnThem
     //
     this.btnThem.Location = new System.Drawing.Point(21, 167);
     this.btnThem.Name = "btnThem";
     this.btnThem.Size = new System.Drawing.Size(74, 29);
     this.btnThem.TabIndex = 43;
     this.btnThem.Text = "Thêm";
     this.btnThem.UseVisualStyleBackColor = true;
     this.btnThem.Click += new System.EventHandler(this.btnThem_Click);
     //
     // btnDongY
     //
     this.btnDongY.Location = new System.Drawing.Point(21, 167);
     this.btnDongY.Name = "btnDongY";
     this.btnDongY.Size = new System.Drawing.Size(74, 29);
     this.btnDongY.TabIndex = 46;
     this.btnDongY.Text = "Đồng ý";
     this.btnDongY.UseVisualStyleBackColor = true;
     this.btnDongY.Visible = false;
     this.btnDongY.Click += new System.EventHandler(this.btnDongY_Click);
     //
     // btnSua
     //
     this.btnSua.Location = new System.Drawing.Point(177, 167);
     this.btnSua.Name = "btnSua";
     this.btnSua.Size = new System.Drawing.Size(74, 29);
     this.btnSua.TabIndex = 45;
     this.btnSua.Text = "Sửa";
     this.btnSua.UseVisualStyleBackColor = true;
     this.btnSua.Click += new System.EventHandler(this.btnSua_Click);
     //
     // nudDonGia
     //
     this.nudDonGia.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.nudDonGia.Enabled = false;
     this.nudDonGia.Location = new System.Drawing.Point(71, 126);
     this.nudDonGia.Name = "nudDonGia";
     this.nudDonGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.nudDonGia.Properties.DisplayFormat.FormatString = "000,0";
     this.nudDonGia.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.nudDonGia.Properties.EditFormat.FormatString = "000,0";
     this.nudDonGia.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.nudDonGia.Properties.Increment = new decimal(new int[] {
     5000,
     0,
     0,
     0});
     this.nudDonGia.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
     this.nudDonGia.Properties.MaxValue = new decimal(new int[] {
     999999,
     0,
     0,
     0});
     this.nudDonGia.Size = new System.Drawing.Size(180, 20);
     this.nudDonGia.TabIndex = 38;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(7, 130);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(44, 13);
     this.label3.TabIndex = 4;
     this.label3.Text = "Đơn giá";
     //
     // txtTenDV
     //
     this.txtTenDV.Enabled = false;
     this.txtTenDV.Location = new System.Drawing.Point(71, 92);
     this.txtTenDV.Name = "txtTenDV";
     this.txtTenDV.Size = new System.Drawing.Size(180, 21);
     this.txtTenDV.TabIndex = 3;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(7, 97);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(62, 13);
     this.label2.TabIndex = 2;
     this.label2.Text = "Tên dịch vụ";
     //
     // txtMaDV
     //
     this.txtMaDV.Enabled = false;
     this.txtMaDV.Location = new System.Drawing.Point(71, 58);
     this.txtMaDV.Name = "txtMaDV";
     this.txtMaDV.Size = new System.Drawing.Size(180, 21);
     this.txtMaDV.TabIndex = 1;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(7, 63);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(58, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Mã dịch vụ";
     //
     // glkPhong
     //
     this.glkPhong.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.glkPhong.Location = new System.Drawing.Point(4, 260);
     this.glkPhong.Name = "glkPhong";
     this.glkPhong.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.glkPhong.Properties.View = this.gridLookUpEdit1View;
     this.glkPhong.Size = new System.Drawing.Size(31, 20);
     this.glkPhong.TabIndex = 48;
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMaPhieuNhan,
     this.colPhong});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colMaPhieuNhan
     //
     this.colMaPhieuNhan.Caption = "Mã phiếu";
     this.colMaPhieuNhan.FieldName = "MAPHIEU";
     this.colMaPhieuNhan.Name = "colMaPhieuNhan";
     this.colMaPhieuNhan.Visible = true;
     this.colMaPhieuNhan.VisibleIndex = 0;
     //
     // colPhong
     //
     this.colPhong.Caption = "Phòng";
     this.colPhong.FieldName = "MAPHONG";
     this.colPhong.Name = "colPhong";
     this.colPhong.Visible = true;
     this.colPhong.VisibleIndex = 1;
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.gridDichVu);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Left;
     this.groupControl2.Location = new System.Drawing.Point(278, 0);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(392, 619);
     this.groupControl2.TabIndex = 8;
     this.groupControl2.Text = "Dịch vụ";
     //
     // gridDichVu
     //
     this.gridDichVu.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridDichVu.Location = new System.Drawing.Point(2, 21);
     this.gridDichVu.MainView = this.grdvDV;
     this.gridDichVu.Name = "gridDichVu";
     this.gridDichVu.Size = new System.Drawing.Size(388, 596);
     this.gridDichVu.TabIndex = 0;
     this.gridDichVu.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grdvDV});
     //
     // grdvDV
     //
     this.grdvDV.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMaDV,
     this.colTenDV,
     this.colGia});
     this.grdvDV.GridControl = this.gridDichVu;
     this.grdvDV.Name = "grdvDV";
     this.grdvDV.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.grdvDV.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.grdvDV.OptionsBehavior.AllowFixedGroups = DevExpress.Utils.DefaultBoolean.False;
     this.grdvDV.OptionsBehavior.Editable = false;
     this.grdvDV.OptionsCustomization.AllowColumnMoving = false;
     this.grdvDV.OptionsFilter.AllowColumnMRUFilterList = false;
     this.grdvDV.OptionsFilter.AllowFilterEditor = false;
     this.grdvDV.OptionsFilter.AllowFilterIncrementalSearch = false;
     this.grdvDV.OptionsFilter.AllowMRUFilterList = false;
     this.grdvDV.OptionsFilter.AllowMultiSelectInCheckedFilterPopup = false;
     this.grdvDV.OptionsFind.AlwaysVisible = true;
     this.grdvDV.OptionsFind.ShowCloseButton = false;
     this.grdvDV.OptionsMenu.EnableGroupPanelMenu = false;
     this.grdvDV.OptionsNavigation.AutoFocusNewRow = true;
     this.grdvDV.OptionsView.ShowGroupPanel = false;
     this.grdvDV.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
     //
     // colMaDV
     //
     this.colMaDV.Caption = "Mã DV";
     this.colMaDV.FieldName = "MADV";
     this.colMaDV.Name = "colMaDV";
     this.colMaDV.Visible = true;
     this.colMaDV.VisibleIndex = 0;
     this.colMaDV.Width = 67;
     //
     // colTenDV
     //
     this.colTenDV.Caption = "Dịch vụ";
     this.colTenDV.FieldName = "TENDV";
     this.colTenDV.Name = "colTenDV";
     this.colTenDV.Visible = true;
     this.colTenDV.VisibleIndex = 1;
     this.colTenDV.Width = 152;
     //
     // colGia
     //
     this.colGia.Caption = "Đơn giá";
     this.colGia.DisplayFormat.FormatString = "n0";
     this.colGia.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colGia.FieldName = "DONGIA";
     this.colGia.Name = "colGia";
     this.colGia.Visible = true;
     this.colGia.VisibleIndex = 2;
     this.colGia.Width = 153;
     //
     // grdCTDV
     //
     this.grdCTDV.Dock = System.Windows.Forms.DockStyle.Fill;
     gridLevelNode2.RelationName = "Level1";
     this.grdCTDV.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode2});
     this.grdCTDV.Location = new System.Drawing.Point(2, 21);
     this.grdCTDV.MainView = this.grdv_CTDV;
     this.grdCTDV.Name = "grdCTDV";
     this.grdCTDV.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemSearchLookUpEdit1,
     this.repositoryItemLookUpEdit1});
     this.grdCTDV.Size = new System.Drawing.Size(572, 596);
     this.grdCTDV.TabIndex = 1;
     this.grdCTDV.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grdv_CTDV,
     this.layoutView1,
     this.gridView1});
     //
     // grdv_CTDV
     //
     this.grdv_CTDV.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMaPhong,
     this.colMaPhieu,
     this.colNgayThue,
     this.colTen,
     this.colSoLuong,
     this.colGiaTien,
     this.colThanhTien,
     this.colMaDV_CTDV});
     this.grdv_CTDV.GridControl = this.grdCTDV;
     this.grdv_CTDV.GroupCount = 1;
     this.grdv_CTDV.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "colThanhTien", null, "(Tổng: {0:n0})")});
     this.grdv_CTDV.Name = "grdv_CTDV";
     this.grdv_CTDV.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.grdv_CTDV.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.grdv_CTDV.OptionsBehavior.AllowFixedGroups = DevExpress.Utils.DefaultBoolean.False;
     this.grdv_CTDV.OptionsBehavior.AutoExpandAllGroups = true;
     this.grdv_CTDV.OptionsBehavior.Editable = false;
     this.grdv_CTDV.OptionsCustomization.AllowColumnMoving = false;
     this.grdv_CTDV.OptionsFind.AlwaysVisible = true;
     this.grdv_CTDV.OptionsFind.ShowCloseButton = false;
     this.grdv_CTDV.OptionsView.ShowGroupPanel = false;
     this.grdv_CTDV.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colMaPhong, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colMaPhong
     //
     this.colMaPhong.Caption = "Mã phòng";
     this.colMaPhong.FieldName = "MaPhong";
     this.colMaPhong.Name = "colMaPhong";
     this.colMaPhong.Visible = true;
     this.colMaPhong.VisibleIndex = 0;
     //
     // colMaPhieu
     //
     this.colMaPhieu.Caption = "Mã phiếu";
     this.colMaPhieu.FieldName = "MaPhieu";
     this.colMaPhieu.Name = "colMaPhieu";
     this.colMaPhieu.Visible = true;
     this.colMaPhieu.VisibleIndex = 0;
     this.colMaPhieu.Width = 56;
     //
     // colNgayThue
     //
     this.colNgayThue.Caption = "Ngày thuê";
     this.colNgayThue.DisplayFormat.FormatString = "HH:mm:ss dd/MM/yyyy";
     this.colNgayThue.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.colNgayThue.FieldName = "NgayThue";
     this.colNgayThue.Name = "colNgayThue";
     this.colNgayThue.Visible = true;
     this.colNgayThue.VisibleIndex = 1;
     this.colNgayThue.Width = 109;
     //
     // colTen
     //
     this.colTen.Caption = "Tên dịch vụ";
     this.colTen.FieldName = "TenDV";
     this.colTen.Name = "colTen";
     this.colTen.Visible = true;
     this.colTen.VisibleIndex = 2;
     this.colTen.Width = 93;
     //
     // colSoLuong
     //
     this.colSoLuong.Caption = "Số lượng";
     this.colSoLuong.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colSoLuong.FieldName = "SoLuong";
     this.colSoLuong.Name = "colSoLuong";
     this.colSoLuong.Visible = true;
     this.colSoLuong.VisibleIndex = 3;
     this.colSoLuong.Width = 70;
     //
     // colGiaTien
     //
     this.colGiaTien.Caption = "Giá tiền";
     this.colGiaTien.DisplayFormat.FormatString = "n0";
     this.colGiaTien.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colGiaTien.FieldName = "DonGia";
     this.colGiaTien.Name = "colGiaTien";
     this.colGiaTien.Visible = true;
     this.colGiaTien.VisibleIndex = 4;
     this.colGiaTien.Width = 67;
     //
     // colThanhTien
     //
     this.colThanhTien.Caption = "Thành tiền";
     this.colThanhTien.DisplayFormat.FormatString = "n0";
     this.colThanhTien.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colThanhTien.FieldName = "colThanhTien";
     this.colThanhTien.Name = "colThanhTien";
     this.colThanhTien.UnboundExpression = "[SoLuong] * [DonGia]";
     this.colThanhTien.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.colThanhTien.Visible = true;
     this.colThanhTien.VisibleIndex = 5;
     this.colThanhTien.Width = 123;
     //
     // colMaDV_CTDV
     //
     this.colMaDV_CTDV.Caption = "Mã dịch vụ";
     this.colMaDV_CTDV.FieldName = "MaDV";
     this.colMaDV_CTDV.Name = "colMaDV_CTDV";
     //
     // repositoryItemSearchLookUpEdit1
     //
     this.repositoryItemSearchLookUpEdit1.AutoHeight = false;
     this.repositoryItemSearchLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemSearchLookUpEdit1.Name = "repositoryItemSearchLookUpEdit1";
     this.repositoryItemSearchLookUpEdit1.View = this.repositoryItemSearchLookUpEdit1View;
     //
     // repositoryItemSearchLookUpEdit1View
     //
     this.repositoryItemSearchLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemSearchLookUpEdit1View.Name = "repositoryItemSearchLookUpEdit1View";
     this.repositoryItemSearchLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemSearchLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("MaPhong", "Mã Phòng"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("MaPhieu", "Mã Phiếu")});
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     //
     // layoutView1
     //
     this.layoutView1.GridControl = this.grdCTDV;
     this.layoutView1.Name = "layoutView1";
     this.layoutView1.TemplateCard = null;
     //
     // gridView1
     //
     this.gridView1.GridControl = this.grdCTDV;
     this.gridView1.Name = "gridView1";
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.grdCTDV);
     this.groupControl3.Dock = System.Windows.Forms.DockStyle.Right;
     this.groupControl3.Location = new System.Drawing.Point(712, 0);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(576, 619);
     this.groupControl3.TabIndex = 9;
     this.groupControl3.Text = "Phòng";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnCTDV);
     this.panel1.Controls.Add(this.glkPhong);
     this.panel1.Controls.Add(this.lblMaPhong);
     this.panel1.Controls.Add(this.lblSoLuong);
     this.panel1.Controls.Add(this.btnThemDV);
     this.panel1.Controls.Add(this.txtSoLuong);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(670, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(42, 619);
     this.panel1.TabIndex = 10;
     //
     // btnCTDV
     //
     this.btnCTDV.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCTDV.Location = new System.Drawing.Point(7, 296);
     this.btnCTDV.Name = "btnCTDV";
     this.btnCTDV.Size = new System.Drawing.Size(29, 23);
     this.btnCTDV.TabIndex = 49;
     this.btnCTDV.Text = "Xóa";
     this.btnCTDV.UseVisualStyleBackColor = true;
     this.btnCTDV.Click += new System.EventHandler(this.btnCTDV_Click);
     //
     // lblMaPhong
     //
     this.lblMaPhong.AutoSize = true;
     this.lblMaPhong.Location = new System.Drawing.Point(3, 232);
     this.lblMaPhong.Name = "lblMaPhong";
     this.lblMaPhong.Size = new System.Drawing.Size(58, 13);
     this.lblMaPhong.TabIndex = 3;
     this.lblMaPhong.Text = "Mã phòng:";
     //
     // lblSoLuong
     //
     this.lblSoLuong.AutoSize = true;
     this.lblSoLuong.Location = new System.Drawing.Point(4, 183);
     this.lblSoLuong.Name = "lblSoLuong";
     this.lblSoLuong.Size = new System.Drawing.Size(53, 13);
     this.lblSoLuong.TabIndex = 3;
     this.lblSoLuong.Text = "Số lượng:";
     //
     // btnThemDV
     //
     this.btnThemDV.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.btnThemDV.Location = new System.Drawing.Point(7, 147);
     this.btnThemDV.Name = "btnThemDV";
     this.btnThemDV.Size = new System.Drawing.Size(29, 23);
     this.btnThemDV.TabIndex = 1;
     this.btnThemDV.Text = "->";
     this.btnThemDV.UseVisualStyleBackColor = true;
     this.btnThemDV.Click += new System.EventHandler(this.btnThemDV_Click);
     //
     // txtSoLuong
     //
     this.txtSoLuong.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtSoLuong.Location = new System.Drawing.Point(6, 202);
     this.txtSoLuong.Name = "txtSoLuong";
     this.txtSoLuong.Size = new System.Drawing.Size(29, 21);
     this.txtSoLuong.TabIndex = 0;
     this.txtSoLuong.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSoLuong_KeyPress);
     //
     // backgroundWorker1
     //
     this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
     this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
     //
     // usrDichVu
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.groupControl3);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Name = "usrDichVu";
     this.Size = new System.Drawing.Size(1288, 619);
     this.Load += new System.EventHandler(this.usrDichVu_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nudDonGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.glkPhong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridDichVu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdvDV)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdCTDV)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdv_CTDV)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSearchLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSearchLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmXuatNhapTon));
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiXem = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSua = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatExcel = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.txtKhoHang = new DevExpress.XtraEditors.GridLookUpEdit();
     this.kHOHANGBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsKho = new Do_An_Quan_Ly_Kho.Kho.DS.dsKho();
     this.txtKhoHang_View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMa_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Kho1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDia_Chi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEmail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDien_Thoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colFax = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDi_Dong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThu_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGhi_Chu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.dtDen = new DevExpress.XtraEditors.DateEdit();
     this.dtTu = new DevExpress.XtraEditors.DateEdit();
     this.cbChonNgay = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.xuatNhapTonTheoNgayBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsXuatNhapTon = new Do_An_Quan_Ly_Kho.XuatNhapTon.DataSet.dsXuatNhapTon();
     this.gbList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMa_Hang_Hoa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDon_Vi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMa_Kho_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Luong_Dau_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.rptMayTinh = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colSo_Luong_Nhap_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Luong_Xuat_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Luong_Cuoi_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Dau_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Nhap_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Xuat_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Cuoi_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNhom_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Nhom_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.kHO_HANGTableAdapter = new Do_An_Quan_Ly_Kho.Kho.DS.dsKhoTableAdapters.KHO_HANGTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kHOHANGBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsKho)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang_View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xuatNhapTonTheoNgayBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsXuatNhapTon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     this.SuspendLayout();
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     this.img.Images.SetKeyName(54, "document-excel-icon.png");
     this.img.Images.SetKeyName(55, "Excel-icon (1).png");
     this.img.Images.SetKeyName(56, "Excel-icon (2).png");
     this.img.Images.SetKeyName(57, "Excel-icon.png");
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiXem,
     this.bbiSua,
     this.bbiXoa,
     this.bbiDong,
     this.bbiXuatExcel});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 13;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(49, 160);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem, true),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, false, this.bbiSua, false),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, false, this.bbiXoa, false),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiXuatExcel, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong)});
     this.bar2.OptionsBar.AllowDelete = true;
     this.bar2.OptionsBar.DrawSizeGrip = true;
     this.bar2.Text = "Main menu";
     //
     // bbiXem
     //
     this.bbiXem.Caption = "Xem";
     this.bbiXem.Id = 0;
     this.bbiXem.ImageIndex = 35;
     this.bbiXem.Name = "bbiXem";
     this.bbiXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXem_ItemClick);
     //
     // bbiSua
     //
     this.bbiSua.Caption = "Sửa";
     this.bbiSua.Id = 1;
     this.bbiSua.ImageIndex = 29;
     this.bbiSua.Name = "bbiSua";
     this.bbiSua.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiSua.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiXoa
     //
     this.bbiXoa.Caption = "Xóa";
     this.bbiXoa.Id = 2;
     this.bbiXoa.ImageIndex = 16;
     this.bbiXoa.Name = "bbiXoa";
     this.bbiXoa.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXoa.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiXuatExcel
     //
     this.bbiXuatExcel.Caption = "Xuất Excel";
     this.bbiXuatExcel.Id = 12;
     this.bbiXuatExcel.ImageIndex = 55;
     this.bbiXuatExcel.Name = "bbiXuatExcel";
     this.bbiXuatExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatExcel_ItemClick);
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 6;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1102, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 416);
     this.barDockControlBottom.Size = new System.Drawing.Size(1102, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 392);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1102, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 392);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.txtKhoHang);
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.dtDen);
     this.layoutControl1.Controls.Add(this.dtTu);
     this.layoutControl1.Controls.Add(this.cbChonNgay);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 24);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControl1.TabIndex = 4;
     this.layoutControl1.Text = "layoutControl1";
     //
     // txtKhoHang
     //
     this.txtKhoHang.EditValue = "";
     this.txtKhoHang.Location = new System.Drawing.Point(55, 2);
     this.txtKhoHang.MenuManager = this.bm;
     this.txtKhoHang.Name = "txtKhoHang";
     this.txtKhoHang.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
     this.txtKhoHang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtKhoHang.Properties.DataSource = this.kHOHANGBindingSource;
     this.txtKhoHang.Properties.DisplayMember = "Ten_Kho";
     this.txtKhoHang.Properties.NullText = "";
     this.txtKhoHang.Properties.NullValuePrompt = "(Kho Hàng)";
     this.txtKhoHang.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtKhoHang.Properties.ValueMember = "Ma_Kho";
     this.txtKhoHang.Properties.View = this.txtKhoHang_View;
     this.txtKhoHang.Size = new System.Drawing.Size(121, 20);
     this.txtKhoHang.StyleController = this.layoutControl1;
     this.txtKhoHang.TabIndex = 9;
     this.txtKhoHang.EditValueChanged += new System.EventHandler(this.txtKhoHang_EditValueChanged);
     //
     // kHOHANGBindingSource
     //
     this.kHOHANGBindingSource.DataMember = "KHO_HANG";
     this.kHOHANGBindingSource.DataSource = this.dsKho;
     //
     // dsKho
     //
     this.dsKho.DataSetName = "dsKho";
     this.dsKho.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // txtKhoHang_View
     //
     this.txtKhoHang_View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMa_Kho,
     this.colTen_Kho1,
     this.colDia_Chi,
     this.colEmail,
     this.colDien_Thoai,
     this.colFax,
     this.colDi_Dong,
     this.colThu_Kho,
     this.colGhi_Chu});
     this.txtKhoHang_View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.txtKhoHang_View.Name = "txtKhoHang_View";
     this.txtKhoHang_View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.txtKhoHang_View.OptionsView.ShowAutoFilterRow = true;
     this.txtKhoHang_View.OptionsView.ShowGroupPanel = false;
     //
     // colMa_Kho
     //
     this.colMa_Kho.Caption = "Mã Kho";
     this.colMa_Kho.FieldName = "Ma_Kho";
     this.colMa_Kho.Name = "colMa_Kho";
     this.colMa_Kho.OptionsColumn.ReadOnly = true;
     this.colMa_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Kho.Visible = true;
     this.colMa_Kho.VisibleIndex = 0;
     //
     // colTen_Kho1
     //
     this.colTen_Kho1.Caption = "Tên Kho";
     this.colTen_Kho1.FieldName = "Ten_Kho";
     this.colTen_Kho1.Name = "colTen_Kho1";
     this.colTen_Kho1.OptionsColumn.ReadOnly = true;
     this.colTen_Kho1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Kho1.Visible = true;
     this.colTen_Kho1.VisibleIndex = 1;
     //
     // colDia_Chi
     //
     this.colDia_Chi.Caption = "Địa Chỉ";
     this.colDia_Chi.FieldName = "Dia_Chi";
     this.colDia_Chi.Name = "colDia_Chi";
     this.colDia_Chi.OptionsColumn.ReadOnly = true;
     this.colDia_Chi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDia_Chi.Visible = true;
     this.colDia_Chi.VisibleIndex = 2;
     //
     // colEmail
     //
     this.colEmail.Caption = "Email";
     this.colEmail.FieldName = "Email";
     this.colEmail.Name = "colEmail";
     this.colEmail.OptionsColumn.ReadOnly = true;
     this.colEmail.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colEmail.Visible = true;
     this.colEmail.VisibleIndex = 3;
     //
     // colDien_Thoai
     //
     this.colDien_Thoai.Caption = "Điện Thoại";
     this.colDien_Thoai.FieldName = "Dien_Thoai";
     this.colDien_Thoai.Name = "colDien_Thoai";
     this.colDien_Thoai.OptionsColumn.ReadOnly = true;
     this.colDien_Thoai.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDien_Thoai.Visible = true;
     this.colDien_Thoai.VisibleIndex = 4;
     //
     // colFax
     //
     this.colFax.Caption = "Fax";
     this.colFax.FieldName = "Fax";
     this.colFax.Name = "colFax";
     this.colFax.OptionsColumn.ReadOnly = true;
     this.colFax.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colFax.Visible = true;
     this.colFax.VisibleIndex = 5;
     //
     // colDi_Dong
     //
     this.colDi_Dong.Caption = "Di Động";
     this.colDi_Dong.FieldName = "Di_Dong";
     this.colDi_Dong.Name = "colDi_Dong";
     this.colDi_Dong.OptionsColumn.ReadOnly = true;
     this.colDi_Dong.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDi_Dong.Visible = true;
     this.colDi_Dong.VisibleIndex = 6;
     //
     // colThu_Kho
     //
     this.colThu_Kho.Caption = "Thủ Kho";
     this.colThu_Kho.FieldName = "Thu_Kho";
     this.colThu_Kho.Name = "colThu_Kho";
     this.colThu_Kho.OptionsColumn.ReadOnly = true;
     this.colThu_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThu_Kho.Visible = true;
     this.colThu_Kho.VisibleIndex = 7;
     //
     // colGhi_Chu
     //
     this.colGhi_Chu.Caption = "Ghi Chú";
     this.colGhi_Chu.FieldName = "Ghi_Chu";
     this.colGhi_Chu.Name = "colGhi_Chu";
     this.colGhi_Chu.OptionsColumn.ReadOnly = true;
     this.colGhi_Chu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colGhi_Chu.Visible = true;
     this.colGhi_Chu.VisibleIndex = 8;
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(613, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(487, 20);
     this.layoutControl2.TabIndex = 8;
     this.layoutControl2.Text = "layoutControl2";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(487, 20);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // dtDen
     //
     this.dtDen.EditValue = null;
     this.dtDen.Location = new System.Drawing.Point(523, 2);
     this.dtDen.MenuManager = this.bm;
     this.dtDen.Name = "dtDen";
     this.dtDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtDen.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtDen.Size = new System.Drawing.Size(86, 20);
     this.dtDen.StyleController = this.layoutControl1;
     this.dtDen.TabIndex = 7;
     //
     // dtTu
     //
     this.dtTu.EditValue = null;
     this.dtTu.Location = new System.Drawing.Point(383, 2);
     this.dtTu.MenuManager = this.bm;
     this.dtTu.Name = "dtTu";
     this.dtTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtTu.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtTu.Size = new System.Drawing.Size(83, 20);
     this.dtTu.StyleController = this.layoutControl1;
     this.dtTu.TabIndex = 6;
     //
     // cbChonNgay
     //
     this.cbChonNgay.Location = new System.Drawing.Point(235, 2);
     this.cbChonNgay.MenuManager = this.bm;
     this.cbChonNgay.Name = "cbChonNgay";
     this.cbChonNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbChonNgay.Properties.Items.AddRange(new object[] {
     "Tháng 1",
     "Tháng 2",
     "Tháng 3",
     "Tháng 4",
     "Tháng 5",
     "Tháng 6",
     "Tháng 7",
     "Tháng 8",
     "Tháng 9",
     "Tháng 10",
     "Tháng 11",
     "Tháng 12"});
     this.cbChonNgay.Size = new System.Drawing.Size(91, 20);
     this.cbChonNgay.StyleController = this.layoutControl1;
     this.cbChonNgay.TabIndex = 5;
     this.cbChonNgay.SelectedIndexChanged += new System.EventHandler(this.cbChonNgay_SelectedIndexChanged);
     //
     // gcList
     //
     this.gcList.Cursor = System.Windows.Forms.Cursors.Default;
     this.gcList.DataSource = this.xuatNhapTonTheoNgayBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 26);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rptMayTinh});
     this.gcList.Size = new System.Drawing.Size(1098, 364);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // xuatNhapTonTheoNgayBindingSource
     //
     this.xuatNhapTonTheoNgayBindingSource.DataMember = "Xuat_Nhap_Ton_Theo_Ngay";
     this.xuatNhapTonTheoNgayBindingSource.DataSource = this.dsXuatNhapTon;
     //
     // dsXuatNhapTon
     //
     this.dsXuatNhapTon.DataSetName = "dsXuatNhapTon";
     this.dsXuatNhapTon.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList
     //
     this.gbList.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.gbList.Appearance.GroupRow.ForeColor = System.Drawing.Color.Red;
     this.gbList.Appearance.GroupRow.Options.UseFont = true;
     this.gbList.Appearance.GroupRow.Options.UseForeColor = true;
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMa_Hang_Hoa,
     this.colTen_Hang,
     this.colDon_Vi,
     this.colMa_Kho_Hang,
     this.colTen_Kho,
     this.colSo_Luong_Dau_Ky,
     this.colSo_Luong_Nhap_Trong_Ky,
     this.colSo_Luong_Xuat_Trong_Ky,
     this.colSo_Luong_Cuoi_Ky,
     this.colThanh_Tien_Dau_Ky,
     this.colThanh_Tien_Nhap_Trong_Ky,
     this.colThanh_Tien_Xuat_Trong_Ky,
     this.colThanh_Tien_Cuoi_Ky,
     this.colNhom_Hang,
     this.colTen_Nhom_Hang});
     this.gbList.GridControl = this.gcList;
     this.gbList.GroupCount = 1;
     this.gbList.GroupPanelText = "Kéo cột và thả vào đây để nhóm dữ liệu";
     this.gbList.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Dau_Ky", this.colSo_Luong_Dau_Ky, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Nhap_Trong_Ky", this.colSo_Luong_Nhap_Trong_Ky, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Xuat_Trong_Ky", this.colSo_Luong_Xuat_Trong_Ky, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Cuoi_Ky", this.colSo_Luong_Cuoi_Ky, "{0:##,##0.###}")});
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsBehavior.AutoExpandAllGroups = true;
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.ColumnHeaderAutoHeight = DevExpress.Utils.DefaultBoolean.True;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colTen_Nhom_Hang, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     //
     // colMa_Hang_Hoa
     //
     this.colMa_Hang_Hoa.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Hang_Hoa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Hang_Hoa.Caption = "Mã Hàng Hóa";
     this.colMa_Hang_Hoa.FieldName = "Ma_Hang_Hoa";
     this.colMa_Hang_Hoa.Name = "colMa_Hang_Hoa";
     this.colMa_Hang_Hoa.OptionsColumn.ReadOnly = true;
     this.colMa_Hang_Hoa.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Hang_Hoa.Visible = true;
     this.colMa_Hang_Hoa.VisibleIndex = 0;
     this.colMa_Hang_Hoa.Width = 89;
     //
     // colTen_Hang
     //
     this.colTen_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Hang.Caption = "Tên Hàng";
     this.colTen_Hang.FieldName = "Ten_Hang";
     this.colTen_Hang.Name = "colTen_Hang";
     this.colTen_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Hang.Visible = true;
     this.colTen_Hang.VisibleIndex = 1;
     //
     // colDon_Vi
     //
     this.colDon_Vi.AppearanceHeader.Options.UseTextOptions = true;
     this.colDon_Vi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDon_Vi.Caption = "Đơn Vị";
     this.colDon_Vi.FieldName = "Don_Vi";
     this.colDon_Vi.Name = "colDon_Vi";
     this.colDon_Vi.OptionsColumn.ReadOnly = true;
     this.colDon_Vi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDon_Vi.Visible = true;
     this.colDon_Vi.VisibleIndex = 2;
     //
     // colMa_Kho_Hang
     //
     this.colMa_Kho_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Kho_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Kho_Hang.FieldName = "Ma_Kho_Hang";
     this.colMa_Kho_Hang.Name = "colMa_Kho_Hang";
     this.colMa_Kho_Hang.OptionsColumn.ReadOnly = true;
     this.colMa_Kho_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colTen_Kho
     //
     this.colTen_Kho.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Kho.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Kho.Caption = "Kho Hàng";
     this.colTen_Kho.FieldName = "Ten_Kho";
     this.colTen_Kho.Name = "colTen_Kho";
     this.colTen_Kho.OptionsColumn.ReadOnly = true;
     this.colTen_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Kho.Visible = true;
     this.colTen_Kho.VisibleIndex = 3;
     //
     // colSo_Luong_Dau_Ky
     //
     this.colSo_Luong_Dau_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Dau_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Dau_Ky.Caption = "Đầu Kỳ / Số Lượng";
     this.colSo_Luong_Dau_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Dau_Ky.FieldName = "So_Luong_Dau_Ky";
     this.colSo_Luong_Dau_Ky.Name = "colSo_Luong_Dau_Ky";
     this.colSo_Luong_Dau_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Dau_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Dau_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Dau_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Dau_Ky.Visible = true;
     this.colSo_Luong_Dau_Ky.VisibleIndex = 4;
     this.colSo_Luong_Dau_Ky.Width = 109;
     //
     // rptMayTinh
     //
     this.rptMayTinh.AutoHeight = false;
     this.rptMayTinh.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinh.DisplayFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.EditFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.Name = "rptMayTinh";
     //
     // colSo_Luong_Nhap_Trong_Ky
     //
     this.colSo_Luong_Nhap_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Nhap_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Nhap_Trong_Ky.Caption = "Trong Kỳ / Số Lượng Nhập";
     this.colSo_Luong_Nhap_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Nhap_Trong_Ky.FieldName = "So_Luong_Nhap_Trong_Ky";
     this.colSo_Luong_Nhap_Trong_Ky.Name = "colSo_Luong_Nhap_Trong_Ky";
     this.colSo_Luong_Nhap_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Nhap_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Nhap_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Nhap_Trong_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Nhap_Trong_Ky.Visible = true;
     this.colSo_Luong_Nhap_Trong_Ky.VisibleIndex = 5;
     this.colSo_Luong_Nhap_Trong_Ky.Width = 149;
     //
     // colSo_Luong_Xuat_Trong_Ky
     //
     this.colSo_Luong_Xuat_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Xuat_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Xuat_Trong_Ky.Caption = "Trong Kỳ / Số Lượng Xuât";
     this.colSo_Luong_Xuat_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Xuat_Trong_Ky.FieldName = "So_Luong_Xuat_Trong_Ky";
     this.colSo_Luong_Xuat_Trong_Ky.Name = "colSo_Luong_Xuat_Trong_Ky";
     this.colSo_Luong_Xuat_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Xuat_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Xuat_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Xuat_Trong_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Xuat_Trong_Ky.Visible = true;
     this.colSo_Luong_Xuat_Trong_Ky.VisibleIndex = 6;
     this.colSo_Luong_Xuat_Trong_Ky.Width = 146;
     //
     // colSo_Luong_Cuoi_Ky
     //
     this.colSo_Luong_Cuoi_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Cuoi_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Cuoi_Ky.Caption = "Cuối Kỳ / Số Lượng";
     this.colSo_Luong_Cuoi_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Cuoi_Ky.FieldName = "So_Luong_Cuoi_Ky";
     this.colSo_Luong_Cuoi_Ky.Name = "colSo_Luong_Cuoi_Ky";
     this.colSo_Luong_Cuoi_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Cuoi_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Cuoi_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Cuoi_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Cuoi_Ky.Visible = true;
     this.colSo_Luong_Cuoi_Ky.VisibleIndex = 7;
     this.colSo_Luong_Cuoi_Ky.Width = 111;
     //
     // colThanh_Tien_Dau_Ky
     //
     this.colThanh_Tien_Dau_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Dau_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Dau_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Dau_Ky.FieldName = "Thanh_Tien_Dau_Ky";
     this.colThanh_Tien_Dau_Ky.Name = "colThanh_Tien_Dau_Ky";
     this.colThanh_Tien_Dau_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Dau_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Dau_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Dau_Ky", "{0:##,##0.###}")});
     //
     // colThanh_Tien_Nhap_Trong_Ky
     //
     this.colThanh_Tien_Nhap_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Nhap_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Nhap_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Nhap_Trong_Ky.FieldName = "Thanh_Tien_Nhap_Trong_Ky";
     this.colThanh_Tien_Nhap_Trong_Ky.Name = "colThanh_Tien_Nhap_Trong_Ky";
     this.colThanh_Tien_Nhap_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Nhap_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Nhap_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Nhap_Trong_Ky", "{0:##,##0.###}")});
     //
     // colThanh_Tien_Xuat_Trong_Ky
     //
     this.colThanh_Tien_Xuat_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Xuat_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Xuat_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Xuat_Trong_Ky.FieldName = "Thanh_Tien_Xuat_Trong_Ky";
     this.colThanh_Tien_Xuat_Trong_Ky.Name = "colThanh_Tien_Xuat_Trong_Ky";
     this.colThanh_Tien_Xuat_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Xuat_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Xuat_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Xuat_Trong_Ky", "{0:##,##0.###}")});
     //
     // colThanh_Tien_Cuoi_Ky
     //
     this.colThanh_Tien_Cuoi_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Cuoi_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Cuoi_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Cuoi_Ky.FieldName = "Thanh_Tien_Cuoi_Ky";
     this.colThanh_Tien_Cuoi_Ky.Name = "colThanh_Tien_Cuoi_Ky";
     this.colThanh_Tien_Cuoi_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Cuoi_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Cuoi_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Cuoi_Ky", "{0:##,##0.###}")});
     //
     // colNhom_Hang
     //
     this.colNhom_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colNhom_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNhom_Hang.FieldName = "Nhom_Hang";
     this.colNhom_Hang.Name = "colNhom_Hang";
     this.colNhom_Hang.OptionsColumn.ReadOnly = true;
     this.colNhom_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colTen_Nhom_Hang
     //
     this.colTen_Nhom_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Nhom_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Nhom_Hang.Caption = "Nhóm Hàng";
     this.colTen_Nhom_Hang.FieldName = "Ten_Nhom_Hang";
     this.colTen_Nhom_Hang.Name = "colTen_Nhom_Hang";
     this.colTen_Nhom_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Nhom_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Nhom_Hang.Visible = true;
     this.colTen_Nhom_Hang.VisibleIndex = 4;
     this.colTen_Nhom_Hang.Width = 101;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5,
     this.layoutControlItem6});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1102, 368);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cbChonNgay;
     this.layoutControlItem2.CustomizationFormText = "Tùy Chọn:";
     this.layoutControlItem2.Location = new System.Drawing.Point(178, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(109, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Tùy Chọn:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(50, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.dtTu;
     this.layoutControlItem3.CustomizationFormText = "Từ";
     this.layoutControlItem3.Location = new System.Drawing.Point(328, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(140, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Từ";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(50, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.dtDen;
     this.layoutControlItem4.CustomizationFormText = "Đến";
     this.layoutControlItem4.Location = new System.Drawing.Point(468, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(143, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Đến";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(50, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(611, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(491, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.txtKhoHang;
     this.layoutControlItem6.CustomizationFormText = "Kho Hàng:";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(178, 24);
     this.layoutControlItem6.Text = "Kho Hàng:";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(50, 13);
     //
     // kHO_HANGTableAdapter
     //
     this.kHO_HANGTableAdapter.ClearBeforeFill = true;
     //
     // frmXuatNhapTon
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1102, 416);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmXuatNhapTon";
     this.Text = "Xuất Nhập Tồn";
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kHOHANGBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsKho)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang_View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xuatNhapTonTheoNgayBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsXuatNhapTon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lblLKH = new System.Windows.Forms.Label();
     this.txtMaKH = new System.Windows.Forms.TextBox();
     this.lblMaKH = new System.Windows.Forms.Label();
     this.gridLookUpEditViewLoaiKH = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.glkLKH = new DevExpress.XtraEditors.GridLookUpEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.cmbGioiTinh = new System.Windows.Forms.ComboBox();
     this.lblGioiTinh = new System.Windows.Forms.Label();
     this.btnDongY = new System.Windows.Forms.Button();
     this.btnHuy = new System.Windows.Forms.Button();
     this.btnThem = new System.Windows.Forms.Button();
     this.btnXoa = new System.Windows.Forms.Button();
     this.btnSua = new System.Windows.Forms.Button();
     this.txtSDT = new System.Windows.Forms.TextBox();
     this.lblSDT = new System.Windows.Forms.Label();
     this.txtDiaChi = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.txtEmail = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.txtCMND = new System.Windows.Forms.TextBox();
     this.lblCMND = new System.Windows.Forms.Label();
     this.txtHoten = new System.Windows.Forms.TextBox();
     this.lblHoTen = new System.Windows.Forms.Label();
     this.grdKH = new DevExpress.XtraGrid.GridControl();
     this.grdvKH = 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.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panel1 = new System.Windows.Forms.Panel();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEditViewLoaiKH)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.glkLKH.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdKH)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdvKH)).BeginInit();
     this.SuspendLayout();
     //
     // lblLKH
     //
     this.lblLKH.AutoSize = true;
     this.lblLKH.Location = new System.Drawing.Point(6, 84);
     this.lblLKH.Name = "lblLKH";
     this.lblLKH.Size = new System.Drawing.Size(78, 13);
     this.lblLKH.TabIndex = 2;
     this.lblLKH.Text = "Loại khác hàng";
     //
     // txtMaKH
     //
     this.txtMaKH.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.txtMaKH.Enabled = false;
     this.txtMaKH.Location = new System.Drawing.Point(87, 55);
     this.txtMaKH.Name = "txtMaKH";
     this.txtMaKH.Size = new System.Drawing.Size(195, 21);
     this.txtMaKH.TabIndex = 1;
     this.txtMaKH.TextChanged += new System.EventHandler(this.txtMaKH_TextChanged);
     //
     // lblMaKH
     //
     this.lblMaKH.AutoSize = true;
     this.lblMaKH.Location = new System.Drawing.Point(5, 58);
     this.lblMaKH.Name = "lblMaKH";
     this.lblMaKH.Size = new System.Drawing.Size(79, 13);
     this.lblMaKH.TabIndex = 0;
     this.lblMaKH.Text = "Mã khách hàng";
     //
     // gridLookUpEditViewLoaiKH
     //
     this.gridLookUpEditViewLoaiKH.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEditViewLoaiKH.Name = "gridLookUpEditViewLoaiKH";
     this.gridLookUpEditViewLoaiKH.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEditViewLoaiKH.OptionsView.ShowGroupPanel = false;
     //
     // gridView1
     //
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridView2
     //
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // glkLKH
     //
     this.glkLKH.EditValue = "";
     this.glkLKH.Enabled = false;
     this.glkLKH.Location = new System.Drawing.Point(87, 82);
     this.glkLKH.Name = "glkLKH";
     this.glkLKH.Properties.Appearance.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.glkLKH.Properties.Appearance.Options.UseBackColor = true;
     this.glkLKH.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.glkLKH.Size = new System.Drawing.Size(195, 20);
     this.glkLKH.TabIndex = 3;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.cmbGioiTinh);
     this.groupControl1.Controls.Add(this.lblGioiTinh);
     this.groupControl1.Controls.Add(this.btnDongY);
     this.groupControl1.Controls.Add(this.btnHuy);
     this.groupControl1.Controls.Add(this.btnThem);
     this.groupControl1.Controls.Add(this.btnXoa);
     this.groupControl1.Controls.Add(this.btnSua);
     this.groupControl1.Controls.Add(this.txtSDT);
     this.groupControl1.Controls.Add(this.lblSDT);
     this.groupControl1.Controls.Add(this.txtDiaChi);
     this.groupControl1.Controls.Add(this.label8);
     this.groupControl1.Controls.Add(this.txtEmail);
     this.groupControl1.Controls.Add(this.label6);
     this.groupControl1.Controls.Add(this.txtCMND);
     this.groupControl1.Controls.Add(this.lblCMND);
     this.groupControl1.Controls.Add(this.txtHoten);
     this.groupControl1.Controls.Add(this.lblHoTen);
     this.groupControl1.Controls.Add(this.glkLKH);
     this.groupControl1.Controls.Add(this.lblLKH);
     this.groupControl1.Controls.Add(this.txtMaKH);
     this.groupControl1.Controls.Add(this.lblMaKH);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Left;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(301, 591);
     this.groupControl1.TabIndex = 3;
     this.groupControl1.Text = "Thông tin khách hàng";
     //
     // cmbGioiTinh
     //
     this.cmbGioiTinh.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.cmbGioiTinh.Enabled = false;
     this.cmbGioiTinh.FormattingEnabled = true;
     this.cmbGioiTinh.Items.AddRange(new object[] {
     "Nam",
     "Nữ"});
     this.cmbGioiTinh.Location = new System.Drawing.Point(87, 135);
     this.cmbGioiTinh.Name = "cmbGioiTinh";
     this.cmbGioiTinh.Size = new System.Drawing.Size(195, 21);
     this.cmbGioiTinh.TabIndex = 53;
     //
     // lblGioiTinh
     //
     this.lblGioiTinh.AutoSize = true;
     this.lblGioiTinh.Location = new System.Drawing.Point(40, 139);
     this.lblGioiTinh.Name = "lblGioiTinh";
     this.lblGioiTinh.Size = new System.Drawing.Size(45, 13);
     this.lblGioiTinh.TabIndex = 52;
     this.lblGioiTinh.Text = "Giới tính";
     //
     // btnDongY
     //
     this.btnDongY.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDongY.Location = new System.Drawing.Point(29, 281);
     this.btnDongY.Name = "btnDongY";
     this.btnDongY.Size = new System.Drawing.Size(74, 28);
     this.btnDongY.TabIndex = 51;
     this.btnDongY.Text = "Đồng ý";
     this.btnDongY.UseVisualStyleBackColor = true;
     this.btnDongY.Visible = false;
     this.btnDongY.Click += new System.EventHandler(this.btnDongY_Click);
     //
     // btnHuy
     //
     this.btnHuy.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.btnHuy.Location = new System.Drawing.Point(109, 281);
     this.btnHuy.Name = "btnHuy";
     this.btnHuy.Size = new System.Drawing.Size(74, 28);
     this.btnHuy.TabIndex = 50;
     this.btnHuy.Text = "Hủy";
     this.btnHuy.UseVisualStyleBackColor = true;
     this.btnHuy.Visible = false;
     this.btnHuy.Click += new System.EventHandler(this.btnHuy_Click);
     //
     // btnThem
     //
     this.btnThem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.btnThem.Location = new System.Drawing.Point(29, 281);
     this.btnThem.Name = "btnThem";
     this.btnThem.Size = new System.Drawing.Size(74, 28);
     this.btnThem.TabIndex = 49;
     this.btnThem.Text = "Thêm";
     this.btnThem.UseVisualStyleBackColor = true;
     this.btnThem.Click += new System.EventHandler(this.btnThem_Click);
     //
     // btnXoa
     //
     this.btnXoa.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.btnXoa.Location = new System.Drawing.Point(109, 281);
     this.btnXoa.Name = "btnXoa";
     this.btnXoa.Size = new System.Drawing.Size(74, 28);
     this.btnXoa.TabIndex = 48;
     this.btnXoa.Text = "Xóa";
     this.btnXoa.UseVisualStyleBackColor = true;
     this.btnXoa.Click += new System.EventHandler(this.btnXoa_Click);
     //
     // btnSua
     //
     this.btnSua.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSua.Location = new System.Drawing.Point(190, 281);
     this.btnSua.Name = "btnSua";
     this.btnSua.Size = new System.Drawing.Size(74, 28);
     this.btnSua.TabIndex = 47;
     this.btnSua.Text = "Sửa";
     this.btnSua.UseVisualStyleBackColor = true;
     this.btnSua.Click += new System.EventHandler(this.btnSua_Click);
     //
     // txtSDT
     //
     this.txtSDT.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.txtSDT.Enabled = false;
     this.txtSDT.Location = new System.Drawing.Point(87, 243);
     this.txtSDT.Name = "txtSDT";
     this.txtSDT.Size = new System.Drawing.Size(195, 21);
     this.txtSDT.TabIndex = 46;
     this.txtSDT.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtCMND_KeyPress);
     //
     // lblSDT
     //
     this.lblSDT.AutoSize = true;
     this.lblSDT.Location = new System.Drawing.Point(59, 246);
     this.lblSDT.Name = "lblSDT";
     this.lblSDT.Size = new System.Drawing.Size(27, 13);
     this.lblSDT.TabIndex = 45;
     this.lblSDT.Text = "SĐT";
     //
     // txtDiaChi
     //
     this.txtDiaChi.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.txtDiaChi.Enabled = false;
     this.txtDiaChi.Location = new System.Drawing.Point(87, 189);
     this.txtDiaChi.Name = "txtDiaChi";
     this.txtDiaChi.Size = new System.Drawing.Size(195, 21);
     this.txtDiaChi.TabIndex = 44;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(46, 192);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(39, 13);
     this.label8.TabIndex = 43;
     this.label8.Text = "Địa chỉ";
     //
     // txtEmail
     //
     this.txtEmail.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.txtEmail.Enabled = false;
     this.txtEmail.Location = new System.Drawing.Point(87, 216);
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Size = new System.Drawing.Size(195, 21);
     this.txtEmail.TabIndex = 42;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(49, 219);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(31, 13);
     this.label6.TabIndex = 41;
     this.label6.Text = "Email";
     //
     // txtCMND
     //
     this.txtCMND.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.txtCMND.Enabled = false;
     this.txtCMND.Location = new System.Drawing.Point(87, 162);
     this.txtCMND.Name = "txtCMND";
     this.txtCMND.Size = new System.Drawing.Size(195, 21);
     this.txtCMND.TabIndex = 38;
     this.txtCMND.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtCMND_KeyPress);
     //
     // lblCMND
     //
     this.lblCMND.AutoSize = true;
     this.lblCMND.Location = new System.Drawing.Point(49, 165);
     this.lblCMND.Name = "lblCMND";
     this.lblCMND.Size = new System.Drawing.Size(36, 13);
     this.lblCMND.TabIndex = 37;
     this.lblCMND.Text = "CMND";
     //
     // txtHoten
     //
     this.txtHoten.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.txtHoten.Enabled = false;
     this.txtHoten.Location = new System.Drawing.Point(86, 108);
     this.txtHoten.Name = "txtHoten";
     this.txtHoten.Size = new System.Drawing.Size(195, 21);
     this.txtHoten.TabIndex = 36;
     //
     // lblHoTen
     //
     this.lblHoTen.AutoSize = true;
     this.lblHoTen.Location = new System.Drawing.Point(44, 111);
     this.lblHoTen.Name = "lblHoTen";
     this.lblHoTen.Size = new System.Drawing.Size(39, 13);
     this.lblHoTen.TabIndex = 35;
     this.lblHoTen.Text = "Họ tên";
     //
     // grdKH
     //
     this.grdKH.Dock = System.Windows.Forms.DockStyle.Left;
     this.grdKH.Location = new System.Drawing.Point(301, 0);
     this.grdKH.MainView = this.grdvKH;
     this.grdKH.Name = "grdKH";
     this.grdKH.Size = new System.Drawing.Size(777, 591);
     this.grdKH.TabIndex = 4;
     this.grdKH.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grdvKH});
     //
     // grdvKH
     //
     this.grdvKH.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9});
     this.grdvKH.GridControl = this.grdKH;
     this.grdvKH.Name = "grdvKH";
     this.grdvKH.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.grdvKH.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.True;
     this.grdvKH.OptionsBehavior.Editable = false;
     this.grdvKH.OptionsBehavior.ReadOnly = true;
     this.grdvKH.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.Caption = "Mã khách hàng";
     this.gridColumn1.FieldName = "MAKH";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 83;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption = "Loại khách hàng";
     this.gridColumn2.FieldName = "MALOAIKH";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 88;
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.Caption = "Tên khách hàng";
     this.gridColumn3.FieldName = "HOTEN";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 136;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.Caption = "Giới tính";
     this.gridColumn4.FieldName = "GIOITINH";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width = 48;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.Caption = "CMND";
     this.gridColumn5.FieldName = "CMND";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 98;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.Caption = "Email";
     this.gridColumn7.FieldName = "EMAIL";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 114;
     //
     // gridColumn8
     //
     this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn8.Caption = "Địa chỉ";
     this.gridColumn8.FieldName = "DIACHI";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 5;
     this.gridColumn8.Width = 114;
     //
     // gridColumn9
     //
     this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn9.Caption = "Số điện thoại";
     this.gridColumn9.FieldName = "SODT";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 7;
     this.gridColumn9.Width = 123;
     //
     // panel1
     //
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(1078, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(204, 591);
     this.panel1.TabIndex = 5;
     //
     // backgroundWorker1
     //
     this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
     this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
     //
     // usrKhachHang
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.grdKH);
     this.Controls.Add(this.groupControl1);
     this.Name = "usrKhachHang";
     this.Size = new System.Drawing.Size(1282, 591);
     this.Load += new System.EventHandler(this.usrDanhSachKhachHang_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEditViewLoaiKH)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.glkLKH.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdKH)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdvKH)).EndInit();
     this.ResumeLayout(false);
 }