Ejemplo n.º 1
1
        private void InitializeComponent()
        {
            this.fProperties = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            ((System.ComponentModel.ISupportInitialize)(this.fProperties)).BeginInit();
            this.SuspendLayout();
            // 
            // fProperties
            // 

            this.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});

            //this.fProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            //new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.fProperties.Name = "fProperties";
            this.fProperties.ReadOnly = true;
            this.fProperties.ShowFooter = false;
            this.fProperties.ShowHeader = false;
            this.fProperties.ShowLines = false;
            ((System.ComponentModel.ISupportInitialize)(this.fProperties)).EndInit();
            this.ResumeLayout(false);

        }
Ejemplo n.º 2
0
        public void Month(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lookup)
        {
            DataTable dt = new DataTable();

            dt.Columns.Add("月份");
            for (int i = 1; i <= 12; i++)
            {
                DataRow dw = dt.NewRow();
                if (i < 10)
                {
                    dw[0] = "0" + i;
                }
                else
                {
                    dw[0] = i;
                }
                dt.Rows.Add(dw);
            }
            lookup.Columns.Clear();
            lookup.Properties.DataSource    = dt;
            lookup.Properties.ValueMember   = "月份";
            lookup.Properties.DisplayMember = "月份";
            lookup.Properties.NullText      = "";
            lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
                new DevExpress.XtraEditors.Controls.LookUpColumnInfo("月份", "月份")
            });
        }
Ejemplo n.º 3
0
        /// <summary>
        /// 룩업컨트롤에 기초코드를 채움니다.
        /// </summary>
        /// <param name="lookup">룩업컨트롤.</param>
        /// <param name="style">구성스타일.</param>
        /// <param name="filter">The filter.</param>
        public static void FillBasicCode(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lookup,
                                         BasicCodeReturnStyle style,
                                         string filter
                                         )
        {
            try
            {
                DataTable dt = GetBasicCode(style, filter);
                dt.Columns[0].ColumnName = "코드";
                dt.Columns[1].ColumnName = "코드명";

                lookup.SearchMode            = DevExpress.XtraEditors.Controls.SearchMode.AutoComplete;
                lookup.DataSource            = dt;
                lookup.DisplayMember         = "코드명";
                lookup.ValueMember           = "코드";
                lookup.AutoSearchColumnIndex = 0;


                lookup.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
                lookup.NullText      = "";
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Ejemplo n.º 4
0
        public static DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit GetRepositoryFromEnum(Type type)
        {
            DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit rpType = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            rpType.DataSource = Enum.GetValues(type);

            return(rpType);
        }
Ejemplo n.º 5
0
        private void BandData1()
        {
            showPopup1.Size = new Size(400, 300);



            DataTable dtzt = dsDM.Tables["JC_DISEASE"].Copy();

            lookEditCmb1.Properties.PopupControl = showPopup1;
            lookEditCmb1.DataSource    = dtzt;
            lookEditCmb1.DisplayMember = "name";
            lookEditCmb1.ValueMember   = "id";
            //showPopup1.DataSource = dt;
            showPopup1.MustReturnDatarow = true;
            showPopup1.Filter            = " name like '%{0}%' or PY_CODE like '%{0}%'  or WB_CODE like '%{0}%' ";
            showPopup1.GridViewColumnInfo(new string[] { "id", "code", "name", "PY_CODE", "WB_CODE" }, new int[] { 0, 80, 200, 60, 60 }, new string[] { "", "ICD编码", "名称", "拼音码", "五笔码" });

            DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit rilkZhengduan = Trasen.Base.CtlFun.CreateRepositoryItemLookUpEdit("name", "id");
            gridView1.Columns["DISEASE_ID"].ColumnEdit = rilkZhengduan;
            rilkZhengduan.DataSource = dtzt;
            rilkZhengduan.Columns.Add(new LookUpColumnInfo("name"));

            DataTable dtdept = DbOpt.GetDataTable("select cast( a.DEPT_ID as int) DEPT_ID ,NAME,PY_CODE from JC_WARDRDEPT a join JC_DEPT_PROPERTY b on a.DEPT_ID=b.DEPT_ID where a.DEPT_ID not in(select DEPT_ID from JC_WARD)");

            lookEditCmb2.Properties.PopupControl = showPopup2;
            lookEditCmb2.DataSource    = dtdept;
            lookEditCmb2.DisplayMember = "NAME";
            lookEditCmb2.ValueMember   = "DEPT_ID";

            showPopup2.Size = new Size(150, 300);
            showPopup2.MustReturnDatarow = true;
            showPopup2.Filter            = " name like '%{0}%' or PY_CODE like '%{0}%' ";
            showPopup2.GridViewColumnInfo(new string[] { "DEPT_ID", "NAME", "PY_CODE" }, new int[] { 0, 80, 60 }, new string[] { "", "名称", "拼音码" });
        }
Ejemplo n.º 6
0
        private void BandData1()
        {
            this.GetDmDs();
            DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lk_pathZt = Trasen.Base.CtlFun.CreateRepositoryItemLookUpEdit("NAME", "CODE");
            DataView dvZt = DbOpt.GetDataView(dsDM, "PATH_DM", "KIND=1 ", "SORT");//状态

            lk_pathZt.DataSource = dvZt;
            gridView1.Columns["STATUS"].ColumnEdit = lk_pathZt;
        }
Ejemplo n.º 7
0
 private void BindinaData(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit, DataTable dataTable)
 {
     repositoryItemLookUpEdit.DataSource    = EnumRatting_BigStore.Instance().BigStore;
     repositoryItemLookUpEdit.ValueMember   = "Value";
     repositoryItemLookUpEdit.DisplayMember = "Text";
     repositoryItemLookUpEdit.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Value", 20, "Value"));
     repositoryItemLookUpEdit.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Text", 20, "Chọn"));
     repositoryItemLookUpEdit.Columns["Value"].Visible = false;
 }
Ejemplo n.º 8
0
        private void lookUpEdit_Properties_Closed(object sender, DevExpress.XtraEditors.Controls.ClosedEventArgs e)
        {
            if (sender is DevExpress.XtraEditors.LookUpEdit)
            {
                DevExpress.XtraEditors.LookUpEdit dpl = sender as DevExpress.XtraEditors.LookUpEdit;
                if (!dpl.Properties.DisplayMember.Equals("Name"))
                {
                    dpl.Properties.DisplayMember = "Name";
                }
                if (!blPrevFindControl)
                {
                    SetContrMoveNext(dpl.Name, false);
                }

                if (this.frmEditorMode == "VIEW")
                {
                    return;
                }

                TreeListNode nodeSel = treeList1.FocusedNode;
                if (nodeSel == null)
                {
                    return;
                }

                DataRow drInfo   = (treeList1.GetDataRecordByNode(treeList1.FocusedNode) as DataRowView).Row;
                DataRow drContrl = StaticFunctions.GetContrRowValueById(dtShow, dpl.Name, dpl.Parent.Name);
                StaticFunctions.UpdateDataRowSynLookUpEdit(drInfo, dpl, drContrl["SetSynFields"].ToString(), drContrl["SetSynSrcFields"].ToString());
            }
            else if (sender is ExtendControl.ExtPopupTree)
            {
                if (this.frmEditorMode == "VIEW")
                {
                    return;
                }

                TreeListNode nodeSel = treeList1.FocusedNode;
                if (nodeSel == null)
                {
                    return;
                }

                DataRow drInfo = (treeList1.GetDataRecordByNode(treeList1.FocusedNode) as DataRowView).Row;

                ExtendControl.ExtPopupTree ept = sender as ExtendControl.ExtPopupTree;
                DataRow drContrl = StaticFunctions.GetContrRowValueById(dtShow, ept.Name, ept.Parent.Name);
                StaticFunctions.UpdateDataRowSynExtPopupTree(drInfo, ept, drContrl["SetSynFields"].ToString(), drContrl["SetSynSrcFields"].ToString());
            }
            else if (sender is DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit)
            {
                DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit dpl = sender as DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit;
                if (!dpl.DisplayMember.Equals("Name"))
                {
                    dpl.DisplayMember = "Name";
                }
            }
        }
Ejemplo n.º 9
0
        /// <summary>
        /// 룩업컨트롤에 쿼리를 받아 코드성데이타를 채움니다
        /// </summary>
        /// <param name="lookup">룩업컨트롤</param>
        /// <param name="SYS">시스템</param>
        /// <param name="CODE_TYPE">코드타입</param>
        /// <param name="style">룩업스타일</param>
        /// <CODE><SAMPLE>
        /// /원장잔액/
        /// BizCommon.BasicCodeBO.FillQueryCode(RepositoryItemLookUpEdit, "select code 코드,name 코드명 from sys0110 where sys='ACM' and code_type='88' and use_yn = 'Y' order by code,seq", "코드","코드명", BizCommon.BasicCode.BasicCodeReturnStyle.SelectStringCaption);
        /// </SAMPLE></CODE>
        public static void FillDataTableCode(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lookup,
                                             DataTable dtCode,
                                             string ValueName, string DisplayName,
                                             BasicCodeReturnStyle style
                                             )
        {
            try
            {
                DataTable dt = new DataTable();
                dt.Columns.Add();
                dt.Columns.Add();
                dt.Columns[0].ColumnName = ValueName;
                dt.Columns[1].ColumnName = DisplayName;

                switch (style)
                {
                case BasicCodeReturnStyle.NullStringCaption:
                    dt.Rows.Add("", "");
                    break;

                case BasicCodeReturnStyle.SelectStringCaption:
                    dt.Rows.Add("", "선택하세요");
                    break;

                case BasicCodeReturnStyle.SelectAll:
                    dt.Rows.Add("%", "전체");
                    break;
                }

                //DataSet ds = Cls.DataLayer.DataLayer.ExecuteDataset(Qry, Cls.DataLayer.DataLayer.MessageEncoding.Default);

                if (dtCode != null)
                {
                    foreach (DataRow dRow in dtCode.Rows)
                    {
                        dt.Rows.Add(new object[] { dRow[ValueName].ToString().Trim(),
                                                   dRow[DisplayName].ToString().Trim() });
                    }
                }

                lookup.SearchMode            = DevExpress.XtraEditors.Controls.SearchMode.AutoComplete;
                lookup.DataSource            = dt;
                lookup.DisplayMember         = DisplayName;
                lookup.ValueMember           = ValueName;
                lookup.AutoSearchColumnIndex = 0;


                lookup.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
                lookup.NullText      = "";
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Ejemplo n.º 10
0
 public static void Door(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lookup)
 {
     lookup.Columns.Clear();
     lookup.Properties.DataSource    = Door();
     lookup.Properties.ValueMember   = "iDoor";
     lookup.Properties.DisplayMember = "iDoor";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("iDoor", "门号")
     });
 }
Ejemplo n.º 11
0
        /// <summary>
        /// 设置设备显示列
        /// </summary>
        public override void InitColumns()
        {
            GridColumn column = gridView1.Columns.Add();

            column.Caption                 = "所在线路";
            column.FieldName               = "AreaID";
            column.SortOrder               = DevExpress.Data.ColumnSortOrder.Ascending;
            column.Width                   = 100;
            column.VisibleIndex            = 1;
            column.OptionsColumn.AllowEdit = false;
            DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit comboBox = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            column.ColumnEdit = comboBox;
            string         sql     = "where Type in('05','73')";
            IList <PSPDEV> xl_list = Services.BaseService.GetList <PSPDEV>("SelectPSPDEVByCondition", sql);

            comboBox.DataSource    = xl_list;
            comboBox.DisplayMember = "Name";
            comboBox.ValueMember   = "SUID";

            column                         = gridView1.Columns.Add();
            column.Caption                 = "编号";
            column.FieldName               = "Number";
            column.SortOrder               = DevExpress.Data.ColumnSortOrder.Ascending;
            column.Width                   = 100;
            column.VisibleIndex            = 2;
            column.OptionsColumn.AllowEdit = false;
            column                         = gridView1.Columns.Add();
            column.Caption                 = "名称";
            column.FieldName               = "Name";
            column.Width                   = 100;
            column.VisibleIndex            = 3;
            column.OptionsColumn.AllowEdit = false;
            column                         = gridView1.Columns.Add();

            //column.Caption = "开关数";
            //column.FieldName = "Flag";
            //column.Width = 100;
            //column.VisibleIndex = 3;
            //column.OptionsColumn.AllowEdit = false;


            column                         = gridView1.Columns.Add();
            column.Caption                 = "额定电压(KV)";
            column.FieldName               = "RateVolt";
            column.Width                   = 150;
            column.VisibleIndex            = 4;
            column.OptionsColumn.AllowEdit = false;
            column                         = gridView1.Columns.Add();
            column.Caption                 = "投产时间";
            column.FieldName               = "OperationYear";
            column.Width                   = 150;
            column.VisibleIndex            = 5;
            column.OptionsColumn.AllowEdit = false;
        }
Ejemplo n.º 12
0
 public static void OrderNo(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lookup)
 {
     lookup.Columns.Clear();
     lookup.Properties.DataSource    = OrderNo();
     lookup.Properties.ValueMember   = "OrderNo";
     lookup.Properties.DisplayMember = "OrderNo";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("VenCode", "定单编号")
     });
 }
Ejemplo n.º 13
0
 public void RdRecord(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lookup)
 {
     lookup.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpRdRecord();
     lookup.Properties.ValueMember   = "cRdCode";
     lookup.Properties.DisplayMember = "cRdCode";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cRdCode", "单据号")
     });
 }
Ejemplo n.º 14
0
 public void Quality(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lookup)
 {
     lookup.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpQuality();
     lookup.Properties.ValueMember   = "cQCode";
     lookup.Properties.DisplayMember = "cQName";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cQCode", "质量标准档案编码"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cQName", "质量标准档案名称")
     });
 }
Ejemplo n.º 15
0
 public void ComputationUnit(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lookup)
 {
     lookup.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpComputationUnit();
     lookup.Properties.ValueMember   = "cComunitCode";
     lookup.Properties.DisplayMember = "cComunitName";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cComunitCode", "主计量编码"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cComunitName", "主计量名称")
     });
 }
Ejemplo n.º 16
0
 public void Person(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lookup)
 {
     lookup.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpPerson();
     lookup.Properties.ValueMember   = "PersonCode";
     lookup.Properties.DisplayMember = "PersonName";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PersonCode", "人员编码"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PersonName", "人员名称")
     });
 }
Ejemplo n.º 17
0
 public void Department(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lookup)
 {
     lookup.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpDepartment();
     lookup.Properties.ValueMember   = "cDepCode";
     lookup.Properties.DisplayMember = "cDepName";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cDepCode", "部门编码"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cDepName", "部门名称")
     });
 }
Ejemplo n.º 18
0
        private void serverLookUpEdit_ProcessNewValue(System.Object sender, ProcessNewValueEventArgs e)
        {
            DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit edit = ((LookUpEdit)sender).Properties;
            if (e.DisplayValue.ToString() == edit.NullText || string.IsNullOrEmpty(e.DisplayValue.ToString()))
            {
                return;
            }

            m_Servers.Add(e.DisplayValue);

            e.Handled = true;
        }
Ejemplo n.º 19
0
 public void UserInfo(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lookup)
 {
     lookup.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpUserInfo();
     lookup.Properties.ValueMember   = "vchrUid";
     lookup.Properties.DisplayMember = "vchrName";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("vchrUid", "用户编码"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("vchrName", "用户名称")
     });
 }
Ejemplo n.º 20
0
 public void LoopUpData(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lookup, string id)
 {
     lookup.Columns.Clear();
     lookup.Properties.DataSource    = clsWeb.LookUpLoopUpData(id);
     lookup.Properties.ValueMember   = "iID";
     lookup.Properties.DisplayMember = "iText";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("iID", "类型编码"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("iText", "类型名称")
     });
 }
Ejemplo n.º 21
0
        static public void LoadDL(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit luKQ, string value, string display, string sql)

        {
            DataTable dt = new DataTable();

            cmd = new OleDbCommand(sql, cnn);
            dr  = cmd.ExecuteReader();
            dt.Load(dr);
            luKQ.Properties.DataSource    = dt;
            luKQ.Properties.ValueMember   = value;
            luKQ.Properties.DisplayMember = display;
        }
Ejemplo n.º 22
0
 public static void Inventory(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lookup)
 {
     lookup.Columns.Clear();
     lookup.Properties.DataSource    = Inventory();
     lookup.Properties.ValueMember   = "cInvCode";
     lookup.Properties.DisplayMember = "cInvName";
     lookup.Properties.NullText      = "";
     lookup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cInvCode", "存货编码"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cInvName", "存货名称"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("cInvStd", "规格型号")
     });
 }
Ejemplo n.º 23
0
        public void SetColumnDrop(GridColumn gc, string strSQL, string strDispField, string strValueField)
        {
            DataLib.DataHelper myHelper = new DataLib.DataHelper();
            DataSet            ds       = myHelper.GetDs(strSQL);

            DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lupEdit = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            lupEdit.DataSource    = ds.Tables[0].DefaultView;
            lupEdit.ValueMember   = strValueField;
            lupEdit.DisplayMember = strDispField;
            lupEdit.ShowFooter    = false;
            lupEdit.ShowHeader    = false;
            lupEdit.NullText      = "";
            gc.ColumnEdit         = lupEdit;
        }
Ejemplo n.º 24
0
        public LocalizedItem(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repoLookup, List <string> list, string[] resourceIds)
        {
            this.resourceIds = new string[resourceIds.Length];
            for (int index = 0; index < resourceIds.Length; index++)
            {
                this.resourceIds[index] = resourceIds[index];
            }
            this.obj           = (object)new Tuple <DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit, List <string> >(repoLookup, list);
            this.type          = ItemType.RepositoryLookupEdit;
            this.defaultValues = new string[resourceIds.Length];

            for (int index = 0; index < resourceIds.Length; index++)
            {
                this.defaultValues[index] = list[index];
            }
        }
Ejemplo n.º 25
0
        public void FillData()
        {
            dt  = new DataTable();
            dtG = UnitDirBL.GetOCGMaster();

            DataRow dr;

            dr              = dtG.NewRow();
            dr["GroupId"]   = 0;
            dr["GroupName"] = "None";
            dtG.Rows.InsertAt(dr, 0);

            DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit cboOC = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            cboOC.DataSource = dtG;
            cboOC.PopulateColumns();
            cboOC.ValueMember   = "GroupId";
            cboOC.DisplayMember = "GroupName";
            cboOC.Columns["GroupId"].Visible = false;
            cboOC.ShowFooter = false;
            cboOC.ShowHeader = false;

            dt = UnitDirBL.GetOCGList();
            grdOC.DataSource = dt;
            grdOC.ForceInitialize();
            grdOCView.PopulateColumns();
            grdOCView.Columns["OtherCostId"].Visible = false;
            grdOCView.Columns["GroupId"].Caption     = "GroupName";
            grdOCView.Columns["GroupId"].ColumnEdit  = cboOC;
            cboOC.EditValueChanged += new EventHandler(cboOC_EditValueChanged);

            grdOCView.OptionsCustomization.AllowFilter       = true;
            grdOCView.OptionsBehavior.AllowIncrementalSearch = true;
            grdOCView.OptionsView.ShowAutoFilterRow          = false;
            grdOCView.OptionsView.ShowViewCaption            = false;
            grdOCView.OptionsView.ShowFooter           = true;
            grdOCView.OptionsSelection.MultiSelectMode = GridMultiSelectMode.CellSelect;
            grdOCView.OptionsSelection.InvertSelection = false;
            grdOCView.OptionsView.ColumnAutoWidth      = true;
            grdOCView.Appearance.HeaderPanel.Font      = new Font(grdOCView.Appearance.HeaderPanel.Font, FontStyle.Bold);
            grdOCView.FocusedRowHandle = 0;
            grdOCView.FocusedColumn    = grdOCView.VisibleColumns[0];

            grdOCView.Appearance.FocusedCell.BackColor = Color.Teal;
            grdOCView.Appearance.FocusedCell.ForeColor = Color.White;
            grdOCView.Appearance.FocusedRow.ForeColor  = Color.Teal;
            grdOCView.Appearance.FocusedRow.BackColor  = Color.White;
        }
Ejemplo n.º 26
0
 public static void BindMaterialToRepositoryItemLookUpEdit(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lookUpEdit, IList <Model.Material> list, string IdColumnName, string displayMember, string ValueMember)
 {
     lookUpEdit.DataSource = null;
     lookUpEdit.DataSource = list;
     lookUpEdit.Columns.Clear();
     DevExpress.XtraEditors.Controls.LookUpColumnInfo IdColumn = new DevExpress.XtraEditors.Controls.LookUpColumnInfo();
     IdColumn.FieldName = "MaterialId";
     IdColumn.Caption   = "Id";
     IdColumn.Visible   = false;
     lookUpEdit.Columns.Add(IdColumn);
     lookUpEdit.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("MaterialCode", "Mã vật liệu"));
     lookUpEdit.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("MaterialName", "Tên vật liệu"));
     lookUpEdit.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Supplier.SupplierName", "Nhà cung cấp"));
     lookUpEdit.DisplayMember = displayMember;
     lookUpEdit.ValueMember   = ValueMember;
     lookUpEdit.BestFitMode   = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
 }
Ejemplo n.º 27
0
 private void lookUpEdit_Properties_QueryPopUp(object sender, CancelEventArgs e)
 {
     if (sender is DevExpress.XtraEditors.LookUpEdit)
     {
         DevExpress.XtraEditors.LookUpEdit dpl = sender as DevExpress.XtraEditors.LookUpEdit;
         if (!dpl.Properties.DisplayMember.Equals("Number"))
         {
             dpl.Properties.DisplayMember = "Number";
         }
     }
     else if (sender is DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit)
     {
         DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit dpl = sender as DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit;
         if (!dpl.DisplayMember.Equals("Number"))
         {
             dpl.DisplayMember = "Number";
         }
     }
 }
Ejemplo n.º 28
0
 private void lookUpEdit_Properties_Closed(object sender, DevExpress.XtraEditors.Controls.ClosedEventArgs e)
 {
     if (sender is DevExpress.XtraEditors.LookUpEdit)
     {
         DevExpress.XtraEditors.LookUpEdit dpl = sender as DevExpress.XtraEditors.LookUpEdit;
         if (!dpl.Properties.DisplayMember.Equals("Name"))
         {
             dpl.Properties.DisplayMember = "Name";
         }
     }
     else if (sender is DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit)
     {
         DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit dpl = sender as DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit;
         if (!dpl.DisplayMember.Equals("Name"))
         {
             dpl.DisplayMember = "Name";
         }
     }
 }
Ejemplo n.º 29
0
        private void AddRow(int pID, string pName, object value, DataTable ds)
        {
            DevExpress.XtraVerticalGrid.Rows.EditorRow newRow = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
            //newRow.Properties.RowEdit = this.repositoryItemCheckEdit1;

            DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit leRI = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            leRI.ValueMember = "BeginINT"; leRI.DisplayMember = "Value";
            leRI.DataSource  = ds;
            //leRI.Columns[0].Visible = false; leRI.Columns[1].Caption = "Значение";
            newRow.Properties.RowEdit = leRI;

            newRow.Name = pID.ToString();
            newRow.Properties.Caption = pName;
            //newRow.Tag = wppID;
            com.setCommand("mGetAParams");
            com.AddParam(pID); com.AddParam(this.SystemID); com.AddParam(IDinSystem);
            com.ExecuteCommand();
            newRow.Properties.Value = com.getRetValue();
            vGridControl1.Rows.Add(newRow);
        }
Ejemplo n.º 30
0
 public static void BindRepositoryItemLookUpEdit <T>(DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit lookUpEdit, IList <T> list, string displayMember, string valueMember, string caption = "") where T : class
 {
     if (string.IsNullOrEmpty(displayMember) || string.IsNullOrWhiteSpace(displayMember))
     {
         return;
     }
     lookUpEdit.DataSource    = null;
     lookUpEdit.DataSource    = list;
     lookUpEdit.DisplayMember = displayMember;
     lookUpEdit.ValueMember   = valueMember;
     lookUpEdit.Columns.Clear();
     if (caption == "")
     {
         lookUpEdit.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo(displayMember));
     }
     else
     {
         lookUpEdit.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo(displayMember, caption));
     }
     lookUpEdit.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
 }
Ejemplo n.º 31
0
        private void PopulateGrid()
        {
            DataTable dt = new DataTable();

            dtOC = new DataTable();

            dt   = ProjectInfoBL.GetOtherCostType();
            dtOC = ProjectInfoBL.GetOCTypeMaster();

            DataRow dr;

            dr               = dtOC.NewRow();
            dr["OCTypeId"]   = 0;
            dr["OCTypeName"] = "None";
            dtOC.Rows.InsertAt(dr, 0);

            DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit cboOC = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            cboOC.DataSource = dtOC;
            cboOC.PopulateColumns();
            cboOC.ValueMember   = "OCTypeId";
            cboOC.DisplayMember = "OCTypeName";
            cboOC.Columns["OCTypeId"].Visible = false;
            cboOC.ShowFooter = false;
            cboOC.ShowHeader = false;

            grdOC.DataSource = dt;
            grdViewOC.PopulateColumns();
            grdViewOC.Columns["OCTypeId"].Caption    = "TypeName";
            grdViewOC.Columns["OtherCostId"].Visible = false;
            grdViewOC.Columns["OtherCostName"].OptionsColumn.AllowEdit = false;
            grdViewOC.Columns["OCTypeId"].ColumnEdit = cboOC;
            cboOC.EditValueChanged += new EventHandler(cboOC_EditValueChanged);

            grdViewOC.Appearance.HeaderPanel.Font = new Font(grdViewOC.Appearance.HeaderPanel.Font, FontStyle.Bold);

            grdViewOC.OptionsSelection.InvertSelection = true;
            grdViewOC.OptionsSelection.EnableAppearanceHideSelection = false;
            grdViewOC.Appearance.FocusedRow.BackColor = Color.Teal;
            grdViewOC.Appearance.FocusedRow.ForeColor = Color.White;
        }
Ejemplo n.º 32
0
        public void Init_linecode() {
            if (comboBox == null) {
                gridView1.Columns["LineCode"].Caption = "关联单位";
                comboBox = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
                gridView1.Columns["LineCode"].ColumnEdit = comboBox;
                comboBox.DisplayMember = "LineName";
                comboBox.ValueMember = "LineID";
            }
            IList<sd_xl> xl_list = ClientHelper.PlatformSqlMap.GetList<sd_xl>(string.Format(" where orgcode='{0}' and  linevol='35'", parentObj.OrgCode));
            comboBox.DataSource = xl_list;

        }
Ejemplo n.º 33
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.dbHoliday = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     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.repositoryItemLookUpEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btnOut = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnDel = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dbHoliday)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.panelControl3);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(803, 653);
     this.panelControl1.TabIndex = 0;
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.panelControl4);
     this.panelControl3.Controls.Add(this.panelControl2);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(803, 653);
     this.panelControl3.TabIndex = 1;
     //
     // panelControl4
     //
     this.panelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl4.Controls.Add(this.dbHoliday);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl4.Location = new System.Drawing.Point(0, 66);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(803, 560);
     this.panelControl4.TabIndex = 2;
     //
     // dbHoliday
     //
     this.dbHoliday.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dbHoliday.Location = new System.Drawing.Point(0, 0);
     this.dbHoliday.MainView = this.gridView1;
     this.dbHoliday.Name = "dbHoliday";
     this.dbHoliday.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit1,
     this.repositoryItemLookUpEdit2});
     this.dbHoliday.Size = new System.Drawing.Size(803, 560);
     this.dbHoliday.TabIndex = 2;
     this.dbHoliday.Tag = "@db=����������";
     this.dbHoliday.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1,
     this.gridView2});
     //
     // gridView1
     //
     this.gridView1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5});
     this.gridView1.GridControl = this.dbHoliday;
     this.gridView1.GroupPanelText = "��������";
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "����";
     this.gridColumn1.ColumnEdit = this.repositoryItemLookUpEdit1;
     this.gridColumn1.FieldName = "����";
     this.gridColumn1.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.DisplayText;
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.UnboundType = DevExpress.Data.UnboundColumnType.Object;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AccessibleRole = System.Windows.Forms.AccessibleRole.ScrollBar;
     this.repositoryItemLookUpEdit1.AllowFocused = false;
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.ButtonsStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     this.repositoryItemLookUpEdit1.NullText = "";
     this.repositoryItemLookUpEdit1.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Simple;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "��ʼ����";
     this.gridColumn2.FieldName = "��ʼ����";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "�ݼ�";
     this.gridColumn3.FieldName = "�ݼ�";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 3;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "ID";
     this.gridColumn4.FieldName = "ID";
     this.gridColumn4.Name = "gridColumn4";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "��������";
     this.gridColumn5.FieldName = "��������";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 2;
     //
     // repositoryItemLookUpEdit2
     //
     this.repositoryItemLookUpEdit2.AutoHeight = false;
     this.repositoryItemLookUpEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit2.Name = "repositoryItemLookUpEdit2";
     //
     // gridView2
     //
     this.gridView2.GridControl = this.dbHoliday;
     this.gridView2.Name = "gridView2";
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.groupControl1);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl2.Location = new System.Drawing.Point(0, 0);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(803, 66);
     this.panelControl2.TabIndex = 1;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.btnOut);
     this.groupControl1.Controls.Add(this.btnSave);
     this.groupControl1.Controls.Add(this.btnDel);
     this.groupControl1.Controls.Add(this.btnAdd);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(803, 66);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "����������";
     //
     // btnOut
     //
     this.btnOut.Location = new System.Drawing.Point(515, 26);
     this.btnOut.Name = "btnOut";
     this.btnOut.Size = new System.Drawing.Size(81, 29);
     this.btnOut.TabIndex = 8;
     this.btnOut.Text = "�˳�";
     this.btnOut.Click += new System.EventHandler(this.btnOut_Click);
     //
     // btnSave
     //
     this.btnSave.Location = new System.Drawing.Point(392, 26);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(81, 29);
     this.btnSave.TabIndex = 7;
     this.btnSave.Text = "����";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnDel
     //
     this.btnDel.Location = new System.Drawing.Point(271, 26);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(81, 29);
     this.btnDel.TabIndex = 6;
     this.btnDel.Text = "ɾ��";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // btnAdd
     //
     this.btnAdd.Location = new System.Drawing.Point(159, 26);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(81, 29);
     this.btnAdd.TabIndex = 5;
     this.btnAdd.Text = "���";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.FloatLocation = new System.Drawing.Point(237, 270);
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.MaxItemId = 0;
     //
     // FrmHolidaySet
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(803, 653);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "FrmHolidaySet";
     this.Text = "��������";
     this.Load += new System.EventHandler(this.FrmHolidaySet_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dbHoliday)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).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.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.lueDof2 = new DevExpress.XtraEditors.LookUpEdit();
     this.LSMSDof = new DevExpress.Data.Linq.LinqServerModeSource();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.lueDof1 = new DevExpress.XtraEditors.LookUpEdit();
     this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.vQry70BindingSource = new System.Windows.Forms.BindingSource();
     this.vQry70TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.vQry70TableAdapter();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfdatefrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfdateto = 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.colsarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdafat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSarfTypeedad = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.coluserin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdituserin = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.colresponsiblesarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colresponsiblesarfId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colResponsiblesarfName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colYasref_Current = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueDof2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDof)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDof1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vQry70BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdituserin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.labelControl2);
     this.panelControl1.Controls.Add(this.lueDof2);
     this.panelControl1.Controls.Add(this.labelControl1);
     this.panelControl1.Controls.Add(this.lueDof1);
     this.panelControl1.Controls.Add(this.btnSearch);
     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 = 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(721, 12);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(16, 13);
     this.labelControl2.TabIndex = 10;
     this.labelControl2.Text = "في";
     //
     // lueDof2
     //
     this.lueDof2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lueDof2.Location = new System.Drawing.Point(584, 9);
     this.lueDof2.Name = "lueDof2";
     this.lueDof2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueDof2.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("DofatSarf", "الاسم", 61, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.lueDof2.Properties.DataSource = this.LSMSDof;
     this.lueDof2.Properties.DisplayMember = "DofatSarf";
     this.lueDof2.Properties.NullText = "";
     this.lueDof2.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueDof2.Properties.ValueMember = "DofatSarfId";
     this.lueDof2.Size = new System.Drawing.Size(125, 20);
     this.lueDof2.TabIndex = 1;
     //
     // LSMSDof
     //
     this.LSMSDof.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLDofatSarf);
     this.LSMSDof.KeyExpression = "[DofatSarfId]";
     //
     // 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(880, 12);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(77, 13);
     this.labelControl1.TabIndex = 10;
     this.labelControl1.Text = "البحث عن الدفعة";
     //
     // lueDof1
     //
     this.lueDof1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lueDof1.Location = new System.Drawing.Point(743, 9);
     this.lueDof1.Name = "lueDof1";
     this.lueDof1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueDof1.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("DofatSarf", "الاسم", 61, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.lueDof1.Properties.DataSource = this.LSMSDof;
     this.lueDof1.Properties.DisplayMember = "DofatSarf";
     this.lueDof1.Properties.NullText = "";
     this.lueDof1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueDof1.Properties.ValueMember = "DofatSarfId";
     this.lueDof1.Size = new System.Drawing.Size(125, 20);
     this.lueDof1.TabIndex = 0;
     //
     // btnSearch
     //
     this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSearch.Location = new System.Drawing.Point(444, 6);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(134, 24);
     this.btnSearch.TabIndex = 0;
     this.btnSearch.Text = "بحث";
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // btnPrintExport
     //
     this.btnPrintExport.Location = new System.Drawing.Point(12, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // vQry70BindingSource
     //
     this.vQry70BindingSource.DataMember = "vQry70";
     this.vQry70BindingSource.DataSource = this.dsQueries;
     //
     // vQry70TableAdapter
     //
     this.vQry70TableAdapter.ClearBeforeFill = true;
     //
     // 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.vQry70BindingSource;
     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, 406);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMMashatId,
     this.colsarfdatefrom,
     this.colsarfdateto,
     this.colmonymonth,
     this.colrsmmonth,
     this.coleshtrakmonth,
     this.colestktaa,
     this.colsarf,
     this.colEdafat,
     this.colMMashatName,
     this.colsarfnumber,
     this.colDofatSarf,
     this.colSarfTypeedad,
     this.colPersonId,
     this.colpersonName,
     this.colSyndicate,
     this.colSubCommitte,
     this.coldatein,
     this.coluserin,
     this.colresponsiblesarf,
     this.colresponsiblesarfId,
     this.colResponsiblesarfName,
     this.colYasref_Current});
     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 = "كود العضو";
     this.colMMashatId.FieldName = "MMashatId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 2;
     //
     // 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.FieldName = "sarfdatefrom";
     this.colsarfdatefrom.Name = "colsarfdatefrom";
     this.colsarfdatefrom.Visible = true;
     this.colsarfdatefrom.VisibleIndex = 6;
     //
     // 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.Visible = true;
     this.colsarfdateto.VisibleIndex = 7;
     //
     // 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.Visible = true;
     this.colmonymonth.VisibleIndex = 8;
     //
     // 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.Visible = true;
     this.colrsmmonth.VisibleIndex = 9;
     //
     // 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.Visible = true;
     this.coleshtrakmonth.VisibleIndex = 10;
     //
     // colestktaa
     //
     this.colestktaa.AppearanceCell.Options.UseTextOptions = true;
     this.colestktaa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colestktaa.AppearanceHeader.Options.UseTextOptions = true;
     this.colestktaa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colestktaa.Caption = "استقطاع";
     this.colestktaa.FieldName = "estktaa";
     this.colestktaa.Name = "colestktaa";
     this.colestktaa.Visible = true;
     this.colestktaa.VisibleIndex = 11;
     //
     // 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.FieldName = "sarf";
     this.colsarf.Name = "colsarf";
     this.colsarf.Visible = true;
     this.colsarf.VisibleIndex = 12;
     //
     // 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.FieldName = "Edafat";
     this.colEdafat.Name = "colEdafat";
     this.colEdafat.Visible = true;
     this.colEdafat.VisibleIndex = 13;
     //
     // 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 = 14;
     //
     // 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 = 4;
     //
     // colSarfTypeedad
     //
     this.colSarfTypeedad.AppearanceCell.Options.UseTextOptions = true;
     this.colSarfTypeedad.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSarfTypeedad.AppearanceHeader.Options.UseTextOptions = true;
     this.colSarfTypeedad.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSarfTypeedad.Caption = "نوع الصرف";
     this.colSarfTypeedad.FieldName = "SarfTypeedad";
     this.colSarfTypeedad.Name = "colSarfTypeedad";
     this.colSarfTypeedad.Visible = true;
     this.colSarfTypeedad.VisibleIndex = 5;
     //
     // 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;
     //
     // 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 = 15;
     //
     // 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 = 16;
     //
     // coldatein
     //
     this.coldatein.AppearanceCell.Options.UseTextOptions = true;
     this.coldatein.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatein.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.Caption = "التاريخ";
     this.coldatein.ColumnEdit = this.repositoryItemDateEditDMY;
     this.coldatein.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 18;
     //
     // 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()});
     //
     // coluserin
     //
     this.coluserin.AppearanceCell.Options.UseTextOptions = true;
     this.coluserin.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.AppearanceHeader.Options.UseTextOptions = true;
     this.coluserin.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.Caption = "مسئول الادخال";
     this.coluserin.ColumnEdit = this.repositoryItemLookUpEdituserin;
     this.coluserin.FieldName = "userin";
     this.coluserin.Name = "coluserin";
     this.coluserin.Visible = true;
     this.coluserin.VisibleIndex = 17;
     //
     // 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.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("UserID", "User ID", 59, DevExpress.Utils.FormatType.Numeric, "", true, DevExpress.Utils.HorzAlignment.Far),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RealName", "Real Name", 61, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.repositoryItemLookUpEdituserin.DisplayMember = "RealName";
     this.repositoryItemLookUpEdituserin.Name = "repositoryItemLookUpEdituserin";
     this.repositoryItemLookUpEdituserin.NullText = "";
     this.repositoryItemLookUpEdituserin.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEdituserin.ValueMember = "UserID";
     //
     // 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.FieldName = "responsiblesarf";
     this.colresponsiblesarf.Name = "colresponsiblesarf";
     this.colresponsiblesarf.Visible = true;
     this.colresponsiblesarf.VisibleIndex = 19;
     //
     // colresponsiblesarfId
     //
     this.colresponsiblesarfId.AppearanceCell.Options.UseTextOptions = true;
     this.colresponsiblesarfId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colresponsiblesarfId.AppearanceHeader.Options.UseTextOptions = true;
     this.colresponsiblesarfId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colresponsiblesarfId.Caption = "كود المسئول";
     this.colresponsiblesarfId.FieldName = "responsiblesarfId";
     this.colresponsiblesarfId.Name = "colresponsiblesarfId";
     this.colresponsiblesarfId.Visible = true;
     this.colresponsiblesarfId.VisibleIndex = 20;
     //
     // colResponsiblesarfName
     //
     this.colResponsiblesarfName.AppearanceCell.Options.UseTextOptions = true;
     this.colResponsiblesarfName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colResponsiblesarfName.AppearanceHeader.Options.UseTextOptions = true;
     this.colResponsiblesarfName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colResponsiblesarfName.Caption = "اسم المسئول";
     this.colResponsiblesarfName.FieldName = "ResponsiblesarfName";
     this.colResponsiblesarfName.Name = "colResponsiblesarfName";
     this.colResponsiblesarfName.Visible = true;
     this.colResponsiblesarfName.VisibleIndex = 21;
     //
     // colYasref_Current
     //
     this.colYasref_Current.AppearanceCell.Options.UseTextOptions = true;
     this.colYasref_Current.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colYasref_Current.AppearanceHeader.Options.UseTextOptions = true;
     this.colYasref_Current.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colYasref_Current.Caption = "يصرف حاليا";
     this.colYasref_Current.FieldName = "Yasref_Current";
     this.colYasref_Current.Name = "colYasref_Current";
     this.colYasref_Current.Visible = true;
     this.colYasref_Current.VisibleIndex = 22;
     //
     // 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";
     //
     // Qry70Frm
     //
     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.gridControlData);
     this.Controls.Add(this.panelControl1);
     this.Name = "Qry70Frm";
     this.Text = "مقارنة صرفيتين ورثة";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Qry06Frm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueDof2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDof)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDof1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vQry70BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdituserin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmCommission));
     this.grpMDCommision = new DevExpress.XtraEditors.GroupControl();
     this.tabControlCommission = new DevExpress.XtraTab.XtraTabControl();
     this.mdCM_tabSalesCommision = new DevExpress.XtraTab.XtraTabPage();
     this.grpSubMDCommissionScheme = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_SalesCommisionScheme = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_SalesCommission = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nCommGroupID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strGroupName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nCalMethod = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_CalMethod = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.mBranchTarget = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fCrossSales = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_CrossSales = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.dtFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdSC_txtNEmployeeID = new DevExpress.XtraEditors.TextEdit();
     this.tabControlCommissionEntry = new DevExpress.XtraTab.XtraTabControl();
     this.tabMethodOne = new DevExpress.XtraTab.XtraTabPage();
     this.btn_Target_Add = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_Target_Del = new DevExpress.XtraEditors.SimpleButton();
     this.grpMDPromotionBelow2 = new DevExpress.XtraEditors.GroupControl();
     this.gridCategory2 = new DevExpress.XtraGrid.GridControl();
     this.gridViewCategory2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nCategoryID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Description2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Percentage2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridCategory = new DevExpress.XtraGrid.GridControl();
     this.gridViewCategory = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.CategoryID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Description = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnCategory_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnCategory_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnCategory_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnCategory_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.gridTarget = new DevExpress.XtraGrid.GridControl();
     this.gridViewTarget = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nIndivTargetFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nIndivTargetTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nIndivPercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBranchTargetFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBranchTargetTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBranchPercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBasePercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mBaseAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fCombine = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabMethodTwo = new DevExpress.XtraTab.XtraTabPage();
     this.btn_Range_Del = new DevExpress.XtraEditors.SimpleButton();
     this.gridRange = new DevExpress.XtraGrid.GridControl();
     this.gridViewRange = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.mRangeSalesFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mRangeSalesTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nRangePercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mRangeAmt = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fCombine_Range = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_fCombine = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.btn_Range_Add = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.grid2Category2 = new DevExpress.XtraGrid.GridControl();
     this.gridView2Category2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid2Category = new DevExpress.XtraGrid.GridControl();
     this.gridView2Category = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn2Category_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn2Category_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn2Category_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btn2Category_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.tabMethodThree = new DevExpress.XtraTab.XtraTabPage();
     this.btn_Mgr_Del = new DevExpress.XtraEditors.SimpleButton();
     this.gridMgr = new DevExpress.XtraGrid.GridControl();
     this.gridViewMgr = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nBranchPercentFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBranchPercentTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nMgrPercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dMgrAmt = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fCombine_Mgr = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_fCombine_Mgr = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.btn_Mgr_add = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.grid3Category2 = new DevExpress.XtraGrid.GridControl();
     this.gridView3Category2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid3Category = new DevExpress.XtraGrid.GridControl();
     this.gridView3Category = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn3Category_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn3Category_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn3Category_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btn3Category_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.btn_Add2 = new DevExpress.XtraEditors.SimpleButton();
     this.btn_del2 = new DevExpress.XtraEditors.SimpleButton();
     this.gridControlMd_SalesCommisionSchemeEntries = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_SalesCommissionSchemeEntries = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.mdCM_tabInstructorCommision = new DevExpress.XtraTab.XtraTabPage();
     this.tabControlInstructorCommission = new DevExpress.XtraTab.XtraTabControl();
     this.tabPageInstructorType = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_InstructorType = new DevExpress.XtraGrid.GridControl();
     this.gridViewMdInstructor = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnMdIT1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdIT2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdIT3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.tabPageInstructorComm = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_InstructorCommission = new DevExpress.XtraGrid.GridControl();
     this.gridViewMdIC = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnMdIC1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdIC2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabPageInstructorTypeComm = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_InstructorTypeCommission = new DevExpress.XtraGrid.GridControl();
     this.gridViewMdITC = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnMdITC1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnMdITC2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnMdITC3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdCM_tabPTCommision = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_PTCommission = new DevExpress.XtraGrid.GridControl();
     this.gridViewPTCommission = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPT1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPT2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPT3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     this.panelSalesCommission = new System.Windows.Forms.Panel();
     this.cmbYear = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label12 = new System.Windows.Forms.Label();
     this.lkBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDCommision)).BeginInit();
     this.grpMDCommision.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCommission)).BeginInit();
     this.tabControlCommission.SuspendLayout();
     this.mdCM_tabSalesCommision.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpSubMDCommissionScheme)).BeginInit();
     this.grpSubMDCommissionScheme.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesCommisionScheme)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CalMethod)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_CrossSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdSC_txtNEmployeeID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCommissionEntry)).BeginInit();
     this.tabControlCommissionEntry.SuspendLayout();
     this.tabMethodOne.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow2)).BeginInit();
     this.grpMDPromotionBelow2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridCategory2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCategory2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCategory)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCategory)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridTarget)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTarget)).BeginInit();
     this.tabMethodTwo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridRange)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRange)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_fCombine)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grid2Category2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2Category2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid2Category)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2Category)).BeginInit();
     this.tabMethodThree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridMgr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMgr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_fCombine_Mgr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grid3Category2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3Category2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid3Category)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3Category)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesCommisionSchemeEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesCommissionSchemeEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     this.mdCM_tabInstructorCommision.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlInstructorCommission)).BeginInit();
     this.tabControlInstructorCommission.SuspendLayout();
     this.tabPageInstructorType.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdInstructor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
     this.tabPageInstructorComm.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdIC)).BeginInit();
     this.tabPageInstructorTypeComm.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorTypeCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdITC)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).BeginInit();
     this.mdCM_tabPTCommision.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_PTCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPTCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.panelSalesCommission.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDCommision
     //
     this.grpMDCommision.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDCommision.Appearance.Options.UseBackColor = true;
     this.grpMDCommision.Controls.Add(this.tabControlCommission);
     this.grpMDCommision.Controls.Add(this.btn_Add);
     this.grpMDCommision.Controls.Add(this.btn_Del);
     this.grpMDCommision.Controls.Add(this.panelSalesCommission);
     this.grpMDCommision.Location = new System.Drawing.Point(8, 0);
     this.grpMDCommision.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDCommision.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDCommision.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDCommision.Name = "grpMDCommision";
     this.grpMDCommision.Size = new System.Drawing.Size(980, 560);
     this.grpMDCommision.TabIndex = 17;
     this.grpMDCommision.Text = "Commision";
     //
     // tabControlCommission
     //
     this.tabControlCommission.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tabControlCommission.AppearancePage.Header.Options.UseFont = true;
     this.tabControlCommission.Location = new System.Drawing.Point(8, 48);
     this.tabControlCommission.LookAndFeel.SkinName = "Coffee";
     this.tabControlCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.tabControlCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.tabControlCommission.Name = "tabControlCommission";
     this.tabControlCommission.SelectedTabPage = this.mdCM_tabSalesCommision;
     this.tabControlCommission.Size = new System.Drawing.Size(960, 512);
     this.tabControlCommission.TabIndex = 13;
     this.tabControlCommission.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                          this.mdCM_tabSalesCommision,
                                                                                          this.mdCM_tabInstructorCommision,
                                                                                          this.mdCM_tabPTCommision});
     this.tabControlCommission.Text = "xtraTabControl2";
     this.tabControlCommission.Click += new System.EventHandler(this.tabControlCommission_Click);
     this.tabControlCommission.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabControlCommission_SelectedPageChanged);
     //
     // mdCM_tabSalesCommision
     //
     this.mdCM_tabSalesCommision.Appearance.PageClient.BackColor = System.Drawing.SystemColors.Control;
     this.mdCM_tabSalesCommision.Appearance.PageClient.Options.UseBackColor = true;
     this.mdCM_tabSalesCommision.Controls.Add(this.grpSubMDCommissionScheme);
     this.mdCM_tabSalesCommision.Controls.Add(this.tabControlCommissionEntry);
     this.mdCM_tabSalesCommision.Name = "mdCM_tabSalesCommision";
     this.mdCM_tabSalesCommision.Size = new System.Drawing.Size(954, 483);
     this.mdCM_tabSalesCommision.Text = "Sales Commission";
     //
     // grpSubMDCommissionScheme
     //
     this.grpSubMDCommissionScheme.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.grpSubMDCommissionScheme.Controls.Add(this.gridControlMd_SalesCommisionScheme);
     this.grpSubMDCommissionScheme.Controls.Add(this.mdSC_txtNEmployeeID);
     this.grpSubMDCommissionScheme.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpSubMDCommissionScheme.Location = new System.Drawing.Point(0, 0);
     this.grpSubMDCommissionScheme.Name = "grpSubMDCommissionScheme";
     this.grpSubMDCommissionScheme.Size = new System.Drawing.Size(954, 136);
     this.grpSubMDCommissionScheme.TabIndex = 101;
     this.grpSubMDCommissionScheme.Text = "groupControl4";
     //
     // gridControlMd_SalesCommisionScheme
     //
     this.gridControlMd_SalesCommisionScheme.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_SalesCommisionScheme.EmbeddedNavigator
     //
     this.gridControlMd_SalesCommisionScheme.EmbeddedNavigator.Name = "";
     this.gridControlMd_SalesCommisionScheme.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_SalesCommisionScheme.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_SalesCommisionScheme.MainView = this.gridViewMd_SalesCommission;
     this.gridControlMd_SalesCommisionScheme.Name = "gridControlMd_SalesCommisionScheme";
     this.gridControlMd_SalesCommisionScheme.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                                 this.chk_CrossSales,
                                                                                                                                 this.lk_CalMethod});
     this.gridControlMd_SalesCommisionScheme.Size = new System.Drawing.Size(954, 136);
     this.gridControlMd_SalesCommisionScheme.TabIndex = 101;
     this.gridControlMd_SalesCommisionScheme.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                       this.gridViewMd_SalesCommission});
     //
     // gridViewMd_SalesCommission
     //
     this.gridViewMd_SalesCommission.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                       this.nCommGroupID,
                                                                                                       this.strGroupName,
                                                                                                       this.nCalMethod,
                                                                                                       this.mBranchTarget,
                                                                                                       this.fCrossSales,
                                                                                                       this.dtFrom,
                                                                                                       this.dtTo});
     this.gridViewMd_SalesCommission.GridControl = this.gridControlMd_SalesCommisionScheme;
     this.gridViewMd_SalesCommission.Name = "gridViewMd_SalesCommission";
     this.gridViewMd_SalesCommission.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_SalesCommission.OptionsCustomization.AllowSort = false;
     this.gridViewMd_SalesCommission.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_SalesCommission.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_SalesCommission_FocusedRowChanged);
     this.gridViewMd_SalesCommission.LostFocus += new System.EventHandler(this.gridViewMd_SalesCommission_LostFocus);
     //
     // nCommGroupID
     //
     this.nCommGroupID.Caption = "CommGroupID";
     this.nCommGroupID.FieldName = "nCommGroupID";
     this.nCommGroupID.Name = "nCommGroupID";
     this.nCommGroupID.Visible = true;
     this.nCommGroupID.VisibleIndex = 0;
     this.nCommGroupID.Width = 134;
     //
     // strGroupName
     //
     this.strGroupName.Caption = "GroupName";
     this.strGroupName.FieldName = "strGroupName";
     this.strGroupName.Name = "strGroupName";
     this.strGroupName.Visible = true;
     this.strGroupName.VisibleIndex = 1;
     this.strGroupName.Width = 203;
     //
     // nCalMethod
     //
     this.nCalMethod.Caption = "Method";
     this.nCalMethod.ColumnEdit = this.lk_CalMethod;
     this.nCalMethod.FieldName = "nCalMethod";
     this.nCalMethod.Name = "nCalMethod";
     this.nCalMethod.Visible = true;
     this.nCalMethod.VisibleIndex = 2;
     this.nCalMethod.Width = 120;
     //
     // lk_CalMethod
     //
     this.lk_CalMethod.AutoHeight = false;
     this.lk_CalMethod.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CalMethod.Name = "lk_CalMethod";
     //
     // mBranchTarget
     //
     this.mBranchTarget.Caption = "Branch Target $";
     this.mBranchTarget.FieldName = "mBranchTarget";
     this.mBranchTarget.Name = "mBranchTarget";
     this.mBranchTarget.Visible = true;
     this.mBranchTarget.VisibleIndex = 3;
     this.mBranchTarget.Width = 153;
     //
     // fCrossSales
     //
     this.fCrossSales.Caption = "Cross Sales";
     this.fCrossSales.ColumnEdit = this.chk_CrossSales;
     this.fCrossSales.FieldName = "fCrossSales";
     this.fCrossSales.Name = "fCrossSales";
     this.fCrossSales.Visible = true;
     this.fCrossSales.VisibleIndex = 6;
     this.fCrossSales.Width = 73;
     //
     // chk_CrossSales
     //
     this.chk_CrossSales.AutoHeight = false;
     this.chk_CrossSales.Name = "chk_CrossSales";
     //
     // dtFrom
     //
     this.dtFrom.Caption = "From";
     this.dtFrom.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtFrom.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtFrom.FieldName = "dtFrom";
     this.dtFrom.Name = "dtFrom";
     this.dtFrom.Visible = true;
     this.dtFrom.VisibleIndex = 4;
     this.dtFrom.Width = 130;
     //
     // dtTo
     //
     this.dtTo.Caption = "Till";
     this.dtTo.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtTo.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtTo.FieldName = "dtTo";
     this.dtTo.Name = "dtTo";
     this.dtTo.Visible = true;
     this.dtTo.VisibleIndex = 5;
     this.dtTo.Width = 127;
     //
     // mdSC_txtNEmployeeID
     //
     this.mdSC_txtNEmployeeID.EditValue = "";
     this.mdSC_txtNEmployeeID.ImeMode = System.Windows.Forms.ImeMode.On;
     this.mdSC_txtNEmployeeID.Location = new System.Drawing.Point(552, 168);
     this.mdSC_txtNEmployeeID.Name = "mdSC_txtNEmployeeID";
     //
     // mdSC_txtNEmployeeID.Properties
     //
     this.mdSC_txtNEmployeeID.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdSC_txtNEmployeeID.Properties.Appearance.Options.UseFont = true;
     this.mdSC_txtNEmployeeID.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdSC_txtNEmployeeID.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdSC_txtNEmployeeID.Size = new System.Drawing.Size(32, 20);
     this.mdSC_txtNEmployeeID.TabIndex = 111;
     //
     // tabControlCommissionEntry
     //
     this.tabControlCommissionEntry.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tabControlCommissionEntry.AppearancePage.Header.Options.UseFont = true;
     this.tabControlCommissionEntry.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.tabControlCommissionEntry.Location = new System.Drawing.Point(0, 139);
     this.tabControlCommissionEntry.LookAndFeel.SkinName = "Coffee";
     this.tabControlCommissionEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.tabControlCommissionEntry.LookAndFeel.UseWindowsXPTheme = false;
     this.tabControlCommissionEntry.Name = "tabControlCommissionEntry";
     this.tabControlCommissionEntry.SelectedTabPage = this.tabMethodOne;
     this.tabControlCommissionEntry.Size = new System.Drawing.Size(954, 344);
     this.tabControlCommissionEntry.TabIndex = 94;
     this.tabControlCommissionEntry.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                               this.tabMethodOne,
                                                                                               this.tabMethodTwo,
                                                                                               this.tabMethodThree,
                                                                                               this.xtraTabPage1});
     this.tabControlCommissionEntry.Text = "xtraTabControl2";
     //
     // tabMethodOne
     //
     this.tabMethodOne.Controls.Add(this.btn_Target_Add);
     this.tabMethodOne.Controls.Add(this.btn_Target_Del);
     this.tabMethodOne.Controls.Add(this.grpMDPromotionBelow2);
     this.tabMethodOne.Controls.Add(this.gridTarget);
     this.tabMethodOne.Name = "tabMethodOne";
     this.tabMethodOne.Size = new System.Drawing.Size(948, 315);
     this.tabMethodOne.Text = "Method One";
     //
     // btn_Target_Add
     //
     this.btn_Target_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Target_Add.Appearance.Options.UseFont = true;
     this.btn_Target_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Target_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Target_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Target_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Target_Add.ImageIndex = 0;
     this.btn_Target_Add.ImageList = this.imageList1;
     this.btn_Target_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Target_Add.Location = new System.Drawing.Point(8, 176);
     this.btn_Target_Add.Name = "btn_Target_Add";
     this.btn_Target_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Target_Add.TabIndex = 136;
     this.btn_Target_Add.Click += new System.EventHandler(this.btn_Target_Add_Click);
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // btn_Target_Del
     //
     this.btn_Target_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Target_Del.Appearance.Options.UseFont = true;
     this.btn_Target_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Target_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Target_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Target_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Target_Del.ImageIndex = 1;
     this.btn_Target_Del.ImageList = this.imageList1;
     this.btn_Target_Del.Location = new System.Drawing.Point(48, 176);
     this.btn_Target_Del.Name = "btn_Target_Del";
     this.btn_Target_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Target_Del.TabIndex = 135;
     this.btn_Target_Del.Click += new System.EventHandler(this.btn_Target_Del_Click);
     //
     // grpMDPromotionBelow2
     //
     this.grpMDPromotionBelow2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpMDPromotionBelow2.Controls.Add(this.gridCategory2);
     this.grpMDPromotionBelow2.Controls.Add(this.gridCategory);
     this.grpMDPromotionBelow2.Controls.Add(this.btnCategory_Add);
     this.grpMDPromotionBelow2.Controls.Add(this.btnCategory_Del);
     this.grpMDPromotionBelow2.Controls.Add(this.btnCategory_DelAll);
     this.grpMDPromotionBelow2.Controls.Add(this.btnCategory_AddAll);
     this.grpMDPromotionBelow2.Location = new System.Drawing.Point(0, 8);
     this.grpMDPromotionBelow2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.grpMDPromotionBelow2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPromotionBelow2.Name = "grpMDPromotionBelow2";
     this.grpMDPromotionBelow2.ShowCaption = false;
     this.grpMDPromotionBelow2.Size = new System.Drawing.Size(896, 160);
     this.grpMDPromotionBelow2.TabIndex = 7;
     this.grpMDPromotionBelow2.Text = "groupControl1";
     //
     // gridCategory2
     //
     //
     // gridCategory2.EmbeddedNavigator
     //
     this.gridCategory2.EmbeddedNavigator.Name = "";
     this.gridCategory2.Location = new System.Drawing.Point(480, 8);
     this.gridCategory2.MainView = this.gridViewCategory2;
     this.gridCategory2.Name = "gridCategory2";
     this.gridCategory2.Size = new System.Drawing.Size(376, 144);
     this.gridCategory2.TabIndex = 29;
     this.gridCategory2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gridViewCategory2});
     //
     // gridViewCategory2
     //
     this.gridViewCategory2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.nCategoryID,
                                                                                              this.Description2,
                                                                                              this.Percentage2});
     this.gridViewCategory2.GridControl = this.gridCategory2;
     this.gridViewCategory2.Name = "gridViewCategory2";
     this.gridViewCategory2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewCategory2.OptionsCustomization.AllowFilter = false;
     this.gridViewCategory2.OptionsSelection.MultiSelect = true;
     this.gridViewCategory2.OptionsView.ShowGroupPanel = false;
     this.gridViewCategory2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                       new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.nCategoryID, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewCategory2.SynchronizeClones = false;
     this.gridViewCategory2.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.Update_Pecentage);
     this.gridViewCategory2.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridTarget_FocusedRowChanged);
     //
     // nCategoryID
     //
     this.nCategoryID.Caption = "CategoryID";
     this.nCategoryID.FieldName = "nCategoryID";
     this.nCategoryID.Name = "nCategoryID";
     this.nCategoryID.OptionsColumn.AllowEdit = false;
     this.nCategoryID.Visible = true;
     this.nCategoryID.VisibleIndex = 0;
     this.nCategoryID.Width = 102;
     //
     // Description2
     //
     this.Description2.Caption = "Description";
     this.Description2.FieldName = "strDescription";
     this.Description2.Name = "Description2";
     this.Description2.OptionsColumn.AllowEdit = false;
     this.Description2.Visible = true;
     this.Description2.VisibleIndex = 1;
     this.Description2.Width = 181;
     //
     // Percentage2
     //
     this.Percentage2.Caption = "%";
     this.Percentage2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.Percentage2.FieldName = "Percentage";
     this.Percentage2.Name = "Percentage2";
     this.Percentage2.Visible = true;
     this.Percentage2.VisibleIndex = 2;
     this.Percentage2.Width = 79;
     //
     // gridCategory
     //
     //
     // gridCategory.EmbeddedNavigator
     //
     this.gridCategory.EmbeddedNavigator.Name = "";
     this.gridCategory.Location = new System.Drawing.Point(8, 8);
     this.gridCategory.MainView = this.gridViewCategory;
     this.gridCategory.Name = "gridCategory";
     this.gridCategory.Size = new System.Drawing.Size(376, 144);
     this.gridCategory.TabIndex = 24;
     this.gridCategory.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridViewCategory});
     //
     // gridViewCategory
     //
     this.gridViewCategory.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                             this.CategoryID,
                                                                                             this.Description});
     this.gridViewCategory.GridControl = this.gridCategory;
     this.gridViewCategory.Name = "gridViewCategory";
     this.gridViewCategory.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewCategory.OptionsBehavior.Editable = false;
     this.gridViewCategory.OptionsCustomization.AllowFilter = false;
     this.gridViewCategory.OptionsSelection.MultiSelect = true;
     this.gridViewCategory.OptionsView.ShowGroupPanel = false;
     this.gridViewCategory.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                      new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.CategoryID, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // CategoryID
     //
     this.CategoryID.Caption = "CategoryID";
     this.CategoryID.FieldName = "nCategoryID";
     this.CategoryID.Name = "CategoryID";
     this.CategoryID.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.CategoryID.Visible = true;
     this.CategoryID.VisibleIndex = 0;
     this.CategoryID.Width = 100;
     //
     // Description
     //
     this.Description.Caption = "Description";
     this.Description.FieldName = "strDescription";
     this.Description.Name = "Description";
     this.Description.Visible = true;
     this.Description.VisibleIndex = 1;
     this.Description.Width = 262;
     //
     // btnCategory_Add
     //
     this.btnCategory_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCategory_Add.Location = new System.Drawing.Point(416, 16);
     this.btnCategory_Add.Name = "btnCategory_Add";
     this.btnCategory_Add.Size = new System.Drawing.Size(32, 24);
     this.btnCategory_Add.TabIndex = 25;
     this.btnCategory_Add.Text = ">";
     this.btnCategory_Add.Click += new System.EventHandler(this.btnCategory_Add_Click);
     //
     // btnCategory_Del
     //
     this.btnCategory_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCategory_Del.Location = new System.Drawing.Point(416, 112);
     this.btnCategory_Del.Name = "btnCategory_Del";
     this.btnCategory_Del.Size = new System.Drawing.Size(32, 24);
     this.btnCategory_Del.TabIndex = 28;
     this.btnCategory_Del.Text = "<";
     this.btnCategory_Del.Click += new System.EventHandler(this.btnCategory_Del_Click);
     //
     // btnCategory_DelAll
     //
     this.btnCategory_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCategory_DelAll.Location = new System.Drawing.Point(416, 48);
     this.btnCategory_DelAll.Name = "btnCategory_DelAll";
     this.btnCategory_DelAll.Size = new System.Drawing.Size(32, 24);
     this.btnCategory_DelAll.TabIndex = 27;
     this.btnCategory_DelAll.Text = "<<";
     this.btnCategory_DelAll.Click += new System.EventHandler(this.btnCategory_DelAll_Click);
     //
     // btnCategory_AddAll
     //
     this.btnCategory_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCategory_AddAll.Location = new System.Drawing.Point(416, 80);
     this.btnCategory_AddAll.Name = "btnCategory_AddAll";
     this.btnCategory_AddAll.Size = new System.Drawing.Size(32, 24);
     this.btnCategory_AddAll.TabIndex = 26;
     this.btnCategory_AddAll.Text = ">>";
     this.btnCategory_AddAll.Click += new System.EventHandler(this.btnCategory_AddAll_Click);
     //
     // gridTarget
     //
     //
     // gridTarget.EmbeddedNavigator
     //
     this.gridTarget.EmbeddedNavigator.Name = "";
     this.gridTarget.Location = new System.Drawing.Point(8, 192);
     this.gridTarget.MainView = this.gridViewTarget;
     this.gridTarget.Name = "gridTarget";
     this.gridTarget.Size = new System.Drawing.Size(888, 120);
     this.gridTarget.TabIndex = 25;
     this.gridTarget.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                               this.gridViewTarget});
     //
     // gridViewTarget
     //
     this.gridViewTarget.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                           this.nIndivTargetFrom,
                                                                                           this.nIndivTargetTo,
                                                                                           this.nIndivPercent,
                                                                                           this.nBranchTargetFrom,
                                                                                           this.nBranchTargetTo,
                                                                                           this.nBranchPercent,
                                                                                           this.nBasePercent,
                                                                                           this.mBaseAmount,
                                                                                           this.fCombine});
     this.gridViewTarget.GridControl = this.gridTarget;
     this.gridViewTarget.Name = "gridViewTarget";
     this.gridViewTarget.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewTarget.OptionsCustomization.AllowFilter = false;
     this.gridViewTarget.OptionsSelection.MultiSelect = true;
     this.gridViewTarget.OptionsView.ShowGroupPanel = false;
     this.gridViewTarget.LostFocus += new System.EventHandler(this.gridViewTarget_LostFocus);
     //
     // nIndivTargetFrom
     //
     this.nIndivTargetFrom.Caption = "Individual From";
     this.nIndivTargetFrom.FieldName = "nIndivTargetFrom";
     this.nIndivTargetFrom.Name = "nIndivTargetFrom";
     this.nIndivTargetFrom.Visible = true;
     this.nIndivTargetFrom.VisibleIndex = 0;
     this.nIndivTargetFrom.Width = 117;
     //
     // nIndivTargetTo
     //
     this.nIndivTargetTo.Caption = "Individual To";
     this.nIndivTargetTo.FieldName = "nIndivTargetTo";
     this.nIndivTargetTo.Name = "nIndivTargetTo";
     this.nIndivTargetTo.Visible = true;
     this.nIndivTargetTo.VisibleIndex = 1;
     this.nIndivTargetTo.Width = 114;
     //
     // nIndivPercent
     //
     this.nIndivPercent.Caption = "Reward %";
     this.nIndivPercent.FieldName = "nIndivPercent";
     this.nIndivPercent.Name = "nIndivPercent";
     this.nIndivPercent.Visible = true;
     this.nIndivPercent.VisibleIndex = 2;
     this.nIndivPercent.Width = 105;
     //
     // nBranchTargetFrom
     //
     this.nBranchTargetFrom.Caption = "Branch From";
     this.nBranchTargetFrom.FieldName = "nBranchTargetFrom";
     this.nBranchTargetFrom.Name = "nBranchTargetFrom";
     this.nBranchTargetFrom.Visible = true;
     this.nBranchTargetFrom.VisibleIndex = 3;
     this.nBranchTargetFrom.Width = 103;
     //
     // nBranchTargetTo
     //
     this.nBranchTargetTo.Caption = "Branch To";
     this.nBranchTargetTo.FieldName = "nBranchTargetTo";
     this.nBranchTargetTo.Name = "nBranchTargetTo";
     this.nBranchTargetTo.Visible = true;
     this.nBranchTargetTo.VisibleIndex = 4;
     this.nBranchTargetTo.Width = 113;
     //
     // nBranchPercent
     //
     this.nBranchPercent.Caption = "+ Branch %";
     this.nBranchPercent.FieldName = "nBranchPercent";
     this.nBranchPercent.Name = "nBranchPercent";
     this.nBranchPercent.Visible = true;
     this.nBranchPercent.VisibleIndex = 5;
     this.nBranchPercent.Width = 82;
     //
     // nBasePercent
     //
     this.nBasePercent.Caption = "Min %";
     this.nBasePercent.FieldName = "nBasePercent";
     this.nBasePercent.Name = "nBasePercent";
     this.nBasePercent.Visible = true;
     this.nBasePercent.VisibleIndex = 6;
     this.nBasePercent.Width = 82;
     //
     // mBaseAmount
     //
     this.mBaseAmount.Caption = "Min Amount";
     this.mBaseAmount.FieldName = "mBaseAmount";
     this.mBaseAmount.Name = "mBaseAmount";
     this.mBaseAmount.Visible = true;
     this.mBaseAmount.VisibleIndex = 7;
     this.mBaseAmount.Width = 103;
     //
     // fCombine
     //
     this.fCombine.Caption = "Both";
     this.fCombine.FieldName = "fCombine";
     this.fCombine.Name = "fCombine";
     this.fCombine.Visible = true;
     this.fCombine.VisibleIndex = 8;
     this.fCombine.Width = 55;
     //
     // tabMethodTwo
     //
     this.tabMethodTwo.Controls.Add(this.btn_Range_Del);
     this.tabMethodTwo.Controls.Add(this.gridRange);
     this.tabMethodTwo.Controls.Add(this.btn_Range_Add);
     this.tabMethodTwo.Controls.Add(this.groupControl2);
     this.tabMethodTwo.Name = "tabMethodTwo";
     this.tabMethodTwo.Size = new System.Drawing.Size(948, 315);
     this.tabMethodTwo.Text = "Method Two";
     //
     // btn_Range_Del
     //
     this.btn_Range_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Range_Del.Appearance.Options.UseFont = true;
     this.btn_Range_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Range_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Range_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Range_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Range_Del.ImageIndex = 1;
     this.btn_Range_Del.ImageList = this.imageList1;
     this.btn_Range_Del.Location = new System.Drawing.Point(48, 168);
     this.btn_Range_Del.Name = "btn_Range_Del";
     this.btn_Range_Del.Size = new System.Drawing.Size(38, 20);
     this.btn_Range_Del.TabIndex = 139;
     this.btn_Range_Del.Click += new System.EventHandler(this.btn_Range_Del_Click);
     //
     // gridRange
     //
     //
     // gridRange.EmbeddedNavigator
     //
     this.gridRange.EmbeddedNavigator.Name = "";
     this.gridRange.Location = new System.Drawing.Point(8, 192);
     this.gridRange.MainView = this.gridViewRange;
     this.gridRange.Name = "gridRange";
     this.gridRange.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                        this.chk_fCombine});
     this.gridRange.Size = new System.Drawing.Size(888, 120);
     this.gridRange.TabIndex = 137;
     this.gridRange.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                              this.gridViewRange});
     //
     // gridViewRange
     //
     this.gridViewRange.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                          this.mRangeSalesFrom,
                                                                                          this.mRangeSalesTo,
                                                                                          this.nRangePercent,
                                                                                          this.mRangeAmt,
                                                                                          this.fCombine_Range});
     this.gridViewRange.GridControl = this.gridRange;
     this.gridViewRange.Name = "gridViewRange";
     this.gridViewRange.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewRange.OptionsCustomization.AllowFilter = false;
     this.gridViewRange.OptionsSelection.MultiSelect = true;
     this.gridViewRange.OptionsView.ShowGroupPanel = false;
     this.gridViewRange.LostFocus += new System.EventHandler(this.gridViewRange_LostFocus);
     //
     // mRangeSalesFrom
     //
     this.mRangeSalesFrom.Caption = "Sales From $";
     this.mRangeSalesFrom.FieldName = "mRangeSalesFrom";
     this.mRangeSalesFrom.Name = "mRangeSalesFrom";
     this.mRangeSalesFrom.Visible = true;
     this.mRangeSalesFrom.VisibleIndex = 0;
     this.mRangeSalesFrom.Width = 195;
     //
     // mRangeSalesTo
     //
     this.mRangeSalesTo.Caption = "Sales To $";
     this.mRangeSalesTo.FieldName = "mRangeSalesTo";
     this.mRangeSalesTo.Name = "mRangeSalesTo";
     this.mRangeSalesTo.Visible = true;
     this.mRangeSalesTo.VisibleIndex = 1;
     this.mRangeSalesTo.Width = 190;
     //
     // nRangePercent
     //
     this.nRangePercent.Caption = "Reward % ";
     this.nRangePercent.FieldName = "nRangePercent";
     this.nRangePercent.Name = "nRangePercent";
     this.nRangePercent.Visible = true;
     this.nRangePercent.VisibleIndex = 2;
     this.nRangePercent.Width = 175;
     //
     // mRangeAmt
     //
     this.mRangeAmt.Caption = "Reward Amount";
     this.mRangeAmt.FieldName = "mRangeAmt";
     this.mRangeAmt.Name = "mRangeAmt";
     this.mRangeAmt.Visible = true;
     this.mRangeAmt.VisibleIndex = 3;
     this.mRangeAmt.Width = 222;
     //
     // fCombine_Range
     //
     this.fCombine_Range.Caption = "Both";
     this.fCombine_Range.ColumnEdit = this.chk_fCombine;
     this.fCombine_Range.FieldName = "fCombine ";
     this.fCombine_Range.Name = "fCombine_Range";
     this.fCombine_Range.Visible = true;
     this.fCombine_Range.VisibleIndex = 4;
     this.fCombine_Range.Width = 92;
     //
     // chk_fCombine
     //
     this.chk_fCombine.AutoHeight = false;
     this.chk_fCombine.Name = "chk_fCombine";
     //
     // btn_Range_Add
     //
     this.btn_Range_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Range_Add.Appearance.Options.UseFont = true;
     this.btn_Range_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Range_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Range_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Range_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Range_Add.ImageIndex = 0;
     this.btn_Range_Add.ImageList = this.imageList1;
     this.btn_Range_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Range_Add.Location = new System.Drawing.Point(8, 168);
     this.btn_Range_Add.Name = "btn_Range_Add";
     this.btn_Range_Add.Size = new System.Drawing.Size(38, 20);
     this.btn_Range_Add.TabIndex = 140;
     this.btn_Range_Add.Click += new System.EventHandler(this.btn_Range_Add_Click);
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.groupControl2.Controls.Add(this.grid2Category2);
     this.groupControl2.Controls.Add(this.grid2Category);
     this.groupControl2.Controls.Add(this.btn2Category_Add);
     this.groupControl2.Controls.Add(this.btn2Category_Del);
     this.groupControl2.Controls.Add(this.btn2Category_DelAll);
     this.groupControl2.Controls.Add(this.btn2Category_AddAll);
     this.groupControl2.Location = new System.Drawing.Point(0, 8);
     this.groupControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(896, 160);
     this.groupControl2.TabIndex = 8;
     this.groupControl2.Text = "groupControl1";
     //
     // grid2Category2
     //
     //
     // grid2Category2.EmbeddedNavigator
     //
     this.grid2Category2.EmbeddedNavigator.Name = "";
     this.grid2Category2.Location = new System.Drawing.Point(456, 8);
     this.grid2Category2.MainView = this.gridView2Category2;
     this.grid2Category2.Name = "grid2Category2";
     this.grid2Category2.Size = new System.Drawing.Size(376, 144);
     this.grid2Category2.TabIndex = 29;
     this.grid2Category2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridView2Category2});
     //
     // gridView2Category2
     //
     this.gridView2Category2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                               this.gridColumn18,
                                                                                               this.gridColumn19});
     this.gridView2Category2.GridControl = this.grid2Category2;
     this.gridView2Category2.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Never;
     this.gridView2Category2.Name = "gridView2Category2";
     this.gridView2Category2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView2Category2.OptionsCustomization.AllowFilter = false;
     this.gridView2Category2.OptionsSelection.MultiSelect = true;
     this.gridView2Category2.OptionsView.ShowGroupPanel = false;
     this.gridView2Category2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                        new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn18, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridView2Category2.SynchronizeClones = false;
     this.gridView2Category2.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridRange_FocusedRowChanged);
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "CategoryID";
     this.gridColumn18.FieldName = "nCategoryID";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.OptionsColumn.AllowEdit = false;
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     this.gridColumn18.Width = 78;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Description";
     this.gridColumn19.FieldName = "strDescription";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.AllowEdit = false;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     this.gridColumn19.Width = 171;
     //
     // grid2Category
     //
     //
     // grid2Category.EmbeddedNavigator
     //
     this.grid2Category.EmbeddedNavigator.Name = "";
     this.grid2Category.Location = new System.Drawing.Point(8, 8);
     this.grid2Category.MainView = this.gridView2Category;
     this.grid2Category.Name = "grid2Category";
     this.grid2Category.Size = new System.Drawing.Size(360, 144);
     this.grid2Category.TabIndex = 24;
     this.grid2Category.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gridView2Category});
     //
     // gridView2Category
     //
     this.gridView2Category.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.gridColumn21,
                                                                                              this.gridColumn22});
     this.gridView2Category.GridControl = this.grid2Category;
     this.gridView2Category.Name = "gridView2Category";
     this.gridView2Category.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView2Category.OptionsBehavior.Editable = false;
     this.gridView2Category.OptionsCustomization.AllowFilter = false;
     this.gridView2Category.OptionsSelection.MultiSelect = true;
     this.gridView2Category.OptionsView.ShowGroupPanel = false;
     this.gridView2Category.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                       new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn21, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "CategoryID";
     this.gridColumn21.FieldName = "nCategoryID";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 0;
     this.gridColumn21.Width = 78;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Description";
     this.gridColumn22.FieldName = "strDescription";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 1;
     this.gridColumn22.Width = 268;
     //
     // btn2Category_Add
     //
     this.btn2Category_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn2Category_Add.Location = new System.Drawing.Point(392, 16);
     this.btn2Category_Add.Name = "btn2Category_Add";
     this.btn2Category_Add.Size = new System.Drawing.Size(32, 24);
     this.btn2Category_Add.TabIndex = 25;
     this.btn2Category_Add.Text = ">";
     this.btn2Category_Add.Click += new System.EventHandler(this.btn2Category_Add_Click);
     //
     // btn2Category_Del
     //
     this.btn2Category_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn2Category_Del.Location = new System.Drawing.Point(392, 112);
     this.btn2Category_Del.Name = "btn2Category_Del";
     this.btn2Category_Del.Size = new System.Drawing.Size(32, 24);
     this.btn2Category_Del.TabIndex = 28;
     this.btn2Category_Del.Text = "<";
     this.btn2Category_Del.Click += new System.EventHandler(this.btn2Category_Del_Click);
     //
     // btn2Category_DelAll
     //
     this.btn2Category_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn2Category_DelAll.Location = new System.Drawing.Point(392, 48);
     this.btn2Category_DelAll.Name = "btn2Category_DelAll";
     this.btn2Category_DelAll.Size = new System.Drawing.Size(32, 24);
     this.btn2Category_DelAll.TabIndex = 27;
     this.btn2Category_DelAll.Text = "<<";
     this.btn2Category_DelAll.Click += new System.EventHandler(this.btn2Category_DelAll_Click);
     //
     // btn2Category_AddAll
     //
     this.btn2Category_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn2Category_AddAll.Location = new System.Drawing.Point(392, 80);
     this.btn2Category_AddAll.Name = "btn2Category_AddAll";
     this.btn2Category_AddAll.Size = new System.Drawing.Size(32, 24);
     this.btn2Category_AddAll.TabIndex = 26;
     this.btn2Category_AddAll.Text = ">>";
     this.btn2Category_AddAll.Click += new System.EventHandler(this.btn2Category_AddAll_Click);
     //
     // tabMethodThree
     //
     this.tabMethodThree.Controls.Add(this.btn_Mgr_Del);
     this.tabMethodThree.Controls.Add(this.gridMgr);
     this.tabMethodThree.Controls.Add(this.btn_Mgr_add);
     this.tabMethodThree.Controls.Add(this.groupControl3);
     this.tabMethodThree.Name = "tabMethodThree";
     this.tabMethodThree.Size = new System.Drawing.Size(948, 315);
     this.tabMethodThree.Text = "Method Three";
     //
     // btn_Mgr_Del
     //
     this.btn_Mgr_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Mgr_Del.Appearance.Options.UseFont = true;
     this.btn_Mgr_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Mgr_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Mgr_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Mgr_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Mgr_Del.ImageIndex = 1;
     this.btn_Mgr_Del.ImageList = this.imageList1;
     this.btn_Mgr_Del.Location = new System.Drawing.Point(48, 160);
     this.btn_Mgr_Del.Name = "btn_Mgr_Del";
     this.btn_Mgr_Del.Size = new System.Drawing.Size(38, 20);
     this.btn_Mgr_Del.TabIndex = 139;
     this.btn_Mgr_Del.Click += new System.EventHandler(this.btn_Mgr_Del_Click);
     //
     // gridMgr
     //
     //
     // gridMgr.EmbeddedNavigator
     //
     this.gridMgr.EmbeddedNavigator.Name = "";
     this.gridMgr.Location = new System.Drawing.Point(8, 184);
     this.gridMgr.MainView = this.gridViewMgr;
     this.gridMgr.Name = "gridMgr";
     this.gridMgr.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                      this.chk_fCombine_Mgr});
     this.gridMgr.Size = new System.Drawing.Size(888, 120);
     this.gridMgr.TabIndex = 137;
     this.gridMgr.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                            this.gridViewMgr});
     //
     // gridViewMgr
     //
     this.gridViewMgr.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                        this.nBranchPercentFrom,
                                                                                        this.nBranchPercentTo,
                                                                                        this.nMgrPercent,
                                                                                        this.dMgrAmt,
                                                                                        this.fCombine_Mgr});
     this.gridViewMgr.GridControl = this.gridMgr;
     this.gridViewMgr.Name = "gridViewMgr";
     this.gridViewMgr.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewMgr.OptionsCustomization.AllowFilter = false;
     this.gridViewMgr.OptionsSelection.MultiSelect = true;
     this.gridViewMgr.OptionsView.ShowGroupPanel = false;
     this.gridViewMgr.LostFocus += new System.EventHandler(this.gridViewMgr_LostFocus);
     //
     // nBranchPercentFrom
     //
     this.nBranchPercentFrom.Caption = "Branch From %";
     this.nBranchPercentFrom.FieldName = "nBranchPercentFrom";
     this.nBranchPercentFrom.Name = "nBranchPercentFrom";
     this.nBranchPercentFrom.Visible = true;
     this.nBranchPercentFrom.VisibleIndex = 0;
     this.nBranchPercentFrom.Width = 117;
     //
     // nBranchPercentTo
     //
     this.nBranchPercentTo.Caption = "Branch To %";
     this.nBranchPercentTo.FieldName = "nBranchPercentTo";
     this.nBranchPercentTo.Name = "nBranchPercentTo";
     this.nBranchPercentTo.Visible = true;
     this.nBranchPercentTo.VisibleIndex = 1;
     this.nBranchPercentTo.Width = 114;
     //
     // nMgrPercent
     //
     this.nMgrPercent.Caption = "Reward %";
     this.nMgrPercent.FieldName = "nMgrPercent";
     this.nMgrPercent.Name = "nMgrPercent";
     this.nMgrPercent.Visible = true;
     this.nMgrPercent.VisibleIndex = 2;
     this.nMgrPercent.Width = 105;
     //
     // dMgrAmt
     //
     this.dMgrAmt.Caption = "Min. Amount";
     this.dMgrAmt.FieldName = "dMgrAmt";
     this.dMgrAmt.Name = "dMgrAmt";
     this.dMgrAmt.Visible = true;
     this.dMgrAmt.VisibleIndex = 3;
     this.dMgrAmt.Width = 103;
     //
     // fCombine_Mgr
     //
     this.fCombine_Mgr.Caption = "Both";
     this.fCombine_Mgr.ColumnEdit = this.chk_fCombine_Mgr;
     this.fCombine_Mgr.FieldName = "fCombine";
     this.fCombine_Mgr.Name = "fCombine_Mgr";
     this.fCombine_Mgr.Visible = true;
     this.fCombine_Mgr.VisibleIndex = 4;
     this.fCombine_Mgr.Width = 113;
     //
     // chk_fCombine_Mgr
     //
     this.chk_fCombine_Mgr.AutoHeight = false;
     this.chk_fCombine_Mgr.Name = "chk_fCombine_Mgr";
     //
     // btn_Mgr_add
     //
     this.btn_Mgr_add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Mgr_add.Appearance.Options.UseFont = true;
     this.btn_Mgr_add.Appearance.Options.UseTextOptions = true;
     this.btn_Mgr_add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Mgr_add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Mgr_add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Mgr_add.ImageIndex = 0;
     this.btn_Mgr_add.ImageList = this.imageList1;
     this.btn_Mgr_add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Mgr_add.Location = new System.Drawing.Point(8, 160);
     this.btn_Mgr_add.Name = "btn_Mgr_add";
     this.btn_Mgr_add.Size = new System.Drawing.Size(38, 20);
     this.btn_Mgr_add.TabIndex = 140;
     this.btn_Mgr_add.Click += new System.EventHandler(this.btn_Mgr_add_Click);
     //
     // groupControl3
     //
     this.groupControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.groupControl3.Controls.Add(this.grid3Category2);
     this.groupControl3.Controls.Add(this.grid3Category);
     this.groupControl3.Controls.Add(this.btn3Category_Add);
     this.groupControl3.Controls.Add(this.btn3Category_Del);
     this.groupControl3.Controls.Add(this.btn3Category_DelAll);
     this.groupControl3.Controls.Add(this.btn3Category_AddAll);
     this.groupControl3.Location = new System.Drawing.Point(0, 8);
     this.groupControl3.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.groupControl3.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.ShowCaption = false;
     this.groupControl3.Size = new System.Drawing.Size(896, 152);
     this.groupControl3.TabIndex = 8;
     this.groupControl3.Text = "groupControl1";
     //
     // grid3Category2
     //
     //
     // grid3Category2.EmbeddedNavigator
     //
     this.grid3Category2.EmbeddedNavigator.Name = "";
     this.grid3Category2.Location = new System.Drawing.Point(456, 8);
     this.grid3Category2.MainView = this.gridView3Category2;
     this.grid3Category2.Name = "grid3Category2";
     this.grid3Category2.Size = new System.Drawing.Size(376, 136);
     this.grid3Category2.TabIndex = 29;
     this.grid3Category2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridView3Category2});
     //
     // gridView3Category2
     //
     this.gridView3Category2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                               this.gridColumn23,
                                                                                               this.gridColumn24,
                                                                                               this.gridColumn25});
     this.gridView3Category2.GridControl = this.grid3Category2;
     this.gridView3Category2.Name = "gridView3Category2";
     this.gridView3Category2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView3Category2.OptionsCustomization.AllowFilter = false;
     this.gridView3Category2.OptionsSelection.MultiSelect = true;
     this.gridView3Category2.OptionsView.ShowGroupPanel = false;
     this.gridView3Category2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                        new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn23, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridView3Category2.SynchronizeClones = false;
     this.gridView3Category2.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridManager_FocusedRowChanged);
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "CategoryID";
     this.gridColumn23.FieldName = "nCategoryID";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.OptionsColumn.AllowEdit = false;
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 0;
     this.gridColumn23.Width = 78;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Description";
     this.gridColumn24.FieldName = "strDescription";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.OptionsColumn.AllowEdit = false;
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 1;
     this.gridColumn24.Width = 171;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "%";
     this.gridColumn25.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn25.FieldName = "Percentage";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Width = 73;
     //
     // grid3Category
     //
     //
     // grid3Category.EmbeddedNavigator
     //
     this.grid3Category.EmbeddedNavigator.Name = "";
     this.grid3Category.Location = new System.Drawing.Point(8, 8);
     this.grid3Category.MainView = this.gridView3Category;
     this.grid3Category.Name = "grid3Category";
     this.grid3Category.Size = new System.Drawing.Size(360, 136);
     this.grid3Category.TabIndex = 24;
     this.grid3Category.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gridView3Category});
     //
     // gridView3Category
     //
     this.gridView3Category.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.gridColumn26,
                                                                                              this.gridColumn27});
     this.gridView3Category.GridControl = this.grid3Category;
     this.gridView3Category.Name = "gridView3Category";
     this.gridView3Category.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView3Category.OptionsBehavior.Editable = false;
     this.gridView3Category.OptionsCustomization.AllowFilter = false;
     this.gridView3Category.OptionsSelection.MultiSelect = true;
     this.gridView3Category.OptionsView.ShowGroupPanel = false;
     this.gridView3Category.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                       new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn26, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "CategoryID";
     this.gridColumn26.FieldName = "nCategoryID";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 0;
     this.gridColumn26.Width = 78;
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "Description";
     this.gridColumn27.FieldName = "strDescription";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 1;
     this.gridColumn27.Width = 268;
     //
     // btn3Category_Add
     //
     this.btn3Category_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn3Category_Add.Location = new System.Drawing.Point(392, 16);
     this.btn3Category_Add.Name = "btn3Category_Add";
     this.btn3Category_Add.Size = new System.Drawing.Size(32, 24);
     this.btn3Category_Add.TabIndex = 25;
     this.btn3Category_Add.Text = ">";
     this.btn3Category_Add.Click += new System.EventHandler(this.btn3Category_Add_Click);
     //
     // btn3Category_Del
     //
     this.btn3Category_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn3Category_Del.Location = new System.Drawing.Point(392, 112);
     this.btn3Category_Del.Name = "btn3Category_Del";
     this.btn3Category_Del.Size = new System.Drawing.Size(32, 24);
     this.btn3Category_Del.TabIndex = 28;
     this.btn3Category_Del.Text = "<";
     this.btn3Category_Del.Click += new System.EventHandler(this.btn3Category_Del_Click);
     //
     // btn3Category_DelAll
     //
     this.btn3Category_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn3Category_DelAll.Location = new System.Drawing.Point(392, 48);
     this.btn3Category_DelAll.Name = "btn3Category_DelAll";
     this.btn3Category_DelAll.Size = new System.Drawing.Size(32, 24);
     this.btn3Category_DelAll.TabIndex = 27;
     this.btn3Category_DelAll.Text = "<<";
     this.btn3Category_DelAll.Click += new System.EventHandler(this.btn3Category_DelAll_Click);
     //
     // btn3Category_AddAll
     //
     this.btn3Category_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn3Category_AddAll.Location = new System.Drawing.Point(392, 80);
     this.btn3Category_AddAll.Name = "btn3Category_AddAll";
     this.btn3Category_AddAll.Size = new System.Drawing.Size(32, 24);
     this.btn3Category_AddAll.TabIndex = 26;
     this.btn3Category_AddAll.Text = ">>";
     this.btn3Category_AddAll.Click += new System.EventHandler(this.btn3Category_AddAll_Click);
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.btn_Add2);
     this.xtraTabPage1.Controls.Add(this.btn_del2);
     this.xtraTabPage1.Controls.Add(this.gridControlMd_SalesCommisionSchemeEntries);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.PageEnabled = false;
     this.xtraTabPage1.PageVisible = false;
     this.xtraTabPage1.Size = new System.Drawing.Size(948, 315);
     this.xtraTabPage1.Text = "xtraTabPage1";
     //
     // btn_Add2
     //
     this.btn_Add2.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add2.Appearance.Options.UseFont = true;
     this.btn_Add2.Appearance.Options.UseTextOptions = true;
     this.btn_Add2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add2.ImageIndex = 0;
     this.btn_Add2.ImageList = this.imageList1;
     this.btn_Add2.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add2.Location = new System.Drawing.Point(0, 8);
     this.btn_Add2.Name = "btn_Add2";
     this.btn_Add2.Size = new System.Drawing.Size(38, 20);
     this.btn_Add2.TabIndex = 138;
     //
     // btn_del2
     //
     this.btn_del2.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_del2.Appearance.Options.UseFont = true;
     this.btn_del2.Appearance.Options.UseTextOptions = true;
     this.btn_del2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_del2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_del2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_del2.ImageIndex = 1;
     this.btn_del2.ImageList = this.imageList1;
     this.btn_del2.Location = new System.Drawing.Point(40, 8);
     this.btn_del2.Name = "btn_del2";
     this.btn_del2.Size = new System.Drawing.Size(38, 20);
     this.btn_del2.TabIndex = 137;
     //
     // gridControlMd_SalesCommisionSchemeEntries
     //
     this.gridControlMd_SalesCommisionSchemeEntries.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridControlMd_SalesCommisionSchemeEntries.EmbeddedNavigator
     //
     this.gridControlMd_SalesCommisionSchemeEntries.EmbeddedNavigator.Name = "";
     this.gridControlMd_SalesCommisionSchemeEntries.Location = new System.Drawing.Point(0, 131);
     this.gridControlMd_SalesCommisionSchemeEntries.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_SalesCommisionSchemeEntries.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_SalesCommisionSchemeEntries.MainView = this.gridViewMd_SalesCommissionSchemeEntries;
     this.gridControlMd_SalesCommisionSchemeEntries.Name = "gridControlMd_SalesCommisionSchemeEntries";
     this.gridControlMd_SalesCommisionSchemeEntries.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                                        this.repositoryItemComboBox1});
     this.gridControlMd_SalesCommisionSchemeEntries.Size = new System.Drawing.Size(948, 184);
     this.gridControlMd_SalesCommisionSchemeEntries.TabIndex = 96;
     this.gridControlMd_SalesCommisionSchemeEntries.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                              this.gridViewMd_SalesCommissionSchemeEntries});
     //
     // gridViewMd_SalesCommissionSchemeEntries
     //
     this.gridViewMd_SalesCommissionSchemeEntries.Appearance.FocusedRow.BackColor = System.Drawing.Color.White;
     this.gridViewMd_SalesCommissionSchemeEntries.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                                    this.gridColumn17,
                                                                                                                    this.gridColumnMdSCE2,
                                                                                                                    this.gridColumnMdSCE3,
                                                                                                                    this.gridColumnMdSCE4,
                                                                                                                    this.gridColumnMdSCE5,
                                                                                                                    this.gridColumnMdSCE6,
                                                                                                                    this.gridColumnMdSCE7,
                                                                                                                    this.gridColumnMdSCE8,
                                                                                                                    this.gridColumnMdSCE9,
                                                                                                                    this.gridColumnMdSCE10,
                                                                                                                    this.gridColumnMdSCE11,
                                                                                                                    this.gridColumnMdSCE12,
                                                                                                                    this.gridColumnMdSCE13,
                                                                                                                    this.gridColumnMdSCE14,
                                                                                                                    this.gridColumnMdSCE15,
                                                                                                                    this.gridColumnMdSCE16,
                                                                                                                    this.gridColumnMdSCE17,
                                                                                                                    this.gridColumnMdSCE18,
                                                                                                                    this.gridColumnMdSCE19,
                                                                                                                    this.gridColumnMdSCE20,
                                                                                                                    this.gridColumnMdSCE21,
                                                                                                                    this.gridColumn1,
                                                                                                                    this.gridColumn2,
                                                                                                                    this.gridColumn3,
                                                                                                                    this.gridColumn4,
                                                                                                                    this.gridColumn5,
                                                                                                                    this.gridColumn6,
                                                                                                                    this.gridColumn7,
                                                                                                                    this.gridColumn8,
                                                                                                                    this.gridColumn9,
                                                                                                                    this.gridColumn10,
                                                                                                                    this.gridColumn11,
                                                                                                                    this.gridColumn12,
                                                                                                                    this.gridColumn13,
                                                                                                                    this.gridColumn14,
                                                                                                                    this.gridColumn15,
                                                                                                                    this.gridColumn16});
     this.gridViewMd_SalesCommissionSchemeEntries.GridControl = this.gridControlMd_SalesCommisionSchemeEntries;
     this.gridViewMd_SalesCommissionSchemeEntries.Name = "gridViewMd_SalesCommissionSchemeEntries";
     this.gridViewMd_SalesCommissionSchemeEntries.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_SalesCommissionSchemeEntries.OptionsCustomization.AllowSort = false;
     this.gridViewMd_SalesCommissionSchemeEntries.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_SalesCommissionSchemeEntries.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Priority ID";
     this.gridColumn17.FieldName = "nPriorityID";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 0;
     //
     // gridColumnMdSCE2
     //
     this.gridColumnMdSCE2.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE2.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE2.Caption = "Fitness Pkg %";
     this.gridColumnMdSCE2.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE2.FieldName = "nFitnessPackageBranchTargetPercent";
     this.gridColumnMdSCE2.MinWidth = 30;
     this.gridColumnMdSCE2.Name = "gridColumnMdSCE2";
     this.gridColumnMdSCE2.Visible = true;
     this.gridColumnMdSCE2.VisibleIndex = 1;
     this.gridColumnMdSCE2.Width = 80;
     //
     // gridColumnMdSCE3
     //
     this.gridColumnMdSCE3.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE3.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE3.Caption = "Fitness Prod %";
     this.gridColumnMdSCE3.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE3.FieldName = "nFitnessProductBranchTargetPercent";
     this.gridColumnMdSCE3.MinWidth = 30;
     this.gridColumnMdSCE3.Name = "gridColumnMdSCE3";
     this.gridColumnMdSCE3.Visible = true;
     this.gridColumnMdSCE3.VisibleIndex = 2;
     this.gridColumnMdSCE3.Width = 80;
     //
     // gridColumnMdSCE4
     //
     this.gridColumnMdSCE4.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE4.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE4.Caption = "SPA Pkg %";
     this.gridColumnMdSCE4.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE4.FieldName = "nSPAPackageBranchTargetPercent";
     this.gridColumnMdSCE4.MinWidth = 30;
     this.gridColumnMdSCE4.Name = "gridColumnMdSCE4";
     this.gridColumnMdSCE4.Visible = true;
     this.gridColumnMdSCE4.VisibleIndex = 3;
     this.gridColumnMdSCE4.Width = 80;
     //
     // gridColumnMdSCE5
     //
     this.gridColumnMdSCE5.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE5.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE5.Caption = "SPA Prod %";
     this.gridColumnMdSCE5.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE5.FieldName = "nSPAProductBranchTargetPercent";
     this.gridColumnMdSCE5.Name = "gridColumnMdSCE5";
     this.gridColumnMdSCE5.Visible = true;
     this.gridColumnMdSCE5.VisibleIndex = 4;
     this.gridColumnMdSCE5.Width = 80;
     //
     // gridColumnMdSCE6
     //
     this.gridColumnMdSCE6.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE6.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE6.Caption = "PT Pkg %";
     this.gridColumnMdSCE6.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE6.FieldName = "nPTPackageBranchTargetPercent";
     this.gridColumnMdSCE6.Name = "gridColumnMdSCE6";
     this.gridColumnMdSCE6.Visible = true;
     this.gridColumnMdSCE6.VisibleIndex = 5;
     this.gridColumnMdSCE6.Width = 60;
     //
     // gridColumnMdSCE7
     //
     this.gridColumnMdSCE7.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE7.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE7.Caption = "Fitness Pkg %";
     this.gridColumnMdSCE7.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE7.FieldName = "nFitnessPackageIndTargetPercent";
     this.gridColumnMdSCE7.Name = "gridColumnMdSCE7";
     this.gridColumnMdSCE7.Visible = true;
     this.gridColumnMdSCE7.VisibleIndex = 6;
     this.gridColumnMdSCE7.Width = 80;
     //
     // gridColumnMdSCE8
     //
     this.gridColumnMdSCE8.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE8.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE8.Caption = "Fitness Prod %";
     this.gridColumnMdSCE8.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE8.FieldName = "nFitnessProductIndTargetPercent";
     this.gridColumnMdSCE8.Name = "gridColumnMdSCE8";
     this.gridColumnMdSCE8.Visible = true;
     this.gridColumnMdSCE8.VisibleIndex = 7;
     this.gridColumnMdSCE8.Width = 80;
     //
     // gridColumnMdSCE9
     //
     this.gridColumnMdSCE9.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE9.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE9.Caption = "SPA Pkg %";
     this.gridColumnMdSCE9.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE9.FieldName = "nSPAPackageIndTargetPercent";
     this.gridColumnMdSCE9.Name = "gridColumnMdSCE9";
     this.gridColumnMdSCE9.Visible = true;
     this.gridColumnMdSCE9.VisibleIndex = 8;
     this.gridColumnMdSCE9.Width = 80;
     //
     // gridColumnMdSCE10
     //
     this.gridColumnMdSCE10.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE10.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE10.Caption = "SPA Prod %";
     this.gridColumnMdSCE10.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE10.FieldName = "nSPAProductIndTargetPercent";
     this.gridColumnMdSCE10.Name = "gridColumnMdSCE10";
     this.gridColumnMdSCE10.Visible = true;
     this.gridColumnMdSCE10.VisibleIndex = 9;
     this.gridColumnMdSCE10.Width = 80;
     //
     // gridColumnMdSCE11
     //
     this.gridColumnMdSCE11.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE11.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE11.Caption = "PT Pkg %";
     this.gridColumnMdSCE11.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE11.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE11.FieldName = "nPTPackageIndTargetPercent";
     this.gridColumnMdSCE11.Name = "gridColumnMdSCE11";
     this.gridColumnMdSCE11.Visible = true;
     this.gridColumnMdSCE11.VisibleIndex = 10;
     this.gridColumnMdSCE11.Width = 80;
     //
     // gridColumnMdSCE12
     //
     this.gridColumnMdSCE12.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE12.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE12.Caption = "Fitness Pkg Excess";
     this.gridColumnMdSCE12.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE12.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE12.FieldName = "nFitnessPackageBranchExcess";
     this.gridColumnMdSCE12.Name = "gridColumnMdSCE12";
     this.gridColumnMdSCE12.Visible = true;
     this.gridColumnMdSCE12.VisibleIndex = 11;
     this.gridColumnMdSCE12.Width = 100;
     //
     // gridColumnMdSCE13
     //
     this.gridColumnMdSCE13.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE13.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE13.Caption = "Fitness Prod Excess";
     this.gridColumnMdSCE13.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE13.FieldName = "nFitnessProductBranchExcess";
     this.gridColumnMdSCE13.Name = "gridColumnMdSCE13";
     this.gridColumnMdSCE13.Visible = true;
     this.gridColumnMdSCE13.VisibleIndex = 12;
     this.gridColumnMdSCE13.Width = 100;
     //
     // gridColumnMdSCE14
     //
     this.gridColumnMdSCE14.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE14.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE14.Caption = "SPA Pkg Excess";
     this.gridColumnMdSCE14.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE14.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE14.FieldName = "nSpaPackageBranchExcess";
     this.gridColumnMdSCE14.Name = "gridColumnMdSCE14";
     this.gridColumnMdSCE14.Visible = true;
     this.gridColumnMdSCE14.VisibleIndex = 13;
     this.gridColumnMdSCE14.Width = 90;
     //
     // gridColumnMdSCE15
     //
     this.gridColumnMdSCE15.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE15.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE15.Caption = "SPA Prod Excess";
     this.gridColumnMdSCE15.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE15.FieldName = "nSpaProductBranchExcess";
     this.gridColumnMdSCE15.Name = "gridColumnMdSCE15";
     this.gridColumnMdSCE15.Visible = true;
     this.gridColumnMdSCE15.VisibleIndex = 14;
     this.gridColumnMdSCE15.Width = 90;
     //
     // gridColumnMdSCE16
     //
     this.gridColumnMdSCE16.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE16.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE16.Caption = "PT Pkg Excess";
     this.gridColumnMdSCE16.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE16.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE16.FieldName = "nPTPackageBranchExcess";
     this.gridColumnMdSCE16.Name = "gridColumnMdSCE16";
     this.gridColumnMdSCE16.Visible = true;
     this.gridColumnMdSCE16.VisibleIndex = 15;
     this.gridColumnMdSCE16.Width = 90;
     //
     // gridColumnMdSCE17
     //
     this.gridColumnMdSCE17.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE17.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE17.Caption = "Fitness Pkg Excess";
     this.gridColumnMdSCE17.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE17.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE17.FieldName = "nFitnessPackageIndExcess";
     this.gridColumnMdSCE17.Name = "gridColumnMdSCE17";
     this.gridColumnMdSCE17.Visible = true;
     this.gridColumnMdSCE17.VisibleIndex = 16;
     this.gridColumnMdSCE17.Width = 100;
     //
     // gridColumnMdSCE18
     //
     this.gridColumnMdSCE18.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE18.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE18.Caption = "Fitness Prod Excess";
     this.gridColumnMdSCE18.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE18.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE18.FieldName = "nFitnessProductIndExcess";
     this.gridColumnMdSCE18.Name = "gridColumnMdSCE18";
     this.gridColumnMdSCE18.Visible = true;
     this.gridColumnMdSCE18.VisibleIndex = 17;
     this.gridColumnMdSCE18.Width = 90;
     //
     // gridColumnMdSCE19
     //
     this.gridColumnMdSCE19.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE19.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE19.Caption = "SPA Pkg Excess";
     this.gridColumnMdSCE19.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE19.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE19.FieldName = "nSPAPackageIndExcess";
     this.gridColumnMdSCE19.Name = "gridColumnMdSCE19";
     this.gridColumnMdSCE19.Visible = true;
     this.gridColumnMdSCE19.VisibleIndex = 18;
     this.gridColumnMdSCE19.Width = 90;
     //
     // gridColumnMdSCE20
     //
     this.gridColumnMdSCE20.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE20.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE20.Caption = "SPA Prod Excess";
     this.gridColumnMdSCE20.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE20.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE20.FieldName = "nSPAProductIndExcess";
     this.gridColumnMdSCE20.Name = "gridColumnMdSCE20";
     this.gridColumnMdSCE20.Visible = true;
     this.gridColumnMdSCE20.VisibleIndex = 19;
     this.gridColumnMdSCE20.Width = 90;
     //
     // gridColumnMdSCE21
     //
     this.gridColumnMdSCE21.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE21.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE21.Caption = "PT Pkg Excess";
     this.gridColumnMdSCE21.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE21.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE21.FieldName = "nPTPackageIndExcess";
     this.gridColumnMdSCE21.Name = "gridColumnMdSCE21";
     this.gridColumnMdSCE21.Visible = true;
     this.gridColumnMdSCE21.VisibleIndex = 20;
     this.gridColumnMdSCE21.Width = 90;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Fitness Pkg Branch Comm %";
     this.gridColumn1.DisplayFormat.FormatString = "f";
     this.gridColumn1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn1.FieldName = "nFitnessPackageBranchPercentComm";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 21;
     this.gridColumn1.Width = 150;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Fitness Prod Branch Comm %";
     this.gridColumn2.DisplayFormat.FormatString = "f";
     this.gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn2.FieldName = "nFitnessProductBranchPercentComm";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 22;
     this.gridColumn2.Width = 150;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "SPA Pkg Branch Comm %";
     this.gridColumn3.DisplayFormat.FormatString = "f";
     this.gridColumn3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn3.FieldName = "nSpaPackageBranchPercentComm";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 23;
     this.gridColumn3.Width = 150;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "SPA Prod Branch Comm %";
     this.gridColumn4.DisplayFormat.FormatString = "f";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn4.FieldName = "nSpaProductBranchPercentComm";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 24;
     this.gridColumn4.Width = 150;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "PT Pkg Branch Comm %";
     this.gridColumn5.DisplayFormat.FormatString = "f";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn5.FieldName = "nPTPackageBranchPercentComm";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 25;
     this.gridColumn5.Width = 150;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Fitness Pkg Branch Shared Comm %";
     this.gridColumn6.DisplayFormat.FormatString = "f";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "nFitnessPackageBranchPercentSharedComm";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 26;
     this.gridColumn6.Width = 130;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Fitness Prod Branch Shared Comm %";
     this.gridColumn7.DisplayFormat.FormatString = "f";
     this.gridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn7.FieldName = "nFitnessProductBranchPercentSharedComm";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 27;
     this.gridColumn7.Width = 130;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "SPA Pkg Branch Shared Comm %";
     this.gridColumn8.DisplayFormat.FormatString = "f";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn8.FieldName = "nSpaPackageBranchPercentSharedComm";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 28;
     this.gridColumn8.Width = 130;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "SPA Prod Branch Shared Comm %";
     this.gridColumn9.DisplayFormat.FormatString = "f";
     this.gridColumn9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.FieldName = "nSpaProductBranchPercentSharedComm";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 29;
     this.gridColumn9.Width = 130;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "PT Pkg Branch Shared Comm %";
     this.gridColumn10.DisplayFormat.FormatString = "f";
     this.gridColumn10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn10.FieldName = "nPTPackageBranchPercentSharedComm";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 30;
     this.gridColumn10.Width = 130;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Fitness Pkg Branch Individual Comm %";
     this.gridColumn11.DisplayFormat.FormatString = "f";
     this.gridColumn11.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn11.FieldName = "nFitnessPackageIndPercentComm";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 31;
     this.gridColumn11.Width = 140;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Fitness Prod Branch Individual Comm %";
     this.gridColumn12.DisplayFormat.FormatString = "f";
     this.gridColumn12.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn12.FieldName = "nFitnessProductIndPercentComm";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 32;
     this.gridColumn12.Width = 140;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "SPA Pkg Branch Individual Comm %";
     this.gridColumn13.DisplayFormat.FormatString = "f";
     this.gridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn13.FieldName = "nSpaPackageIndPercentComm";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 33;
     this.gridColumn13.Width = 140;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "SPA Prod Branch Individual Comm %";
     this.gridColumn14.DisplayFormat.FormatString = "f";
     this.gridColumn14.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn14.FieldName = "nSpaProductIndPercentComm";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 34;
     this.gridColumn14.Width = 140;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "PT Pkg Branch Individual Comm %";
     this.gridColumn15.DisplayFormat.FormatString = "f";
     this.gridColumn15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn15.FieldName = "nPTPackageIndPercentComm";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 35;
     this.gridColumn15.Width = 140;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Commission Amount";
     this.gridColumn16.DisplayFormat.FormatString = "f2";
     this.gridColumn16.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn16.FieldName = "mCommissionAmount";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 36;
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox1.DisplayFormat.FormatString = "f";
     this.repositoryItemComboBox1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemComboBox1.EditFormat.FormatString = "f";
     this.repositoryItemComboBox1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemComboBox1.Items.AddRange(new object[] {
                                                                  "1",
                                                                  "2",
                                                                  "3",
                                                                  "4",
                                                                  "5"});
     this.repositoryItemComboBox1.Mask.EditMask = "f";
     this.repositoryItemComboBox1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // mdCM_tabInstructorCommision
     //
     this.mdCM_tabInstructorCommision.Controls.Add(this.tabControlInstructorCommission);
     this.mdCM_tabInstructorCommision.Name = "mdCM_tabInstructorCommision";
     this.mdCM_tabInstructorCommision.Size = new System.Drawing.Size(954, 483);
     this.mdCM_tabInstructorCommision.Text = "Instructor Commission";
     //
     // tabControlInstructorCommission
     //
     this.tabControlInstructorCommission.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.tabControlInstructorCommission.Appearance.Options.UseBackColor = true;
     this.tabControlInstructorCommission.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tabControlInstructorCommission.AppearancePage.Header.Options.UseFont = true;
     this.tabControlInstructorCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlInstructorCommission.Location = new System.Drawing.Point(0, 0);
     this.tabControlInstructorCommission.LookAndFeel.SkinName = "Coffee";
     this.tabControlInstructorCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.tabControlInstructorCommission.Name = "tabControlInstructorCommission";
     this.tabControlInstructorCommission.SelectedTabPage = this.tabPageInstructorType;
     this.tabControlInstructorCommission.Size = new System.Drawing.Size(954, 483);
     this.tabControlInstructorCommission.TabIndex = 1;
     this.tabControlInstructorCommission.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                                    this.tabPageInstructorType,
                                                                                                    this.tabPageInstructorComm,
                                                                                                    this.tabPageInstructorTypeComm});
     this.tabControlInstructorCommission.Text = "xtraTabControl2";
     this.tabControlInstructorCommission.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabControlInstructorCommission_SelectedPageChanged);
     //
     // tabPageInstructorType
     //
     this.tabPageInstructorType.Controls.Add(this.gridControlMd_InstructorType);
     this.tabPageInstructorType.Name = "tabPageInstructorType";
     this.tabPageInstructorType.Size = new System.Drawing.Size(948, 442);
     this.tabPageInstructorType.Text = "Instructor Type";
     //
     // gridControlMd_InstructorType
     //
     this.gridControlMd_InstructorType.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_InstructorType.EmbeddedNavigator
     //
     this.gridControlMd_InstructorType.EmbeddedNavigator.Name = "";
     this.gridControlMd_InstructorType.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_InstructorType.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_InstructorType.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_InstructorType.MainView = this.gridViewMdInstructor;
     this.gridControlMd_InstructorType.Name = "gridControlMd_InstructorType";
     this.gridControlMd_InstructorType.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                           this.repositoryItemComboBox2,
                                                                                                                           this.repositoryItemImageComboBox1});
     this.gridControlMd_InstructorType.Size = new System.Drawing.Size(948, 442);
     this.gridControlMd_InstructorType.TabIndex = 15;
     this.gridControlMd_InstructorType.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                 this.gridViewMdInstructor});
     //
     // gridViewMdInstructor
     //
     this.gridViewMdInstructor.ActiveFilterEnabled = false;
     this.gridViewMdInstructor.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumnMdIT1,
                                                                                                 this.gridColumnMdIT2,
                                                                                                 this.gridColumnMdIT3});
     this.gridViewMdInstructor.GridControl = this.gridControlMd_InstructorType;
     this.gridViewMdInstructor.Name = "gridViewMdInstructor";
     this.gridViewMdInstructor.OptionsCustomization.AllowFilter = false;
     this.gridViewMdInstructor.OptionsCustomization.AllowSort = false;
     this.gridViewMdInstructor.OptionsView.ShowGroupPanel = false;
     this.gridViewMdInstructor.LostFocus += new System.EventHandler(this.gridViewMdInstructor_LostFocus);
     //
     // gridColumnMdIT1
     //
     this.gridColumnMdIT1.Caption = "Instructor Type";
     this.gridColumnMdIT1.FieldName = "nInstructorTypeID";
     this.gridColumnMdIT1.Name = "gridColumnMdIT1";
     this.gridColumnMdIT1.Visible = true;
     this.gridColumnMdIT1.VisibleIndex = 0;
     //
     // gridColumnMdIT2
     //
     this.gridColumnMdIT2.Caption = "Name";
     this.gridColumnMdIT2.FieldName = "strDescription";
     this.gridColumnMdIT2.MinWidth = 40;
     this.gridColumnMdIT2.Name = "gridColumnMdIT2";
     this.gridColumnMdIT2.Visible = true;
     this.gridColumnMdIT2.VisibleIndex = 2;
     //
     // gridColumnMdIT3
     //
     this.gridColumnMdIT3.Caption = "Bonus Type ID";
     this.gridColumnMdIT3.ColumnEdit = this.repositoryItemImageComboBox1;
     this.gridColumnMdIT3.FieldName = "nBonusTypeID";
     this.gridColumnMdIT3.Name = "gridColumnMdIT3";
     this.gridColumnMdIT3.Visible = true;
     this.gridColumnMdIT3.VisibleIndex = 1;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Items.AddRange(new object[] {
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("No Bonus", 0, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Extra for All Permenant Class", 1, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Extra for All Class Taught", 2, -1)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // repositoryItemComboBox2
     //
     this.repositoryItemComboBox2.AutoHeight = false;
     this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
     //
     // tabPageInstructorComm
     //
     this.tabPageInstructorComm.Controls.Add(this.gridControlMd_InstructorCommission);
     this.tabPageInstructorComm.Name = "tabPageInstructorComm";
     this.tabPageInstructorComm.Size = new System.Drawing.Size(948, 442);
     this.tabPageInstructorComm.Text = "Commission";
     //
     // gridControlMd_InstructorCommission
     //
     this.gridControlMd_InstructorCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_InstructorCommission.EmbeddedNavigator
     //
     this.gridControlMd_InstructorCommission.EmbeddedNavigator.Name = "";
     this.gridControlMd_InstructorCommission.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_InstructorCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_InstructorCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_InstructorCommission.MainView = this.gridViewMdIC;
     this.gridControlMd_InstructorCommission.Name = "gridControlMd_InstructorCommission";
     this.gridControlMd_InstructorCommission.Size = new System.Drawing.Size(948, 442);
     this.gridControlMd_InstructorCommission.TabIndex = 14;
     this.gridControlMd_InstructorCommission.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                       this.gridViewMdIC});
     //
     // gridViewMdIC
     //
     this.gridViewMdIC.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                         this.gridColumnMdIC1,
                                                                                         this.gridColumnMdIC2});
     this.gridViewMdIC.GridControl = this.gridControlMd_InstructorCommission;
     this.gridViewMdIC.Name = "gridViewMdIC";
     this.gridViewMdIC.OptionsCustomization.AllowFilter = false;
     this.gridViewMdIC.OptionsCustomization.AllowSort = false;
     this.gridViewMdIC.OptionsView.ShowGroupPanel = false;
     this.gridViewMdIC.LostFocus += new System.EventHandler(this.gridViewMdIC_LostFocus);
     //
     // gridColumnMdIC1
     //
     this.gridColumnMdIC1.Caption = "Commission Code";
     this.gridColumnMdIC1.FieldName = "nCommissionTypeID";
     this.gridColumnMdIC1.Name = "gridColumnMdIC1";
     this.gridColumnMdIC1.Visible = true;
     this.gridColumnMdIC1.VisibleIndex = 0;
     //
     // gridColumnMdIC2
     //
     this.gridColumnMdIC2.Caption = "Description";
     this.gridColumnMdIC2.FieldName = "strDescription";
     this.gridColumnMdIC2.Name = "gridColumnMdIC2";
     this.gridColumnMdIC2.Visible = true;
     this.gridColumnMdIC2.VisibleIndex = 1;
     //
     // tabPageInstructorTypeComm
     //
     this.tabPageInstructorTypeComm.Appearance.PageClient.BackColor = System.Drawing.SystemColors.Control;
     this.tabPageInstructorTypeComm.Appearance.PageClient.Options.UseBackColor = true;
     this.tabPageInstructorTypeComm.Controls.Add(this.gridControlMd_InstructorTypeCommission);
     this.tabPageInstructorTypeComm.Name = "tabPageInstructorTypeComm";
     this.tabPageInstructorTypeComm.Size = new System.Drawing.Size(948, 442);
     this.tabPageInstructorTypeComm.Text = "Instructor Type Commission";
     //
     // gridControlMd_InstructorTypeCommission
     //
     this.gridControlMd_InstructorTypeCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_InstructorTypeCommission.EmbeddedNavigator
     //
     this.gridControlMd_InstructorTypeCommission.EmbeddedNavigator.Name = "";
     this.gridControlMd_InstructorTypeCommission.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_InstructorTypeCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_InstructorTypeCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_InstructorTypeCommission.MainView = this.gridViewMdITC;
     this.gridControlMd_InstructorTypeCommission.Name = "gridControlMd_InstructorTypeCommission";
     this.gridControlMd_InstructorTypeCommission.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                                     this.repositoryItemLookUpEdit1,
                                                                                                                                     this.repositoryItemLookUpEdit2});
     this.gridControlMd_InstructorTypeCommission.Size = new System.Drawing.Size(948, 442);
     this.gridControlMd_InstructorTypeCommission.TabIndex = 14;
     this.gridControlMd_InstructorTypeCommission.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                           this.gridViewMdITC});
     //
     // gridViewMdITC
     //
     this.gridViewMdITC.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                          this.gridColumnMdITC1,
                                                                                          this.gridColumnMdITC2,
                                                                                          this.gridColumnMdITC3});
     this.gridViewMdITC.GridControl = this.gridControlMd_InstructorTypeCommission;
     this.gridViewMdITC.Name = "gridViewMdITC";
     this.gridViewMdITC.OptionsCustomization.AllowFilter = false;
     this.gridViewMdITC.OptionsCustomization.AllowSort = false;
     this.gridViewMdITC.OptionsView.ShowGroupPanel = false;
     this.gridViewMdITC.LostFocus += new System.EventHandler(this.gridViewMdITC_LostFocus);
     //
     // gridColumnMdITC1
     //
     this.gridColumnMdITC1.Caption = "Instructor Type";
     this.gridColumnMdITC1.ColumnEdit = this.repositoryItemLookUpEdit1;
     this.gridColumnMdITC1.FieldName = "nInstructorTypeID";
     this.gridColumnMdITC1.Name = "gridColumnMdITC1";
     this.gridColumnMdITC1.Visible = true;
     this.gridColumnMdITC1.VisibleIndex = 0;
     //
     // 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.Name = "repositoryItemLookUpEdit1";
     //
     // gridColumnMdITC2
     //
     this.gridColumnMdITC2.Caption = "Commission Type";
     this.gridColumnMdITC2.ColumnEdit = this.repositoryItemLookUpEdit2;
     this.gridColumnMdITC2.FieldName = "nCommissionTypeID";
     this.gridColumnMdITC2.Name = "gridColumnMdITC2";
     this.gridColumnMdITC2.Visible = true;
     this.gridColumnMdITC2.VisibleIndex = 1;
     //
     // repositoryItemLookUpEdit2
     //
     this.repositoryItemLookUpEdit2.AutoHeight = false;
     this.repositoryItemLookUpEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit2.Name = "repositoryItemLookUpEdit2";
     //
     // gridColumnMdITC3
     //
     this.gridColumnMdITC3.Caption = "Commission Amount";
     this.gridColumnMdITC3.FieldName = "mCommissionAmount";
     this.gridColumnMdITC3.Name = "gridColumnMdITC3";
     this.gridColumnMdITC3.Visible = true;
     this.gridColumnMdITC3.VisibleIndex = 2;
     //
     // mdCM_tabPTCommision
     //
     this.mdCM_tabPTCommision.Controls.Add(this.gridControlMd_PTCommission);
     this.mdCM_tabPTCommision.Name = "mdCM_tabPTCommision";
     this.mdCM_tabPTCommision.Size = new System.Drawing.Size(954, 483);
     this.mdCM_tabPTCommision.Text = "PT Commission";
     //
     // gridControlMd_PTCommission
     //
     this.gridControlMd_PTCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_PTCommission.EmbeddedNavigator
     //
     this.gridControlMd_PTCommission.EmbeddedNavigator.Name = "";
     this.gridControlMd_PTCommission.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_PTCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_PTCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_PTCommission.MainView = this.gridViewPTCommission;
     this.gridControlMd_PTCommission.Name = "gridControlMd_PTCommission";
     this.gridControlMd_PTCommission.Size = new System.Drawing.Size(954, 483);
     this.gridControlMd_PTCommission.TabIndex = 15;
     this.gridControlMd_PTCommission.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                               this.gridViewPTCommission,
                                                                                                               this.gridView2});
     //
     // gridViewPTCommission
     //
     this.gridViewPTCommission.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumnPT1,
                                                                                                 this.gridColumnPT2,
                                                                                                 this.gridColumnPT3});
     this.gridViewPTCommission.GridControl = this.gridControlMd_PTCommission;
     this.gridViewPTCommission.Name = "gridViewPTCommission";
     this.gridViewPTCommission.OptionsCustomization.AllowFilter = false;
     this.gridViewPTCommission.OptionsCustomization.AllowSort = false;
     this.gridViewPTCommission.OptionsView.ShowGroupPanel = false;
     this.gridViewPTCommission.LostFocus += new System.EventHandler(this.gridViewPTCommission_LostFocus);
     //
     // gridColumnPT1
     //
     this.gridColumnPT1.Caption = "Lower Limit";
     this.gridColumnPT1.DisplayFormat.FormatString = "f2";
     this.gridColumnPT1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPT1.FieldName = "nLowerLimit";
     this.gridColumnPT1.Name = "gridColumnPT1";
     this.gridColumnPT1.Visible = true;
     this.gridColumnPT1.VisibleIndex = 0;
     //
     // gridColumnPT2
     //
     this.gridColumnPT2.Caption = "Upper Limit";
     this.gridColumnPT2.DisplayFormat.FormatString = "f2";
     this.gridColumnPT2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPT2.FieldName = "nUpperLimit";
     this.gridColumnPT2.Name = "gridColumnPT2";
     this.gridColumnPT2.Visible = true;
     this.gridColumnPT2.VisibleIndex = 1;
     //
     // gridColumnPT3
     //
     this.gridColumnPT3.Caption = "Service Commission";
     this.gridColumnPT3.DisplayFormat.FormatString = "f2";
     this.gridColumnPT3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPT3.FieldName = "mServiceCommission";
     this.gridColumnPT3.Name = "gridColumnPT3";
     this.gridColumnPT3.Visible = true;
     this.gridColumnPT3.VisibleIndex = 2;
     //
     // gridView2
     //
     this.gridView2.GridControl = this.gridControlMd_PTCommission;
     this.gridView2.Name = "gridView2";
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add.Appearance.Options.UseFont = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList = this.imageList1;
     this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location = new System.Drawing.Point(16, 24);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex = 134;
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Del.Appearance.Options.UseFont = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList = this.imageList1;
     this.btn_Del.Location = new System.Drawing.Point(56, 24);
     this.btn_Del.Name = "btn_Del";
     this.btn_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex = 133;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // panelSalesCommission
     //
     this.panelSalesCommission.BackColor = System.Drawing.Color.Transparent;
     this.panelSalesCommission.Controls.Add(this.cmbYear);
     this.panelSalesCommission.Controls.Add(this.label12);
     this.panelSalesCommission.Controls.Add(this.lkBranch);
     this.panelSalesCommission.Controls.Add(this.label3);
     this.panelSalesCommission.Controls.Add(this.btn_Search);
     this.panelSalesCommission.Location = new System.Drawing.Point(176, 16);
     this.panelSalesCommission.Name = "panelSalesCommission";
     this.panelSalesCommission.Size = new System.Drawing.Size(792, 32);
     this.panelSalesCommission.TabIndex = 220;
     //
     // cmbYear
     //
     this.cmbYear.Location = new System.Drawing.Point(640, 8);
     this.cmbYear.Name = "cmbYear";
     //
     // cmbYear.Properties
     //
     this.cmbYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cmbYear.Size = new System.Drawing.Size(48, 20);
     this.cmbYear.TabIndex = 221;
     //
     // label12
     //
     this.label12.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label12.Location = new System.Drawing.Point(600, 12);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(40, 16);
     this.label12.TabIndex = 220;
     this.label12.Text = "Year";
     //
     // lkBranch
     //
     this.lkBranch.Location = new System.Drawing.Point(472, 8);
     this.lkBranch.Name = "lkBranch";
     //
     // lkBranch.Properties
     //
     this.lkBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                      new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBranch.Size = new System.Drawing.Size(112, 20);
     this.lkBranch.TabIndex = 149;
     this.lkBranch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Branch_KeyDown);
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(392, 12);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 16);
     this.label3.TabIndex = 148;
     this.label3.Text = "Branch";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(712, 8);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex = 219;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // frmCommission
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1000, 560);
     this.Controls.Add(this.grpMDCommision);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmCommission";
     this.Text = "frmCommission";
     this.Load += new System.EventHandler(this.frmCommission_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDCommision)).EndInit();
     this.grpMDCommision.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCommission)).EndInit();
     this.tabControlCommission.ResumeLayout(false);
     this.mdCM_tabSalesCommision.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpSubMDCommissionScheme)).EndInit();
     this.grpSubMDCommissionScheme.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesCommisionScheme)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CalMethod)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_CrossSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdSC_txtNEmployeeID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCommissionEntry)).EndInit();
     this.tabControlCommissionEntry.ResumeLayout(false);
     this.tabMethodOne.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow2)).EndInit();
     this.grpMDPromotionBelow2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridCategory2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCategory2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCategory)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCategory)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridTarget)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTarget)).EndInit();
     this.tabMethodTwo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridRange)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRange)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_fCombine)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grid2Category2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2Category2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid2Category)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2Category)).EndInit();
     this.tabMethodThree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridMgr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMgr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_fCombine_Mgr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grid3Category2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3Category2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid3Category)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3Category)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesCommisionSchemeEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesCommissionSchemeEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     this.mdCM_tabInstructorCommision.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlInstructorCommission)).EndInit();
     this.tabControlInstructorCommission.ResumeLayout(false);
     this.tabPageInstructorType.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdInstructor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
     this.tabPageInstructorComm.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdIC)).EndInit();
     this.tabPageInstructorTypeComm.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorTypeCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdITC)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).EndInit();
     this.mdCM_tabPTCommision.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_PTCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPTCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.panelSalesCommission.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 36
0
        /// <summary>
        /// �����豸��ʾ��
        /// </summary>
        public override void InitColumns()
        {
            string s=" ProjectID='"+Itop.Client.MIS.ProgUID+"'";
            IList list=Services.BaseService.GetList("SelectPS_Table_AreaWHByConn",s);
            DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit1=new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            //repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
            //
            // repositoryItemLookUpEdit1
            //
            repositoryItemLookUpEdit1.AutoHeight = false;
            repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            repositoryItemLookUpEdit1.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Title")});
            repositoryItemLookUpEdit1.DisplayMember = "Title";
            repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
            repositoryItemLookUpEdit1.NullText = "";
            repositoryItemLookUpEdit1.ValueMember = "ID";
            repositoryItemLookUpEdit1.DataSource = list;

            GridColumn column = gridView1.Columns.Add();
            column.Caption = "��·����";
            column.FieldName = "Name";
            column.Width = 100;
            column.VisibleIndex = 1;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "��·���";
            column.FieldName = "Number";
            column.Width = 100;
            column.VisibleIndex = 2;
            column.OptionsColumn.AllowEdit = false;
            //column = gridView1.Columns.Add();
            //column.Caption = "i��ĸ����";
            //column.FieldName = "IName";
            //column.Width = 100;
            //column.VisibleIndex = 3;
            //column = gridView1.Columns.Add();
            //column.Caption = "j��ĸ����";
            //column.FieldName = "JName";
            //column.Width = 100;
            //column.VisibleIndex = 3;
            //column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "��׼��ѹ";
            column.FieldName = "ReferenceVolt";
            column.Width = 100;
            column.VisibleIndex = 6;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "���ѹ";
            column.FieldName = "RateVolt";
            column.Width = 100;
            column.VisibleIndex = 7;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "��·����";
            column.FieldName = "LineLength";
            column.Width = 100;
            column.VisibleIndex = 8;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "�����ͺ�";
            column.FieldName = "LineType";
            column.Width = 100;
            column.VisibleIndex = 8;
            column.OptionsColumn.AllowEdit = false;
            //column = gridView1.Columns.Add();
            //column.Caption = "����";
            //column.FieldName = "LineR";
            //column.Width = 100;
            //column.VisibleIndex =9;
            //column.OptionsColumn.AllowEdit = false;
            //column = gridView1.Columns.Add();
            //column.Caption = "�翹";
            //column.FieldName = "LineTQ";
            //column.Width = 100;
            //column.VisibleIndex = 10;
            //column.OptionsColumn.AllowEdit = false;
            //column = gridView1.Columns.Add();
            //column.Caption = "B/2";
            //column.FieldName = "LineGNDC";
            //column.Width = 100;
            //column.VisibleIndex = 11;
            //column.OptionsColumn.AllowEdit = false;
            //column = gridView1.Columns.Add();
            //column.Caption = "�������";
            //column.FieldName = "ZeroR";
            //column.Width = 100;
            //column.VisibleIndex = 12;
            //column.OptionsColumn.AllowEdit = false;
            //column = gridView1.Columns.Add();
            //column.Caption = "����翹";
            //column.FieldName = "ZeroTQ";
            //column.Width = 100;
            //column.VisibleIndex = 14;
            //column.OptionsColumn.AllowEdit = false;
            //column = gridView1.Columns.Add();
            //column.Caption = "B0/2";
            //column.FieldName = "ZeroGNDC";
            //column.Width = 100;
            //column.VisibleIndex = 15;
            //column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "�����";
            column.FieldName = "Burthen";
            column.Width = 100;
            column.VisibleIndex = 16;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "����״̬";
            column.FieldName = "KSwitchStatus";
            column.Width = 100;
            column.VisibleIndex = 17;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "��λ";
            column.FieldName = "UnitFlag";
            column.Width = 100;
            column.VisibleIndex = 18;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "Ͷ�����";
            column.FieldName = "OperationYear";
            column.Width = 100;
            column.VisibleIndex = 19;
            column.OptionsColumn.AllowEdit = false;
            //column = gridView1.Columns.Add();
            //column.Caption = "һ�β����ӿ���";
            //column.FieldName = "ISwitch";
            //column.Width = 100;
            //column.VisibleIndex = 20;
            //column.OptionsColumn.AllowEdit = false;
            //column = gridView1.Columns.Add();
            //column.Caption = "���β����ӿ���";
            //column.FieldName = "JSwitch";
            //column.Width = 100;
            //column.VisibleIndex = 21;
            //column.OptionsColumn.AllowEdit = false;
            //column = gridView1.Columns.Add();
            //column.Caption = "��������";
            //column.FieldName = "DQ";
            //column.Width = 100;
            //column.VisibleIndex = 22;
            //column.OptionsColumn.AllowEdit = false;
            //column = gridView1.Columns.Add();
            //column.Caption = "��������";
            //column.FieldName = "AreaID";
            //column.ColumnEdit = repositoryItemLookUpEdit1;
            //column.Width = 100;
            //column.VisibleIndex = 23;
            //column.OptionsColumn.AllowEdit = false;
        }
Ejemplo n.º 37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label79 = new System.Windows.Forms.Label();
     this.label80 = new System.Windows.Forms.Label();
     this.Month = new DevExpress.XtraEditors.ComboBoxEdit();
     this.Year = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gridFitnessProduct = new DevExpress.XtraGrid.GridControl();
     this.gvFitnessProduct = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvFitnessProductRank = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Employee = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvFitnessProductSalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvFitnessProductTotalSales = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.label4 = new System.Windows.Forms.Label();
     this.RGFitnessProduct = new DevExpress.XtraEditors.RadioGroup();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFitnessProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFitnessProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGFitnessProduct.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label79
     //
     this.label79.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label79.Location = new System.Drawing.Point(144, 8);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(48, 23);
     this.label79.TabIndex = 27;
     this.label79.Text = "Year";
     //
     // label80
     //
     this.label80.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label80.Location = new System.Drawing.Point(8, 8);
     this.label80.Name = "label80";
     this.label80.Size = new System.Drawing.Size(56, 23);
     this.label80.TabIndex = 26;
     this.label80.Text = "Month";
     //
     // Month
     //
     this.Month.EditValue = "1";
     this.Month.Location = new System.Drawing.Point(64, 8);
     this.Month.Name = "Month";
     //
     // Month.Properties
     //
     this.Month.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Month.Properties.Items.AddRange(new object[] {
                                                           "1",
                                                           "2",
                                                           "3",
                                                           "4",
                                                           "5",
                                                           "6",
                                                           "7",
                                                           "8",
                                                           "9",
                                                           "10",
                                                           "11",
                                                           "12"});
     this.Month.Size = new System.Drawing.Size(72, 20);
     this.Month.TabIndex = 25;
     this.Month.SelectedIndexChanged += new System.EventHandler(this.Month_SelectedIndexChanged);
     //
     // Year
     //
     this.Year.EditValue = "";
     this.Year.Location = new System.Drawing.Point(192, 8);
     this.Year.Name = "Year";
     //
     // Year.Properties
     //
     this.Year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Year.Size = new System.Drawing.Size(96, 20);
     this.Year.TabIndex = 24;
     this.Year.SelectedIndexChanged += new System.EventHandler(this.Year_SelectedIndexChanged);
     //
     // gridFitnessProduct
     //
     this.gridFitnessProduct.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridFitnessProduct.EmbeddedNavigator
     //
     this.gridFitnessProduct.EmbeddedNavigator.Name = "";
     this.gridFitnessProduct.Location = new System.Drawing.Point(0, 96);
     this.gridFitnessProduct.MainView = this.gvFitnessProduct;
     this.gridFitnessProduct.Name = "gridFitnessProduct";
     this.gridFitnessProduct.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                 this.lk_Employee});
     this.gridFitnessProduct.Size = new System.Drawing.Size(960, 384);
     this.gridFitnessProduct.TabIndex = 28;
     this.gridFitnessProduct.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                       this.gvFitnessProduct,
                                                                                                       this.gridView4});
     //
     // gvFitnessProduct
     //
     this.gvFitnessProduct.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                             this.gvFitnessProductRank,
                                                                                             this.gridColumn3,
                                                                                             this.gridColumn4,
                                                                                             this.gvFitnessProductSalesPercentage,
                                                                                             this.gvFitnessProductTotalSales});
     this.gvFitnessProduct.GridControl = this.gridFitnessProduct;
     this.gvFitnessProduct.Name = "gvFitnessProduct";
     this.gvFitnessProduct.OptionsBehavior.Editable = false;
     this.gvFitnessProduct.OptionsCustomization.AllowFilter = false;
     this.gvFitnessProduct.OptionsCustomization.AllowGroup = false;
     this.gvFitnessProduct.OptionsCustomization.AllowSort = false;
     this.gvFitnessProduct.OptionsView.ShowGroupPanel = false;
     this.gvFitnessProduct.FocusedColumnChanged += new DevExpress.XtraGrid.Views.Base.FocusedColumnChangedEventHandler(this.gvFitnessProduct_FocusedColumnChanged);
     this.gvFitnessProduct.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gvFitnessProduct_CustomUnboundColumnData);
     //
     // gvFitnessProductRank
     //
     this.gvFitnessProductRank.Caption = "Rank";
     this.gvFitnessProductRank.FieldName = "gridColumn1";
     this.gvFitnessProductRank.Name = "gvFitnessProductRank";
     this.gvFitnessProductRank.SummaryItem.DisplayFormat = "{0}";
     this.gvFitnessProductRank.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.gvFitnessProductRank.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.gvFitnessProductRank.Visible = true;
     this.gvFitnessProductRank.VisibleIndex = 0;
     this.gvFitnessProductRank.Width = 33;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Employee Name";
     this.gridColumn3.ColumnEdit = this.lk_Employee;
     this.gridColumn3.FieldName = "nSalesPersonID";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width = 85;
     //
     // lk_Employee
     //
     this.lk_Employee.AutoHeight = false;
     this.lk_Employee.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                              new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Employee.Name = "lk_Employee";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Branch Code";
     this.gridColumn4.FieldName = "strBranchCode";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 4;
     this.gridColumn4.Width = 70;
     //
     // gvFitnessProductSalesPercentage
     //
     this.gvFitnessProductSalesPercentage.Caption = "Sales Percentage";
     this.gvFitnessProductSalesPercentage.FieldName = "SalesPercentage";
     this.gvFitnessProductSalesPercentage.Name = "gvFitnessProductSalesPercentage";
     this.gvFitnessProductSalesPercentage.Visible = true;
     this.gvFitnessProductSalesPercentage.VisibleIndex = 2;
     this.gvFitnessProductSalesPercentage.Width = 92;
     //
     // gvFitnessProductTotalSales
     //
     this.gvFitnessProductTotalSales.Caption = "Total Sales";
     this.gvFitnessProductTotalSales.FieldName = "TotalSales";
     this.gvFitnessProductTotalSales.Name = "gvFitnessProductTotalSales";
     this.gvFitnessProductTotalSales.Visible = true;
     this.gvFitnessProductTotalSales.VisibleIndex = 3;
     this.gvFitnessProductTotalSales.Width = 61;
     //
     // gridView4
     //
     this.gridView4.GridControl = this.gridFitnessProduct;
     this.gridView4.Name = "gridView4";
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(0, 40);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(944, 24);
     this.label4.TabIndex = 30;
     this.label4.Text = "Ranking of Fitness Product Sales";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // RGFitnessProduct
     //
     this.RGFitnessProduct.EditValue = 0;
     this.RGFitnessProduct.Location = new System.Drawing.Point(0, 64);
     this.RGFitnessProduct.Name = "RGFitnessProduct";
     //
     // RGFitnessProduct.Properties
     //
     this.RGFitnessProduct.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.RGFitnessProduct.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.RGFitnessProduct.Properties.Appearance.Options.UseBackColor = true;
     this.RGFitnessProduct.Properties.Appearance.Options.UseFont = true;
     this.RGFitnessProduct.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.RGFitnessProduct.Properties.Columns = 2;
     this.RGFitnessProduct.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
                                                                                                              new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Fitness Product Sales By %"),
                                                                                                              new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual Fitness Product Sales")});
     this.RGFitnessProduct.Size = new System.Drawing.Size(496, 32);
     this.RGFitnessProduct.TabIndex = 29;
     this.RGFitnessProduct.Click += new System.EventHandler(this.RGFitnessProduct_Click);
     this.RGFitnessProduct.EditValueChanged += new System.EventHandler(this.RGFitnessProduct_EditValueChanged);
     //
     // frmSRFitnessProduct
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(960, 480);
     this.Controls.Add(this.gridFitnessProduct);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.RGFitnessProduct);
     this.Controls.Add(this.label79);
     this.Controls.Add(this.label80);
     this.Controls.Add(this.Month);
     this.Controls.Add(this.Year);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmSRFitnessProduct";
     this.Text = "frmSRFitnessProduct";
     this.Load += new System.EventHandler(this.frmSRFitnessProduct_Load);
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFitnessProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFitnessProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGFitnessProduct.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPromotion));
     this.grpMDPromotionTop = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_Promotion = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Promotion = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPM1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPM2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_DiscountCategory = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cmPromotionType = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cmbItemDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtStartDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtEndDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cmbApprovedStatus = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Searchpanel = new System.Windows.Forms.Panel();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch = new DevExpress.XtraEditors.TextEdit();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     this.grpMDPromotionBelow = new DevExpress.XtraEditors.GroupControl();
     this.grpMDPromotionBelow2 = new DevExpress.XtraEditors.GroupControl();
     this.TabControlPromotion = new DevExpress.XtraTab.XtraTabControl();
     this.tabPromo_Brnch = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btnBranch_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnBranch_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnBranch_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnBranch_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label4 = new System.Windows.Forms.Label();
     this.gridBranch = new DevExpress.XtraGrid.GridControl();
     this.gvBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabPromo_Freebies = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnFreebies_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnFreebies_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnFreebies_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnFreebies_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gdFreebies2 = new DevExpress.XtraGrid.GridControl();
     this.gvFreebies2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gdFreebies = new DevExpress.XtraGrid.GridControl();
     this.gvFreebies = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnReset = new DevExpress.XtraEditors.SimpleButton();
     this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
     this.txtItemStyle = new DevExpress.XtraEditors.TextEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.txtItemCode = new DevExpress.XtraEditors.TextEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.txtItemDesc = new DevExpress.XtraEditors.TextEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.tabPromo_Package = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.btnPackage_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackage_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackage_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackage_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gdPackage2 = new DevExpress.XtraGrid.GridControl();
     this.gvPackage2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gdPackage = new DevExpress.XtraGrid.GridControl();
     this.gvPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnPcReset = new DevExpress.XtraEditors.SimpleButton();
     this.btnPcSearch = new DevExpress.XtraEditors.SimpleButton();
     this.txtPcItemCode = new DevExpress.XtraEditors.TextEdit();
     this.label5 = new System.Windows.Forms.Label();
     this.txtPcItemDesc = new DevExpress.XtraEditors.TextEdit();
     this.label6 = new System.Windows.Forms.Label();
     this.tabPromo_ReceiptSalesCategory = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.btnSales_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnSales_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnSales_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnSales_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridSales2 = new DevExpress.XtraGrid.GridControl();
     this.gvSales2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridSales = new DevExpress.XtraGrid.GridControl();
     this.gvSales = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionTop)).BeginInit();
     this.grpMDPromotionTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Promotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Promotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_DiscountCategory)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmPromotionType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbItemDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbApprovedStatus)).BeginInit();
     this.Searchpanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow)).BeginInit();
     this.grpMDPromotionBelow.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow2)).BeginInit();
     this.grpMDPromotionBelow2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TabControlPromotion)).BeginInit();
     this.TabControlPromotion.SuspendLayout();
     this.tabPromo_Brnch.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranch)).BeginInit();
     this.tabPromo_Freebies.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gdFreebies2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFreebies2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdFreebies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFreebies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemStyle.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).BeginInit();
     this.tabPromo_Package.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gdPackage2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackage2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPcItemCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPcItemDesc.Properties)).BeginInit();
     this.tabPromo_ReceiptSalesCategory.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridSales2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSales2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSales)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDPromotionTop
     //
     this.grpMDPromotionTop.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDPromotionTop.Appearance.Options.UseBackColor = true;
     this.grpMDPromotionTop.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpMDPromotionTop.AppearanceCaption.Options.UseFont = true;
     this.grpMDPromotionTop.Controls.Add(this.gridControlMd_Promotion);
     this.grpMDPromotionTop.Controls.Add(this.Searchpanel);
     this.grpMDPromotionTop.Controls.Add(this.btn_Add);
     this.grpMDPromotionTop.Controls.Add(this.btn_Del);
     this.grpMDPromotionTop.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDPromotionTop.Location = new System.Drawing.Point(10, 0);
     this.grpMDPromotionTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDPromotionTop.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPromotionTop.Name = "grpMDPromotionTop";
     this.grpMDPromotionTop.Size = new System.Drawing.Size(980, 258);
     this.grpMDPromotionTop.TabIndex = 92;
     this.grpMDPromotionTop.Text = "Promotion";
     //
     // gridControlMd_Promotion
     //
     this.gridControlMd_Promotion.Dock = System.Windows.Forms.DockStyle.Bottom;
     gridLevelNode1.RelationName = "Level1";
     this.gridControlMd_Promotion.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.gridControlMd_Promotion.Location = new System.Drawing.Point(2, 53);
     this.gridControlMd_Promotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Promotion.MainView = this.gridViewMd_Promotion;
     this.gridControlMd_Promotion.Name = "gridControlMd_Promotion";
     this.gridControlMd_Promotion.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_DiscountCategory,
     this.cmPromotionType,
     this.dtStartDate,
     this.dtEndDate,
     this.cmbApprovedStatus,
     this.cmbItemDiscount});
     this.gridControlMd_Promotion.Size = new System.Drawing.Size(976, 203);
     this.gridControlMd_Promotion.TabIndex = 20;
     this.gridControlMd_Promotion.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Promotion});
     //
     // gridViewMd_Promotion
     //
     this.gridViewMd_Promotion.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPM1,
     this.gridColumnPM2,
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9});
     this.gridViewMd_Promotion.CustomizationFormBounds = new System.Drawing.Rectangle(465, 203, 208, 156);
     this.gridViewMd_Promotion.GridControl = this.gridControlMd_Promotion;
     this.gridViewMd_Promotion.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_Promotion.Name = "gridViewMd_Promotion";
     this.gridViewMd_Promotion.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Promotion.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Promotion.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_Promotion.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Promotion.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_Promotion_FocusedRowChanged);
     this.gridViewMd_Promotion.LostFocus += new System.EventHandler(this.gridViewMd_Promotion_LostFocus);
     //
     // gridColumnPM1
     //
     this.gridColumnPM1.Caption = "Promotion Code";
     this.gridColumnPM1.FieldName = "strPromotionCode";
     this.gridColumnPM1.MinWidth = 10;
     this.gridColumnPM1.Name = "gridColumnPM1";
     this.gridColumnPM1.Visible = true;
     this.gridColumnPM1.VisibleIndex = 0;
     this.gridColumnPM1.Width = 90;
     //
     // gridColumnPM2
     //
     this.gridColumnPM2.Caption = "Description";
     this.gridColumnPM2.FieldName = "strDescription";
     this.gridColumnPM2.Name = "gridColumnPM2";
     this.gridColumnPM2.Visible = true;
     this.gridColumnPM2.VisibleIndex = 1;
     this.gridColumnPM2.Width = 173;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Discount Category";
     this.gridColumn1.ColumnEdit = this.lk_DiscountCategory;
     this.gridColumn1.FieldName = "nDiscountCategoryID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 2;
     this.gridColumn1.Width = 155;
     //
     // lk_DiscountCategory
     //
     this.lk_DiscountCategory.AutoHeight = false;
     this.lk_DiscountCategory.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_DiscountCategory.Name = "lk_DiscountCategory";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Promotion Type";
     this.gridColumn2.ColumnEdit = this.cmPromotionType;
     this.gridColumn2.FieldName = "nPromotionTypeID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 3;
     this.gridColumn2.Width = 116;
     //
     // cmPromotionType
     //
     this.cmPromotionType.AutoHeight = false;
     this.cmPromotionType.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmPromotionType.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Discount Promotion", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Free Product", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Free Package", 2, -1)});
     this.cmPromotionType.Name = "cmPromotionType";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Item Discount?";
     this.gridColumn3.ColumnEdit = this.cmbItemDiscount;
     this.gridColumn3.FieldName = "fItemDiscount";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 4;
     this.gridColumn3.Width = 101;
     //
     // cmbItemDiscount
     //
     this.cmbItemDiscount.AutoHeight = false;
     this.cmbItemDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbItemDiscount.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item Discount", true, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Bill Discount", false, -1)});
     this.cmbItemDiscount.Name = "cmbItemDiscount";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Minimum Amount";
     this.gridColumn4.DisplayFormat.FormatString = "#.##";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn4.FieldName = "mMinimumAmount";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 5;
     this.gridColumn4.Width = 101;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Start Date";
     this.gridColumn5.ColumnEdit = this.dtStartDate;
     this.gridColumn5.DisplayFormat.FormatString = "d";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn5.FieldName = "dtValidStart";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 6;
     this.gridColumn5.Width = 95;
     //
     // dtStartDate
     //
     this.dtStartDate.AutoHeight = false;
     this.dtStartDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtStartDate.Name = "dtStartDate";
     this.dtStartDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "End Date";
     this.gridColumn6.ColumnEdit = this.dtEndDate;
     this.gridColumn6.DisplayFormat.FormatString = "d";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn6.FieldName = "dtValidEnd";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 7;
     this.gridColumn6.Width = 90;
     //
     // dtEndDate
     //
     this.dtEndDate.AutoHeight = false;
     this.dtEndDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtEndDate.Name = "dtEndDate";
     this.dtEndDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Approved Status";
     this.gridColumn7.ColumnEdit = this.cmbApprovedStatus;
     this.gridColumn7.FieldName = "nApprovedStatusID";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 8;
     this.gridColumn7.Width = 89;
     //
     // cmbApprovedStatus
     //
     this.cmbApprovedStatus.AutoHeight = false;
     this.cmbApprovedStatus.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbApprovedStatus.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Pending Approval", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Approved", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Rejected", 2, -1)});
     this.cmbApprovedStatus.Name = "cmbApprovedStatus";
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Discount %";
     this.gridColumn8.DisplayFormat.FormatString = "P";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn8.FieldName = "dDiscountPercent";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 9;
     this.gridColumn8.Width = 71;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Discount Value";
     this.gridColumn9.DisplayFormat.FormatString = "#.##";
     this.gridColumn9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.FieldName = "dDiscountValue";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 10;
     this.gridColumn9.Width = 111;
     //
     // Searchpanel
     //
     this.Searchpanel.BackColor = System.Drawing.Color.Transparent;
     this.Searchpanel.Controls.Add(this.btn_Search);
     this.Searchpanel.Controls.Add(this.txtSearch);
     this.Searchpanel.Location = new System.Drawing.Point(551, 12);
     this.Searchpanel.Name = "Searchpanel";
     this.Searchpanel.Size = new System.Drawing.Size(410, 37);
     this.Searchpanel.TabIndex = 149;
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(330, 9);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(67, 23);
     this.btn_Search.TabIndex = 137;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.Location = new System.Drawing.Point(120, 9);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont = true;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size = new System.Drawing.Size(202, 23);
     this.txtSearch.TabIndex = 136;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_Add.Appearance.Options.UseFont = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList = this.imageList1;
     this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location = new System.Drawing.Point(10, 28);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.Size = new System.Drawing.Size(45, 18);
     this.btn_Add.TabIndex = 134;
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_Del.Appearance.Options.UseFont = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList = this.imageList1;
     this.btn_Del.Location = new System.Drawing.Point(58, 28);
     this.btn_Del.Name = "btn_Del";
     this.btn_Del.Size = new System.Drawing.Size(45, 18);
     this.btn_Del.TabIndex = 133;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // grpMDPromotionBelow
     //
     this.grpMDPromotionBelow.Controls.Add(this.grpMDPromotionBelow2);
     this.grpMDPromotionBelow.Location = new System.Drawing.Point(10, 277);
     this.grpMDPromotionBelow.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDPromotionBelow.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPromotionBelow.Name = "grpMDPromotionBelow";
     this.grpMDPromotionBelow.Size = new System.Drawing.Size(980, 332);
     this.grpMDPromotionBelow.TabIndex = 93;
     this.grpMDPromotionBelow.Text = "Branch Promotion ";
     //
     // grpMDPromotionBelow2
     //
     this.grpMDPromotionBelow2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpMDPromotionBelow2.Controls.Add(this.TabControlPromotion);
     this.grpMDPromotionBelow2.Location = new System.Drawing.Point(10, 28);
     this.grpMDPromotionBelow2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPromotionBelow2.Name = "grpMDPromotionBelow2";
     this.grpMDPromotionBelow2.ShowCaption = false;
     this.grpMDPromotionBelow2.Size = new System.Drawing.Size(970, 304);
     this.grpMDPromotionBelow2.TabIndex = 6;
     this.grpMDPromotionBelow2.Text = "groupControl1";
     //
     // TabControlPromotion
     //
     this.TabControlPromotion.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TabControlPromotion.AppearancePage.Header.Options.UseFont = true;
     this.TabControlPromotion.Location = new System.Drawing.Point(10, 9);
     this.TabControlPromotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.TabControlPromotion.Name = "TabControlPromotion";
     this.TabControlPromotion.SelectedTabPage = this.tabPromo_Brnch;
     this.TabControlPromotion.Size = new System.Drawing.Size(960, 286);
     this.TabControlPromotion.TabIndex = 132;
     this.TabControlPromotion.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabPromo_Brnch,
     this.tabPromo_Freebies,
     this.tabPromo_Package,
     this.tabPromo_ReceiptSalesCategory});
     //
     // tabPromo_Brnch
     //
     this.tabPromo_Brnch.Controls.Add(this.groupControl1);
     this.tabPromo_Brnch.Name = "tabPromo_Brnch";
     this.tabPromo_Brnch.Size = new System.Drawing.Size(951, 250);
     this.tabPromo_Brnch.Text = "Branch";
     //
     // groupControl1
     //
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.btnBranch_Del);
     this.groupControl1.Controls.Add(this.btnBranch_DelAll);
     this.groupControl1.Controls.Add(this.btnBranch_AddAll);
     this.groupControl1.Controls.Add(this.btnBranch_Add);
     this.groupControl1.Controls.Add(this.gridBranch2);
     this.groupControl1.Controls.Add(this.label4);
     this.groupControl1.Controls.Add(this.gridBranch);
     this.groupControl1.Location = new System.Drawing.Point(0, 9);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(1094, 277);
     this.groupControl1.TabIndex = 88;
     this.groupControl1.Text = "groupControl1";
     //
     // btnBranch_Del
     //
     this.btnBranch_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnBranch_Del.Location = new System.Drawing.Point(528, 138);
     this.btnBranch_Del.Name = "btnBranch_Del";
     this.btnBranch_Del.Size = new System.Drawing.Size(36, 24);
     this.btnBranch_Del.TabIndex = 28;
     this.btnBranch_Del.Text = "<";
     this.btnBranch_Del.Click += new System.EventHandler(this.btnBranch_Del_Click);
     //
     // btnBranch_DelAll
     //
     this.btnBranch_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnBranch_DelAll.Location = new System.Drawing.Point(528, 83);
     this.btnBranch_DelAll.Name = "btnBranch_DelAll";
     this.btnBranch_DelAll.Size = new System.Drawing.Size(36, 23);
     this.btnBranch_DelAll.TabIndex = 27;
     this.btnBranch_DelAll.Text = "<<";
     this.btnBranch_DelAll.Click += new System.EventHandler(this.btnBranch_DelAll_Click);
     //
     // btnBranch_AddAll
     //
     this.btnBranch_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnBranch_AddAll.Location = new System.Drawing.Point(528, 111);
     this.btnBranch_AddAll.Name = "btnBranch_AddAll";
     this.btnBranch_AddAll.Size = new System.Drawing.Size(36, 23);
     this.btnBranch_AddAll.TabIndex = 26;
     this.btnBranch_AddAll.Text = ">>";
     this.btnBranch_AddAll.Click += new System.EventHandler(this.btnBranch_AddAll_Click);
     //
     // btnBranch_Add
     //
     this.btnBranch_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnBranch_Add.Location = new System.Drawing.Point(528, 55);
     this.btnBranch_Add.Name = "btnBranch_Add";
     this.btnBranch_Add.Size = new System.Drawing.Size(36, 23);
     this.btnBranch_Add.TabIndex = 25;
     this.btnBranch_Add.Text = ">";
     this.btnBranch_Add.Click += new System.EventHandler(this.btnBranch_Add_Click);
     //
     // gridBranch2
     //
     this.gridBranch2.Location = new System.Drawing.Point(576, 9);
     this.gridBranch2.MainView = this.gvBranch2;
     this.gridBranch2.Name = "gridBranch2";
     this.gridBranch2.Size = new System.Drawing.Size(370, 222);
     this.gridBranch2.TabIndex = 29;
     this.gridBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvBranch2});
     //
     // gvBranch2
     //
     this.gvBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn33,
     this.gridColumn34});
     this.gvBranch2.GridControl = this.gridBranch2;
     this.gvBranch2.Name = "gvBranch2";
     this.gvBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvBranch2.OptionsBehavior.Editable = false;
     this.gvBranch2.OptionsCustomization.AllowFilter = false;
     this.gvBranch2.OptionsSelection.MultiSelect = true;
     this.gvBranch2.OptionsView.ShowGroupPanel = false;
     this.gvBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn33, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn33
     //
     this.gridColumn33.Caption = "Branch";
     this.gridColumn33.FieldName = "strBranchCode";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 0;
     this.gridColumn33.Width = 104;
     //
     // gridColumn34
     //
     this.gridColumn34.Caption = "Branch Name";
     this.gridColumn34.FieldName = "strBranchName";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.Visible = true;
     this.gridColumn34.VisibleIndex = 1;
     this.gridColumn34.Width = 282;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(-139, -28);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(110, 40);
     this.label4.TabIndex = 30;
     this.label4.Text = "Package Branch";
     //
     // gridBranch
     //
     this.gridBranch.Location = new System.Drawing.Point(10, 9);
     this.gridBranch.MainView = this.gvBranch;
     this.gridBranch.Name = "gridBranch";
     this.gridBranch.Size = new System.Drawing.Size(508, 231);
     this.gridBranch.TabIndex = 24;
     this.gridBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvBranch});
     //
     // gvBranch
     //
     this.gvBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn35,
     this.gridColumn36});
     this.gvBranch.GridControl = this.gridBranch;
     this.gvBranch.Name = "gvBranch";
     this.gvBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvBranch.OptionsBehavior.Editable = false;
     this.gvBranch.OptionsCustomization.AllowFilter = false;
     this.gvBranch.OptionsSelection.MultiSelect = true;
     this.gvBranch.OptionsView.ShowGroupPanel = false;
     this.gvBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn35, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn35
     //
     this.gridColumn35.Caption = "Branch";
     this.gridColumn35.FieldName = "strBranchCode";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Visible = true;
     this.gridColumn35.VisibleIndex = 0;
     this.gridColumn35.Width = 107;
     //
     // gridColumn36
     //
     this.gridColumn36.Caption = "Branch Name";
     this.gridColumn36.FieldName = "strBranchName";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.Visible = true;
     this.gridColumn36.VisibleIndex = 1;
     this.gridColumn36.Width = 279;
     //
     // tabPromo_Freebies
     //
     this.tabPromo_Freebies.Controls.Add(this.groupControl2);
     this.tabPromo_Freebies.Controls.Add(this.btnReset);
     this.tabPromo_Freebies.Controls.Add(this.btnSearch);
     this.tabPromo_Freebies.Controls.Add(this.txtItemStyle);
     this.tabPromo_Freebies.Controls.Add(this.label3);
     this.tabPromo_Freebies.Controls.Add(this.txtItemCode);
     this.tabPromo_Freebies.Controls.Add(this.label2);
     this.tabPromo_Freebies.Controls.Add(this.txtItemDesc);
     this.tabPromo_Freebies.Controls.Add(this.label1);
     this.tabPromo_Freebies.Name = "tabPromo_Freebies";
     this.tabPromo_Freebies.Size = new System.Drawing.Size(951, 250);
     this.tabPromo_Freebies.Text = "Freebies";
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl2.Controls.Add(this.btnFreebies_Del);
     this.groupControl2.Controls.Add(this.btnFreebies_DelAll);
     this.groupControl2.Controls.Add(this.btnFreebies_AddAll);
     this.groupControl2.Controls.Add(this.btnFreebies_Add);
     this.groupControl2.Controls.Add(this.gdFreebies2);
     this.groupControl2.Controls.Add(this.gdFreebies);
     this.groupControl2.Location = new System.Drawing.Point(0, 37);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(1094, 212);
     this.groupControl2.TabIndex = 115;
     this.groupControl2.Text = "groupControl2";
     //
     // btnFreebies_Del
     //
     this.btnFreebies_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnFreebies_Del.Location = new System.Drawing.Point(528, 102);
     this.btnFreebies_Del.Name = "btnFreebies_Del";
     this.btnFreebies_Del.Size = new System.Drawing.Size(36, 23);
     this.btnFreebies_Del.TabIndex = 94;
     this.btnFreebies_Del.Text = "<";
     this.btnFreebies_Del.Click += new System.EventHandler(this.btnFreebies_Del_Click);
     //
     // btnFreebies_DelAll
     //
     this.btnFreebies_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnFreebies_DelAll.Location = new System.Drawing.Point(528, 74);
     this.btnFreebies_DelAll.Name = "btnFreebies_DelAll";
     this.btnFreebies_DelAll.Size = new System.Drawing.Size(36, 23);
     this.btnFreebies_DelAll.TabIndex = 93;
     this.btnFreebies_DelAll.Text = "<<";
     this.btnFreebies_DelAll.Click += new System.EventHandler(this.btnFreebies_DelAll_Click);
     //
     // btnFreebies_AddAll
     //
     this.btnFreebies_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnFreebies_AddAll.Location = new System.Drawing.Point(528, 46);
     this.btnFreebies_AddAll.Name = "btnFreebies_AddAll";
     this.btnFreebies_AddAll.Size = new System.Drawing.Size(36, 23);
     this.btnFreebies_AddAll.TabIndex = 92;
     this.btnFreebies_AddAll.Text = ">>";
     this.btnFreebies_AddAll.Click += new System.EventHandler(this.btnFreebies_AddAll_Click);
     //
     // btnFreebies_Add
     //
     this.btnFreebies_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnFreebies_Add.Location = new System.Drawing.Point(528, 18);
     this.btnFreebies_Add.Name = "btnFreebies_Add";
     this.btnFreebies_Add.Size = new System.Drawing.Size(36, 24);
     this.btnFreebies_Add.TabIndex = 91;
     this.btnFreebies_Add.Text = ">";
     this.btnFreebies_Add.Click += new System.EventHandler(this.btnFreebies_Add_Click);
     //
     // gdFreebies2
     //
     this.gdFreebies2.Location = new System.Drawing.Point(581, 14);
     this.gdFreebies2.MainView = this.gvFreebies2;
     this.gdFreebies2.Name = "gdFreebies2";
     this.gdFreebies2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     this.gdFreebies2.Size = new System.Drawing.Size(509, 184);
     this.gdFreebies2.TabIndex = 95;
     this.gdFreebies2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvFreebies2});
     //
     // gvFreebies2
     //
     this.gvFreebies2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn14,
     this.gridColumn25});
     this.gvFreebies2.GridControl = this.gdFreebies2;
     this.gvFreebies2.Name = "gvFreebies2";
     this.gvFreebies2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvFreebies2.OptionsCustomization.AllowFilter = false;
     this.gvFreebies2.OptionsSelection.MultiSelect = true;
     this.gvFreebies2.OptionsView.ShowGroupPanel = false;
     this.gvFreebies2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn10, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gvFreebies2.LostFocus += new System.EventHandler(this.gvFreebies2_LostFocus);
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Product Code";
     this.gridColumn10.FieldName = "strItemCode";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowEdit = false;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 0;
     this.gridColumn10.Width = 104;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Description";
     this.gridColumn11.FieldName = "strDescription";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowEdit = false;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 1;
     this.gridColumn11.Width = 282;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Promotion Code";
     this.gridColumn14.FieldName = "strPromotionCode";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowEdit = false;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "Max Quantity";
     this.gridColumn25.ColumnEdit = this.repositoryItemTextEdit1;
     this.gridColumn25.FieldName = "nMaxQty";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.OptionsFilter.AllowFilter = false;
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 2;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // gdFreebies
     //
     this.gdFreebies.Location = new System.Drawing.Point(5, 14);
     this.gdFreebies.MainView = this.gvFreebies;
     this.gdFreebies.Name = "gdFreebies";
     this.gdFreebies.Size = new System.Drawing.Size(509, 189);
     this.gdFreebies.TabIndex = 90;
     this.gdFreebies.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvFreebies});
     //
     // gvFreebies
     //
     this.gvFreebies.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn12,
     this.gridColumn13});
     this.gvFreebies.GridControl = this.gdFreebies;
     this.gvFreebies.Name = "gvFreebies";
     this.gvFreebies.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvFreebies.OptionsBehavior.Editable = false;
     this.gvFreebies.OptionsCustomization.AllowFilter = false;
     this.gvFreebies.OptionsSelection.MultiSelect = true;
     this.gvFreebies.OptionsView.ShowGroupPanel = false;
     this.gvFreebies.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn12, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Product Code";
     this.gridColumn12.FieldName = "strProductCode";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 0;
     this.gridColumn12.Width = 107;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Description";
     this.gridColumn13.FieldName = "strDescription";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 1;
     this.gridColumn13.Width = 279;
     //
     // btnReset
     //
     this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReset.Appearance.Options.UseFont = true;
     this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReset.Location = new System.Drawing.Point(826, 9);
     this.btnReset.Name = "btnReset";
     this.btnReset.Size = new System.Drawing.Size(86, 23);
     this.btnReset.TabIndex = 114;
     this.btnReset.Text = "Reset";
     this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
     //
     // btnSearch
     //
     this.btnSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnSearch.Appearance.Options.UseFont = true;
     this.btnSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSearch.Location = new System.Drawing.Point(720, 9);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(86, 23);
     this.btnSearch.TabIndex = 113;
     this.btnSearch.Text = "Search";
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // txtItemStyle
     //
     this.txtItemStyle.EditValue = "";
     this.txtItemStyle.Location = new System.Drawing.Point(566, 9);
     this.txtItemStyle.Name = "txtItemStyle";
     this.txtItemStyle.Size = new System.Drawing.Size(120, 22);
     this.txtItemStyle.TabIndex = 112;
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(470, 9);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(120, 19);
     this.label3.TabIndex = 111;
     this.label3.Text = "Item Style :";
     //
     // txtItemCode
     //
     this.txtItemCode.EditValue = "";
     this.txtItemCode.Location = new System.Drawing.Point(336, 9);
     this.txtItemCode.Name = "txtItemCode";
     this.txtItemCode.Size = new System.Drawing.Size(120, 22);
     this.txtItemCode.TabIndex = 110;
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(230, 9);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(120, 19);
     this.label2.TabIndex = 109;
     this.label2.Text = "Item Code :";
     //
     // txtItemDesc
     //
     this.txtItemDesc.EditValue = "";
     this.txtItemDesc.Location = new System.Drawing.Point(96, 9);
     this.txtItemDesc.Name = "txtItemDesc";
     this.txtItemDesc.Size = new System.Drawing.Size(120, 22);
     this.txtItemDesc.TabIndex = 108;
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(10, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(120, 19);
     this.label1.TabIndex = 107;
     this.label1.Text = "Item Desc :";
     //
     // tabPromo_Package
     //
     this.tabPromo_Package.Controls.Add(this.groupControl3);
     this.tabPromo_Package.Controls.Add(this.btnPcReset);
     this.tabPromo_Package.Controls.Add(this.btnPcSearch);
     this.tabPromo_Package.Controls.Add(this.txtPcItemCode);
     this.tabPromo_Package.Controls.Add(this.label5);
     this.tabPromo_Package.Controls.Add(this.txtPcItemDesc);
     this.tabPromo_Package.Controls.Add(this.label6);
     this.tabPromo_Package.Name = "tabPromo_Package";
     this.tabPromo_Package.Size = new System.Drawing.Size(951, 250);
     this.tabPromo_Package.Text = "Package";
     //
     // groupControl3
     //
     this.groupControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl3.Controls.Add(this.btnPackage_Del);
     this.groupControl3.Controls.Add(this.btnPackage_DelAll);
     this.groupControl3.Controls.Add(this.btnPackage_AddAll);
     this.groupControl3.Controls.Add(this.btnPackage_Add);
     this.groupControl3.Controls.Add(this.gdPackage2);
     this.groupControl3.Controls.Add(this.gdPackage);
     this.groupControl3.Location = new System.Drawing.Point(0, 37);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(1094, 212);
     this.groupControl3.TabIndex = 123;
     this.groupControl3.Text = "groupControl3";
     //
     // btnPackage_Del
     //
     this.btnPackage_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackage_Del.Location = new System.Drawing.Point(528, 102);
     this.btnPackage_Del.Name = "btnPackage_Del";
     this.btnPackage_Del.Size = new System.Drawing.Size(36, 23);
     this.btnPackage_Del.TabIndex = 94;
     this.btnPackage_Del.Text = "<";
     this.btnPackage_Del.Click += new System.EventHandler(this.btnPackage_Del_Click);
     //
     // btnPackage_DelAll
     //
     this.btnPackage_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackage_DelAll.Location = new System.Drawing.Point(528, 74);
     this.btnPackage_DelAll.Name = "btnPackage_DelAll";
     this.btnPackage_DelAll.Size = new System.Drawing.Size(36, 23);
     this.btnPackage_DelAll.TabIndex = 93;
     this.btnPackage_DelAll.Text = "<<";
     this.btnPackage_DelAll.Click += new System.EventHandler(this.btnPackage_DelAll_Click);
     //
     // btnPackage_AddAll
     //
     this.btnPackage_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackage_AddAll.Location = new System.Drawing.Point(528, 46);
     this.btnPackage_AddAll.Name = "btnPackage_AddAll";
     this.btnPackage_AddAll.Size = new System.Drawing.Size(36, 23);
     this.btnPackage_AddAll.TabIndex = 92;
     this.btnPackage_AddAll.Text = ">>";
     this.btnPackage_AddAll.Click += new System.EventHandler(this.btnPackage_AddAll_Click);
     //
     // btnPackage_Add
     //
     this.btnPackage_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackage_Add.Location = new System.Drawing.Point(528, 18);
     this.btnPackage_Add.Name = "btnPackage_Add";
     this.btnPackage_Add.Size = new System.Drawing.Size(36, 24);
     this.btnPackage_Add.TabIndex = 91;
     this.btnPackage_Add.Text = ">";
     this.btnPackage_Add.Click += new System.EventHandler(this.btnPackage_Add_Click);
     //
     // gdPackage2
     //
     this.gdPackage2.Location = new System.Drawing.Point(581, 14);
     this.gdPackage2.MainView = this.gvPackage2;
     this.gdPackage2.Name = "gdPackage2";
     this.gdPackage2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit2});
     this.gdPackage2.Size = new System.Drawing.Size(509, 184);
     this.gdPackage2.TabIndex = 95;
     this.gdPackage2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackage2});
     //
     // gvPackage2
     //
     this.gvPackage2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn26});
     this.gvPackage2.GridControl = this.gdPackage2;
     this.gvPackage2.Name = "gvPackage2";
     this.gvPackage2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackage2.OptionsCustomization.AllowFilter = false;
     this.gvPackage2.OptionsSelection.MultiSelect = true;
     this.gvPackage2.OptionsView.ShowGroupPanel = false;
     this.gvPackage2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn15, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gvPackage2.LostFocus += new System.EventHandler(this.gvPackage2_LostFocus);
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Product Code";
     this.gridColumn15.FieldName = "strPackageCode";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 104;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Description";
     this.gridColumn16.FieldName = "strDescription";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.OptionsColumn.AllowEdit = false;
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 1;
     this.gridColumn16.Width = 282;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Promotion Code";
     this.gridColumn17.FieldName = "strPromotionCode";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.OptionsColumn.AllowEdit = false;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "Max Quantity";
     this.gridColumn26.ColumnEdit = this.repositoryItemTextEdit2;
     this.gridColumn26.FieldName = "nMaxQty";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.OptionsFilter.AllowFilter = false;
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 2;
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     //
     // gdPackage
     //
     this.gdPackage.Location = new System.Drawing.Point(5, 14);
     this.gdPackage.MainView = this.gvPackage;
     this.gdPackage.Name = "gdPackage";
     this.gdPackage.Size = new System.Drawing.Size(509, 189);
     this.gdPackage.TabIndex = 90;
     this.gdPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackage});
     //
     // gvPackage
     //
     this.gvPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn18,
     this.gridColumn19});
     this.gvPackage.GridControl = this.gdPackage;
     this.gvPackage.Name = "gvPackage";
     this.gvPackage.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackage.OptionsBehavior.Editable = false;
     this.gvPackage.OptionsCustomization.AllowFilter = false;
     this.gvPackage.OptionsSelection.MultiSelect = true;
     this.gvPackage.OptionsView.ShowGroupPanel = false;
     this.gvPackage.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn18, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Product Code";
     this.gridColumn18.FieldName = "strPackageCode";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     this.gridColumn18.Width = 107;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Description";
     this.gridColumn19.FieldName = "strDescription";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     this.gridColumn19.Width = 279;
     //
     // btnPcReset
     //
     this.btnPcReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPcReset.Appearance.Options.UseFont = true;
     this.btnPcReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPcReset.Location = new System.Drawing.Point(557, 9);
     this.btnPcReset.Name = "btnPcReset";
     this.btnPcReset.Size = new System.Drawing.Size(86, 23);
     this.btnPcReset.TabIndex = 122;
     this.btnPcReset.Text = "Reset";
     this.btnPcReset.Click += new System.EventHandler(this.btnPcReset_Click);
     //
     // btnPcSearch
     //
     this.btnPcSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPcSearch.Appearance.Options.UseFont = true;
     this.btnPcSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPcSearch.Location = new System.Drawing.Point(451, 9);
     this.btnPcSearch.Name = "btnPcSearch";
     this.btnPcSearch.Size = new System.Drawing.Size(87, 23);
     this.btnPcSearch.TabIndex = 121;
     this.btnPcSearch.Text = "Search";
     this.btnPcSearch.Click += new System.EventHandler(this.btnPcSearch_Click);
     //
     // txtPcItemCode
     //
     this.txtPcItemCode.EditValue = "";
     this.txtPcItemCode.Location = new System.Drawing.Point(96, 9);
     this.txtPcItemCode.Name = "txtPcItemCode";
     this.txtPcItemCode.Size = new System.Drawing.Size(115, 22);
     this.txtPcItemCode.TabIndex = 118;
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(230, 9);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(77, 19);
     this.label5.TabIndex = 117;
     this.label5.Text = "Item Desc :";
     //
     // txtPcItemDesc
     //
     this.txtPcItemDesc.EditValue = "";
     this.txtPcItemDesc.Location = new System.Drawing.Point(317, 9);
     this.txtPcItemDesc.Name = "txtPcItemDesc";
     this.txtPcItemDesc.Size = new System.Drawing.Size(115, 22);
     this.txtPcItemDesc.TabIndex = 116;
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(10, 9);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(115, 19);
     this.label6.TabIndex = 115;
     this.label6.Text = "Item Code :";
     //
     // tabPromo_ReceiptSalesCategory
     //
     this.tabPromo_ReceiptSalesCategory.Controls.Add(this.groupControl4);
     this.tabPromo_ReceiptSalesCategory.Name = "tabPromo_ReceiptSalesCategory";
     this.tabPromo_ReceiptSalesCategory.Size = new System.Drawing.Size(951, 250);
     this.tabPromo_ReceiptSalesCategory.Text = "Receipt Sales Category";
     //
     // groupControl4
     //
     this.groupControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl4.Controls.Add(this.btnSales_Del);
     this.groupControl4.Controls.Add(this.btnSales_DelAll);
     this.groupControl4.Controls.Add(this.btnSales_AddAll);
     this.groupControl4.Controls.Add(this.btnSales_Add);
     this.groupControl4.Controls.Add(this.gridSales2);
     this.groupControl4.Controls.Add(this.gridSales);
     this.groupControl4.Location = new System.Drawing.Point(4, 18);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(1094, 213);
     this.groupControl4.TabIndex = 124;
     this.groupControl4.Text = "groupControl4";
     //
     // btnSales_Del
     //
     this.btnSales_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSales_Del.Location = new System.Drawing.Point(528, 102);
     this.btnSales_Del.Name = "btnSales_Del";
     this.btnSales_Del.Size = new System.Drawing.Size(36, 23);
     this.btnSales_Del.TabIndex = 94;
     this.btnSales_Del.Text = "<";
     this.btnSales_Del.Click += new System.EventHandler(this.btnSales_Del_Click);
     //
     // btnSales_DelAll
     //
     this.btnSales_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSales_DelAll.Location = new System.Drawing.Point(528, 74);
     this.btnSales_DelAll.Name = "btnSales_DelAll";
     this.btnSales_DelAll.Size = new System.Drawing.Size(36, 23);
     this.btnSales_DelAll.TabIndex = 93;
     this.btnSales_DelAll.Text = "<<";
     this.btnSales_DelAll.Click += new System.EventHandler(this.btnSales_DelAll_Click);
     //
     // btnSales_AddAll
     //
     this.btnSales_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSales_AddAll.Location = new System.Drawing.Point(528, 46);
     this.btnSales_AddAll.Name = "btnSales_AddAll";
     this.btnSales_AddAll.Size = new System.Drawing.Size(36, 23);
     this.btnSales_AddAll.TabIndex = 92;
     this.btnSales_AddAll.Text = ">>";
     this.btnSales_AddAll.Click += new System.EventHandler(this.btnSales_AddAll_Click);
     //
     // btnSales_Add
     //
     this.btnSales_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSales_Add.Location = new System.Drawing.Point(528, 18);
     this.btnSales_Add.Name = "btnSales_Add";
     this.btnSales_Add.Size = new System.Drawing.Size(36, 24);
     this.btnSales_Add.TabIndex = 91;
     this.btnSales_Add.Text = ">";
     this.btnSales_Add.Click += new System.EventHandler(this.btnSales_Add_Click);
     //
     // gridSales2
     //
     this.gridSales2.Location = new System.Drawing.Point(581, 14);
     this.gridSales2.MainView = this.gvSales2;
     this.gridSales2.Name = "gridSales2";
     this.gridSales2.Size = new System.Drawing.Size(509, 184);
     this.gridSales2.TabIndex = 95;
     this.gridSales2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvSales2});
     //
     // gvSales2
     //
     this.gvSales2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn20,
     this.gridColumn21,
     this.gridColumn22});
     this.gvSales2.GridControl = this.gridSales2;
     this.gvSales2.Name = "gvSales2";
     this.gvSales2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvSales2.OptionsBehavior.Editable = false;
     this.gvSales2.OptionsCustomization.AllowFilter = false;
     this.gvSales2.OptionsSelection.MultiSelect = true;
     this.gvSales2.OptionsView.ShowGroupPanel = false;
     this.gvSales2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn20, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Sales Category Id";
     this.gridColumn20.FieldName = "nSalesCategoryID";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 0;
     this.gridColumn20.Width = 104;
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "Description";
     this.gridColumn21.FieldName = "strDescription";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 1;
     this.gridColumn21.Width = 282;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Promotion Code";
     this.gridColumn22.FieldName = "strPromotionCode";
     this.gridColumn22.Name = "gridColumn22";
     //
     // gridSales
     //
     this.gridSales.Location = new System.Drawing.Point(5, 14);
     this.gridSales.MainView = this.gvSales;
     this.gridSales.Name = "gridSales";
     this.gridSales.Size = new System.Drawing.Size(509, 189);
     this.gridSales.TabIndex = 90;
     this.gridSales.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvSales});
     //
     // gvSales
     //
     this.gvSales.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn23,
     this.gridColumn24});
     this.gvSales.GridControl = this.gridSales;
     this.gvSales.Name = "gvSales";
     this.gvSales.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvSales.OptionsBehavior.Editable = false;
     this.gvSales.OptionsCustomization.AllowFilter = false;
     this.gvSales.OptionsSelection.MultiSelect = true;
     this.gvSales.OptionsView.ShowGroupPanel = false;
     this.gvSales.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn23, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "Sales Category Id";
     this.gridColumn23.FieldName = "nSalesCategoryID";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 0;
     this.gridColumn23.Width = 107;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Description";
     this.gridColumn24.FieldName = "strDescription";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 1;
     this.gridColumn24.Width = 279;
     //
     // frmPromotion
     //
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1000, 533);
     this.Controls.Add(this.grpMDPromotionBelow);
     this.Controls.Add(this.grpMDPromotionTop);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmPromotion";
     this.Text = "frmPromotion";
     this.Load += new System.EventHandler(this.frmPromotion_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionTop)).EndInit();
     this.grpMDPromotionTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Promotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Promotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_DiscountCategory)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmPromotionType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbItemDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbApprovedStatus)).EndInit();
     this.Searchpanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow)).EndInit();
     this.grpMDPromotionBelow.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow2)).EndInit();
     this.grpMDPromotionBelow2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.TabControlPromotion)).EndInit();
     this.TabControlPromotion.ResumeLayout(false);
     this.tabPromo_Brnch.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranch)).EndInit();
     this.tabPromo_Freebies.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gdFreebies2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFreebies2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdFreebies)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFreebies)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemStyle.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).EndInit();
     this.tabPromo_Package.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gdPackage2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackage2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPcItemCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPcItemDesc.Properties)).EndInit();
     this.tabPromo_ReceiptSalesCategory.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridSales2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSales2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSales)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPackage));
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     this.grpMDPackageTop = new DevExpress.XtraEditors.GroupControl();
     this.label31 = new System.Windows.Forms.Label();
     this.ddlPackageCategory = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.Searchpanel = new System.Windows.Forms.Panel();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch = new DevExpress.XtraEditors.TextEdit();
     this.grpPackage = new DevExpress.XtraEditors.GroupControl();
     this.btn_PackageAdd = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_PackageDel = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_Package = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Package = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPKG1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcPkgPriceWGST = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_DurationUnit = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gcFreePkg = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.StartDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumnPKG8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.EndDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumnPKG9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Peak = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_StudentPackage = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Category = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_GIRO = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Sell = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Peak_1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.chk_StuPackage = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.chk_RestUpgrade = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.grpPackageGroup = new DevExpress.XtraEditors.GroupControl();
     this.btnPacGroup_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacGroup_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_PackageGroup = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_PackageGroup = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPG1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcPkgComboPriceWGST = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_pkGroupCatID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnPG5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grpCreditPackage = new DevExpress.XtraEditors.GroupControl();
     this.btnCreditPackage_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnCreditPackage_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_CreditPackage = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_CreditPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCP1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcPriceWGST = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.EffCCStartDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumnCP5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.EffCCEndDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumnCP6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_CreditCategoryID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcFreeCredit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grpPackageClass = new DevExpress.XtraEditors.GroupControl();
     this.btn_PGC_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGCAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGCAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGC_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPackageClass2 = new DevExpress.XtraGrid.GridControl();
     this.gvPackageClass2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label2 = new System.Windows.Forms.Label();
     this.gridPackageClass = new DevExpress.XtraGrid.GridControl();
     this.gvPackageClass = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn_PGB_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGBAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGBAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGB_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGUB_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGUBAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGUBAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGUB_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPcGroupBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPcGroupBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridPcGroupUseBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPcGroupUseBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn52 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn54 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.gridPcGroupBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPcGroupBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridPcGroupUseBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPcGroupUseBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label119 = new System.Windows.Forms.Label();
     this.label120 = new System.Windows.Forms.Label();
     this.grpPackageService = new DevExpress.XtraEditors.GroupControl();
     this.btn_PSAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PS_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PSAdd_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PS_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPackageService2 = new DevExpress.XtraGrid.GridControl();
     this.gvPackageService2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label1 = new System.Windows.Forms.Label();
     this.gridPackageService = new DevExpress.XtraGrid.GridControl();
     this.gvPackageService = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn_PB_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PBAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PBAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PB_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PUB_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PUBAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PUBAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PUB_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPackageBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gridPackageUseBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPSBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvPSUseBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colBranchCode2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranchName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUseBranchCode2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUseBranchName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label3 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.gridPackageBranch = new DevExpress.XtraGrid.GridControl();
     this.gridPackageUseBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPSBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvPSUseBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranchName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUseBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUseBranchName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.PackageGroup = new DevExpress.XtraEditors.GroupControl();
     this.btn_PacGroup_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PacGroup_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_GroupEntries = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_GroupEntries = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_GrpPackageCode = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.splitter2 = new System.Windows.Forms.Splitter();
     this.GroupCreditPackage = new DevExpress.XtraEditors.GroupControl();
     this.btn_CreGroup_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_CreGroup_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.GridCreditRestric = new DevExpress.XtraGrid.GridControl();
     this.gridViewmd_CreditRestric = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_PackageCode = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_AllowDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.grpBranch = new DevExpress.XtraEditors.GroupControl();
     this.btnPacBranch_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacBranch_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacBranch_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacBranch_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPacBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPacBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label6 = new System.Windows.Forms.Label();
     this.gridPacBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPacBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPackageTop)).BeginInit();
     this.grpMDPackageTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlPackageCategory.Properties)).BeginInit();
     this.Searchpanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackage)).BeginInit();
     this.grpPackage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Package)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Package)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_DurationUnit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Peak)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StudentPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Category)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_GIRO)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Sell)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Peak_1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StuPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_RestUpgrade)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageGroup)).BeginInit();
     this.grpPackageGroup.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_PackageGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_PackageGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_pkGroupCatID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCreditPackage)).BeginInit();
     this.grpCreditPackage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CreditPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CreditPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CreditCategoryID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageClass)).BeginInit();
     this.grpPackageClass.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageClass2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageClass2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageClass)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageClass)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupUseBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupUseBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupUseBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupUseBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageService)).BeginInit();
     this.grpPackageService.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageService2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageService2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageUseBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSUseBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageUseBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSUseBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PackageGroup)).BeginInit();
     this.PackageGroup.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_GroupEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_GroupEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GrpPackageCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupCreditPackage)).BeginInit();
     this.GroupCreditPackage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridCreditRestric)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewmd_CreditRestric)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PackageCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_AllowDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpBranch)).BeginInit();
     this.grpBranch.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDPackageTop
     //
     this.grpMDPackageTop.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDPackageTop.Appearance.Options.UseBackColor = true;
     this.grpMDPackageTop.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpMDPackageTop.AppearanceCaption.Options.UseFont = true;
     this.grpMDPackageTop.Controls.Add(this.label31);
     this.grpMDPackageTop.Controls.Add(this.ddlPackageCategory);
     this.grpMDPackageTop.Controls.Add(this.Searchpanel);
     this.grpMDPackageTop.Controls.Add(this.grpPackage);
     this.grpMDPackageTop.Controls.Add(this.grpPackageGroup);
     this.grpMDPackageTop.Controls.Add(this.grpCreditPackage);
     this.grpMDPackageTop.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDPackageTop.Location = new System.Drawing.Point(8, 2);
     this.grpMDPackageTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDPackageTop.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPackageTop.Name = "grpMDPackageTop";
     this.grpMDPackageTop.Size = new System.Drawing.Size(968, 280);
     this.grpMDPackageTop.TabIndex = 93;
     this.grpMDPackageTop.Text = "MASTER FILE";
     //
     // label31
     //
     this.label31.BackColor = System.Drawing.Color.Transparent;
     this.label31.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(8, 24);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(136, 16);
     this.label31.TabIndex = 116;
     this.label31.Text = "Package Category";
     this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ddlPackageCategory
     //
     this.ddlPackageCategory.EditValue = "mdPKG_cbNCategoryID";
     this.ddlPackageCategory.Location = new System.Drawing.Point(144, 24);
     this.ddlPackageCategory.Name = "ddlPackageCategory";
     this.ddlPackageCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ddlPackageCategory.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ddlPackageCategory.Size = new System.Drawing.Size(176, 20);
     this.ddlPackageCategory.TabIndex = 19;
     this.ddlPackageCategory.SelectedIndexChanged += new System.EventHandler(this.ddlPackageCategory_SelectedIndexChanged);
     //
     // Searchpanel
     //
     this.Searchpanel.Controls.Add(this.btn_Search);
     this.Searchpanel.Controls.Add(this.txtSearch);
     this.Searchpanel.Location = new System.Drawing.Point(488, 24);
     this.Searchpanel.Name = "Searchpanel";
     this.Searchpanel.Size = new System.Drawing.Size(464, 24);
     this.Searchpanel.TabIndex = 151;
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(392, 0);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex = 137;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtSearch.Location = new System.Drawing.Point(232, 0);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont = true;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size = new System.Drawing.Size(152, 20);
     this.txtSearch.TabIndex = 136;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // grpPackage
     //
     this.grpPackage.Controls.Add(this.btn_PackageAdd);
     this.grpPackage.Controls.Add(this.btn_PackageDel);
     this.grpPackage.Controls.Add(this.groupControl1);
     this.grpPackage.Location = new System.Drawing.Point(0, 48);
     this.grpPackage.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpPackage.Name = "grpPackage";
     this.grpPackage.Size = new System.Drawing.Size(960, 232);
     this.grpPackage.TabIndex = 118;
     this.grpPackage.Text = "Package";
     //
     // btn_PackageAdd
     //
     this.btn_PackageAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_PackageAdd.Appearance.Options.UseFont = true;
     this.btn_PackageAdd.Appearance.Options.UseTextOptions = true;
     this.btn_PackageAdd.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_PackageAdd.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_PackageAdd.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_PackageAdd.ImageIndex = 0;
     this.btn_PackageAdd.ImageList = this.imageList1;
     this.btn_PackageAdd.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_PackageAdd.Location = new System.Drawing.Point(8, 24);
     this.btn_PackageAdd.Name = "btn_PackageAdd";
     this.btn_PackageAdd.Size = new System.Drawing.Size(38, 16);
     this.btn_PackageAdd.TabIndex = 132;
     this.btn_PackageAdd.Click += new System.EventHandler(this.btn_PackageAdd_Click);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     //
     // btn_PackageDel
     //
     this.btn_PackageDel.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_PackageDel.Appearance.Options.UseFont = true;
     this.btn_PackageDel.Appearance.Options.UseTextOptions = true;
     this.btn_PackageDel.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_PackageDel.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_PackageDel.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_PackageDel.ImageIndex = 1;
     this.btn_PackageDel.ImageList = this.imageList1;
     this.btn_PackageDel.Location = new System.Drawing.Point(48, 24);
     this.btn_PackageDel.Name = "btn_PackageDel";
     this.btn_PackageDel.Size = new System.Drawing.Size(38, 16);
     this.btn_PackageDel.TabIndex = 131;
     this.btn_PackageDel.Click += new System.EventHandler(this.btn_PackageDel_Click);
     //
     // groupControl1
     //
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.gridControlMd_Package);
     this.groupControl1.Location = new System.Drawing.Point(0, 40);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(952, 192);
     this.groupControl1.TabIndex = 121;
     //
     // gridControlMd_Package
     //
     this.gridControlMd_Package.Dock = System.Windows.Forms.DockStyle.Fill;
     gridLevelNode1.RelationName = "Level1";
     this.gridControlMd_Package.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.gridControlMd_Package.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_Package.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Package.MainView = this.gridViewMd_Package;
     this.gridControlMd_Package.Name = "gridControlMd_Package";
     this.gridControlMd_Package.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.chk_Peak_1,
     this.chk_StuPackage,
     this.lk_Category,
     this.chk_GIRO,
     this.repositoryItemCheckEdit1,
     this.chk_Peak,
     this.chk_StudentPackage,
     this.chk_RestUpgrade,
     this.StartDate,
     this.EndDate,
     this.chk_Sell,
     this.chk_DurationUnit});
     this.gridControlMd_Package.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_Package.TabIndex = 2;
     this.gridControlMd_Package.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Package});
     //
     // gridViewMd_Package
     //
     this.gridViewMd_Package.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPKG1,
     this.gridColumnPKG2,
     this.gridColumnPKG3,
     this.gcPkgPriceWGST,
     this.gridColumnPKG4,
     this.gridColumnPKG5,
     this.gridColumn30,
     this.gcFreePkg,
     this.gridColumnPKG6,
     this.gridColumnPKG7,
     this.gridColumnPKG8,
     this.gridColumnPKG9,
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn28,
     this.gridColumn31});
     this.gridViewMd_Package.GridControl = this.gridControlMd_Package;
     this.gridViewMd_Package.Name = "gridViewMd_Package";
     this.gridViewMd_Package.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Package.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Package.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_Package.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Package.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_Package_FocusedRowChanged);
     this.gridViewMd_Package.LostFocus += new System.EventHandler(this.gridViewMd_Package_LostFocus);
     //
     // gridColumnPKG1
     //
     this.gridColumnPKG1.Caption = "Package Code";
     this.gridColumnPKG1.FieldName = "strPackageCode";
     this.gridColumnPKG1.Name = "gridColumnPKG1";
     this.gridColumnPKG1.Visible = true;
     this.gridColumnPKG1.VisibleIndex = 0;
     this.gridColumnPKG1.Width = 84;
     //
     // gridColumnPKG2
     //
     this.gridColumnPKG2.Caption = "Description";
     this.gridColumnPKG2.FieldName = "strDescription";
     this.gridColumnPKG2.Name = "gridColumnPKG2";
     this.gridColumnPKG2.Visible = true;
     this.gridColumnPKG2.VisibleIndex = 1;
     this.gridColumnPKG2.Width = 147;
     //
     // gridColumnPKG3
     //
     this.gridColumnPKG3.Caption = "Price";
     this.gridColumnPKG3.DisplayFormat.FormatString = "d2";
     this.gridColumnPKG3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPKG3.FieldName = "mListPrice";
     this.gridColumnPKG3.Name = "gridColumnPKG3";
     this.gridColumnPKG3.Visible = true;
     this.gridColumnPKG3.VisibleIndex = 3;
     this.gridColumnPKG3.Width = 61;
     //
     // gcPkgPriceWGST
     //
     this.gcPkgPriceWGST.Caption = "Price w GST";
     this.gcPkgPriceWGST.DisplayFormat.FormatString = "d2";
     this.gcPkgPriceWGST.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcPkgPriceWGST.FieldName = "mListPriceWGST";
     this.gcPkgPriceWGST.Name = "gcPkgPriceWGST";
     this.gcPkgPriceWGST.Visible = true;
     this.gcPkgPriceWGST.VisibleIndex = 4;
     this.gcPkgPriceWGST.Width = 61;
     //
     // gridColumnPKG4
     //
     this.gridColumnPKG4.Caption = "Max Session";
     this.gridColumnPKG4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPKG4.FieldName = "nMaxSession";
     this.gridColumnPKG4.Name = "gridColumnPKG4";
     this.gridColumnPKG4.Visible = true;
     this.gridColumnPKG4.VisibleIndex = 5;
     this.gridColumnPKG4.Width = 71;
     //
     // gridColumnPKG5
     //
     this.gridColumnPKG5.Caption = "Duration";
     this.gridColumnPKG5.FieldName = "nPackageDuration";
     this.gridColumnPKG5.Name = "gridColumnPKG5";
     this.gridColumnPKG5.Visible = true;
     this.gridColumnPKG5.VisibleIndex = 6;
     this.gridColumnPKG5.Width = 53;
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "Duration Unit";
     this.gridColumn30.ColumnEdit = this.chk_DurationUnit;
     this.gridColumn30.FieldName = "strDurationUnit";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 7;
     //
     // chk_DurationUnit
     //
     this.chk_DurationUnit.AutoHeight = false;
     this.chk_DurationUnit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_DurationUnit.Items.AddRange(new object[] {
     "MONTH",
     "WEEK",
     "DAY"});
     this.chk_DurationUnit.Name = "chk_DurationUnit";
     //
     // gcFreePkg
     //
     this.gcFreePkg.Caption = "Free Package";
     this.gcFreePkg.FieldName = "strFreePkgCode";
     this.gcFreePkg.Name = "gcFreePkg";
     this.gcFreePkg.Visible = true;
     this.gcFreePkg.VisibleIndex = 8;
     //
     // gridColumnPKG6
     //
     this.gridColumnPKG6.Caption = "Price per session ";
     this.gridColumnPKG6.DisplayFormat.FormatString = "d2";
     this.gridColumnPKG6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPKG6.FieldName = "mBaseUnitPrice";
     this.gridColumnPKG6.Name = "gridColumnPKG6";
     this.gridColumnPKG6.Visible = true;
     this.gridColumnPKG6.VisibleIndex = 9;
     this.gridColumnPKG6.Width = 95;
     //
     // gridColumnPKG7
     //
     this.gridColumnPKG7.Caption = "Eff. Start Date";
     this.gridColumnPKG7.ColumnEdit = this.StartDate;
     this.gridColumnPKG7.FieldName = "dtValidStart";
     this.gridColumnPKG7.Name = "gridColumnPKG7";
     this.gridColumnPKG7.Visible = true;
     this.gridColumnPKG7.VisibleIndex = 10;
     this.gridColumnPKG7.Width = 89;
     //
     // StartDate
     //
     this.StartDate.AutoHeight = false;
     this.StartDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.StartDate.Name = "StartDate";
     this.StartDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumnPKG8
     //
     this.gridColumnPKG8.Caption = "Eff. End Date";
     this.gridColumnPKG8.ColumnEdit = this.EndDate;
     this.gridColumnPKG8.FieldName = "dtValidEnd";
     this.gridColumnPKG8.Name = "gridColumnPKG8";
     this.gridColumnPKG8.Visible = true;
     this.gridColumnPKG8.VisibleIndex = 11;
     //
     // EndDate
     //
     this.EndDate.AutoHeight = false;
     this.EndDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EndDate.Name = "EndDate";
     this.EndDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumnPKG9
     //
     this.gridColumnPKG9.Caption = "Status";
     this.gridColumnPKG9.FieldName = "nStatus";
     this.gridColumnPKG9.Name = "gridColumnPKG9";
     this.gridColumnPKG9.Visible = true;
     this.gridColumnPKG9.VisibleIndex = 20;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Receipt Desc";
     this.gridColumn1.FieldName = "strReceiptDesc";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 2;
     this.gridColumn1.Width = 119;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Peak";
     this.gridColumn2.ColumnEdit = this.chk_Peak;
     this.gridColumn2.FieldName = "fPeak";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 12;
     this.gridColumn2.Width = 39;
     //
     // chk_Peak
     //
     this.chk_Peak.AutoHeight = false;
     this.chk_Peak.Name = "chk_Peak";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Student Package";
     this.gridColumn3.ColumnEdit = this.chk_StudentPackage;
     this.gridColumn3.FieldName = "fStudentPackage";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 13;
     this.gridColumn3.Width = 97;
     //
     // chk_StudentPackage
     //
     this.chk_StudentPackage.AutoHeight = false;
     this.chk_StudentPackage.Name = "chk_StudentPackage";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Category";
     this.gridColumn4.ColumnEdit = this.lk_Category;
     this.gridColumn4.FieldName = "nCategoryID";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 14;
     //
     // lk_Category
     //
     this.lk_Category.AutoHeight = false;
     this.lk_Category.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Category.Name = "lk_Category";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Valid Months";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn5.FieldName = "nValidMonths";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 15;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Warranty Months";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "nWarrantyMonths";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 16;
     this.gridColumn6.Width = 97;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "GIRO";
     this.gridColumn7.ColumnEdit = this.chk_GIRO;
     this.gridColumn7.FieldName = "fGIRO";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 17;
     this.gridColumn7.Width = 49;
     //
     // chk_GIRO
     //
     this.chk_GIRO.AutoHeight = false;
     this.chk_GIRO.Name = "chk_GIRO";
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Upgrade Group";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn8.FieldName = "fNoRestrictionUpgrade";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 18;
     this.gridColumn8.Width = 108;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "POS";
     this.gridColumn28.ColumnEdit = this.chk_Sell;
     this.gridColumn28.FieldName = "fSell";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 19;
     //
     // chk_Sell
     //
     this.chk_Sell.AutoHeight = false;
     this.chk_Sell.Name = "chk_Sell";
     //
     // gridColumn31
     //
     this.gridColumn31.Caption = "Is Entries?";
     this.gridColumn31.FieldName = "fEntries";
     this.gridColumn31.Name = "gridColumn31";
     this.gridColumn31.Visible = true;
     this.gridColumn31.VisibleIndex = 21;
     //
     // chk_Peak_1
     //
     this.chk_Peak_1.AutoHeight = false;
     this.chk_Peak_1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_Peak_1.Name = "chk_Peak_1";
     //
     // chk_StuPackage
     //
     this.chk_StuPackage.AutoHeight = false;
     this.chk_StuPackage.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_StuPackage.Name = "chk_StuPackage";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // chk_RestUpgrade
     //
     this.chk_RestUpgrade.AutoHeight = false;
     this.chk_RestUpgrade.Name = "chk_RestUpgrade";
     //
     // grpPackageGroup
     //
     this.grpPackageGroup.Controls.Add(this.btnPacGroup_Add);
     this.grpPackageGroup.Controls.Add(this.btnPacGroup_Del);
     this.grpPackageGroup.Controls.Add(this.groupControl4);
     this.grpPackageGroup.Location = new System.Drawing.Point(0, 48);
     this.grpPackageGroup.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpPackageGroup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpPackageGroup.Name = "grpPackageGroup";
     this.grpPackageGroup.Size = new System.Drawing.Size(960, 232);
     this.grpPackageGroup.TabIndex = 119;
     this.grpPackageGroup.Text = "Package Group";
     //
     // btnPacGroup_Add
     //
     this.btnPacGroup_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPacGroup_Add.Appearance.Options.UseFont = true;
     this.btnPacGroup_Add.Appearance.Options.UseTextOptions = true;
     this.btnPacGroup_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnPacGroup_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnPacGroup_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnPacGroup_Add.ImageIndex = 0;
     this.btnPacGroup_Add.ImageList = this.imageList1;
     this.btnPacGroup_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnPacGroup_Add.Location = new System.Drawing.Point(8, 24);
     this.btnPacGroup_Add.Name = "btnPacGroup_Add";
     this.btnPacGroup_Add.Size = new System.Drawing.Size(38, 16);
     this.btnPacGroup_Add.TabIndex = 134;
     this.btnPacGroup_Add.Click += new System.EventHandler(this.btnPacGroup_Add_Click);
     //
     // btnPacGroup_Del
     //
     this.btnPacGroup_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPacGroup_Del.Appearance.Options.UseFont = true;
     this.btnPacGroup_Del.Appearance.Options.UseTextOptions = true;
     this.btnPacGroup_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnPacGroup_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnPacGroup_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnPacGroup_Del.ImageIndex = 1;
     this.btnPacGroup_Del.ImageList = this.imageList1;
     this.btnPacGroup_Del.Location = new System.Drawing.Point(48, 24);
     this.btnPacGroup_Del.Name = "btnPacGroup_Del";
     this.btnPacGroup_Del.Size = new System.Drawing.Size(38, 16);
     this.btnPacGroup_Del.TabIndex = 133;
     this.btnPacGroup_Del.Click += new System.EventHandler(this.btnPacGroup_Del_Click);
     //
     // groupControl4
     //
     this.groupControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl4.Controls.Add(this.gridControlMd_PackageGroup);
     this.groupControl4.Location = new System.Drawing.Point(0, 40);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(944, 184);
     this.groupControl4.TabIndex = 2;
     //
     // gridControlMd_PackageGroup
     //
     this.gridControlMd_PackageGroup.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_PackageGroup.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_PackageGroup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_PackageGroup.MainView = this.gridViewMd_PackageGroup;
     this.gridControlMd_PackageGroup.Name = "gridControlMd_PackageGroup";
     this.gridControlMd_PackageGroup.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_pkGroupCatID});
     this.gridControlMd_PackageGroup.Size = new System.Drawing.Size(944, 184);
     this.gridControlMd_PackageGroup.TabIndex = 2;
     this.gridControlMd_PackageGroup.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_PackageGroup});
     //
     // gridViewMd_PackageGroup
     //
     this.gridViewMd_PackageGroup.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPG1,
     this.gridColumnPG2,
     this.gridColumnPG3,
     this.gcPkgComboPriceWGST,
     this.gridColumnPG4,
     this.gridColumnPG5,
     this.gridColumnPG6});
     this.gridViewMd_PackageGroup.GridControl = this.gridControlMd_PackageGroup;
     this.gridViewMd_PackageGroup.Name = "gridViewMd_PackageGroup";
     this.gridViewMd_PackageGroup.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_PackageGroup.OptionsCustomization.AllowSort = false;
     this.gridViewMd_PackageGroup.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_PackageGroup.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_PackageGroup_FocusedRowChanged);
     this.gridViewMd_PackageGroup.LostFocus += new System.EventHandler(this.gridViewMd_PackageGroup_LostFocus);
     //
     // gridColumnPG1
     //
     this.gridColumnPG1.Caption = "Package Group Code";
     this.gridColumnPG1.FieldName = "strPackageGroupCode";
     this.gridColumnPG1.Name = "gridColumnPG1";
     this.gridColumnPG1.Visible = true;
     this.gridColumnPG1.VisibleIndex = 0;
     //
     // gridColumnPG2
     //
     this.gridColumnPG2.Caption = "Description";
     this.gridColumnPG2.FieldName = "strDescription";
     this.gridColumnPG2.Name = "gridColumnPG2";
     this.gridColumnPG2.Visible = true;
     this.gridColumnPG2.VisibleIndex = 1;
     //
     // gridColumnPG3
     //
     this.gridColumnPG3.Caption = "Price";
     this.gridColumnPG3.DisplayFormat.FormatString = "d2";
     this.gridColumnPG3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPG3.FieldName = "mListPrice";
     this.gridColumnPG3.Name = "gridColumnPG3";
     this.gridColumnPG3.Visible = true;
     this.gridColumnPG3.VisibleIndex = 2;
     //
     // gcPkgComboPriceWGST
     //
     this.gcPkgComboPriceWGST.Caption = "Price w GST";
     this.gcPkgComboPriceWGST.DisplayFormat.FormatString = "d2";
     this.gcPkgComboPriceWGST.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcPkgComboPriceWGST.FieldName = "mListPriceWGST";
     this.gcPkgComboPriceWGST.Name = "gcPkgComboPriceWGST";
     this.gcPkgComboPriceWGST.Visible = true;
     this.gcPkgComboPriceWGST.VisibleIndex = 3;
     //
     // gridColumnPG4
     //
     this.gridColumnPG4.Caption = "Package Category";
     this.gridColumnPG4.ColumnEdit = this.lk_pkGroupCatID;
     this.gridColumnPG4.FieldName = "nCategoryID";
     this.gridColumnPG4.Name = "gridColumnPG4";
     this.gridColumnPG4.Visible = true;
     this.gridColumnPG4.VisibleIndex = 4;
     //
     // lk_pkGroupCatID
     //
     this.lk_pkGroupCatID.AutoHeight = false;
     this.lk_pkGroupCatID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_pkGroupCatID.Name = "lk_pkGroupCatID";
     //
     // gridColumnPG5
     //
     this.gridColumnPG5.Caption = "Eff.Start Date";
     this.gridColumnPG5.FieldName = "dtValidStart";
     this.gridColumnPG5.Name = "gridColumnPG5";
     this.gridColumnPG5.Visible = true;
     this.gridColumnPG5.VisibleIndex = 5;
     //
     // gridColumnPG6
     //
     this.gridColumnPG6.Caption = "Eff.End Date";
     this.gridColumnPG6.FieldName = "dtValidEnd";
     this.gridColumnPG6.Name = "gridColumnPG6";
     this.gridColumnPG6.Visible = true;
     this.gridColumnPG6.VisibleIndex = 6;
     //
     // grpCreditPackage
     //
     this.grpCreditPackage.Controls.Add(this.btnCreditPackage_Add);
     this.grpCreditPackage.Controls.Add(this.btnCreditPackage_Del);
     this.grpCreditPackage.Controls.Add(this.groupControl5);
     this.grpCreditPackage.Location = new System.Drawing.Point(0, 48);
     this.grpCreditPackage.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpCreditPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpCreditPackage.Name = "grpCreditPackage";
     this.grpCreditPackage.Size = new System.Drawing.Size(960, 232);
     this.grpCreditPackage.TabIndex = 121;
     this.grpCreditPackage.Text = "Credit Package";
     //
     // btnCreditPackage_Add
     //
     this.btnCreditPackage_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCreditPackage_Add.Appearance.Options.UseFont = true;
     this.btnCreditPackage_Add.Appearance.Options.UseTextOptions = true;
     this.btnCreditPackage_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnCreditPackage_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnCreditPackage_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnCreditPackage_Add.ImageIndex = 0;
     this.btnCreditPackage_Add.ImageList = this.imageList1;
     this.btnCreditPackage_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnCreditPackage_Add.Location = new System.Drawing.Point(8, 24);
     this.btnCreditPackage_Add.Name = "btnCreditPackage_Add";
     this.btnCreditPackage_Add.Size = new System.Drawing.Size(38, 16);
     this.btnCreditPackage_Add.TabIndex = 136;
     this.btnCreditPackage_Add.Click += new System.EventHandler(this.btnCreditPackage_Add_Click);
     //
     // btnCreditPackage_Del
     //
     this.btnCreditPackage_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCreditPackage_Del.Appearance.Options.UseFont = true;
     this.btnCreditPackage_Del.Appearance.Options.UseTextOptions = true;
     this.btnCreditPackage_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnCreditPackage_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnCreditPackage_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnCreditPackage_Del.ImageIndex = 1;
     this.btnCreditPackage_Del.ImageList = this.imageList1;
     this.btnCreditPackage_Del.Location = new System.Drawing.Point(48, 24);
     this.btnCreditPackage_Del.Name = "btnCreditPackage_Del";
     this.btnCreditPackage_Del.Size = new System.Drawing.Size(38, 16);
     this.btnCreditPackage_Del.TabIndex = 135;
     this.btnCreditPackage_Del.Click += new System.EventHandler(this.btnCreditPackage_Del_Click);
     //
     // groupControl5
     //
     this.groupControl5.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl5.Controls.Add(this.gridControlMd_CreditPackage);
     this.groupControl5.Location = new System.Drawing.Point(0, 40);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(952, 192);
     this.groupControl5.TabIndex = 2;
     this.groupControl5.Text = "groupControl5";
     //
     // gridControlMd_CreditPackage
     //
     this.gridControlMd_CreditPackage.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_CreditPackage.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_CreditPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_CreditPackage.MainView = this.gridViewMd_CreditPackage;
     this.gridControlMd_CreditPackage.Name = "gridControlMd_CreditPackage";
     this.gridControlMd_CreditPackage.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_CreditCategoryID,
     this.EffCCStartDate,
     this.EffCCEndDate});
     this.gridControlMd_CreditPackage.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_CreditPackage.TabIndex = 2;
     this.gridControlMd_CreditPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_CreditPackage});
     //
     // gridViewMd_CreditPackage
     //
     this.gridViewMd_CreditPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCP1,
     this.gridColumnCP2,
     this.gridColumn24,
     this.gridColumnCP3,
     this.gcPriceWGST,
     this.gridColumnCP4,
     this.gridColumnCP5,
     this.gridColumnCP6,
     this.gridColumn29,
     this.gridColumnCP7,
     this.gridColumnCP8,
     this.gcFreeCredit,
     this.gridColumnCP9});
     this.gridViewMd_CreditPackage.GridControl = this.gridControlMd_CreditPackage;
     this.gridViewMd_CreditPackage.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CreditPackage.Name = "gridViewMd_CreditPackage";
     this.gridViewMd_CreditPackage.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_CreditPackage.OptionsCustomization.AllowSort = false;
     this.gridViewMd_CreditPackage.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_CreditPackage.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_CreditPackage.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_CreditPackage_FocusedRowChanged);
     this.gridViewMd_CreditPackage.LostFocus += new System.EventHandler(this.gridViewMd_CreditPackage_LostFocus);
     //
     // gridColumnCP1
     //
     this.gridColumnCP1.Caption = "Credit Package Code";
     this.gridColumnCP1.FieldName = "strCreditPackageCode";
     this.gridColumnCP1.Name = "gridColumnCP1";
     this.gridColumnCP1.Visible = true;
     this.gridColumnCP1.VisibleIndex = 0;
     this.gridColumnCP1.Width = 111;
     //
     // gridColumnCP2
     //
     this.gridColumnCP2.Caption = "Description";
     this.gridColumnCP2.FieldName = "strDescription";
     this.gridColumnCP2.Name = "gridColumnCP2";
     this.gridColumnCP2.Visible = true;
     this.gridColumnCP2.VisibleIndex = 1;
     this.gridColumnCP2.Width = 200;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Receipt Description";
     this.gridColumn24.FieldName = "strReceiptDesc";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 10;
     this.gridColumn24.Width = 262;
     //
     // gridColumnCP3
     //
     this.gridColumnCP3.Caption = "Price";
     this.gridColumnCP3.DisplayFormat.FormatString = "d2";
     this.gridColumnCP3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnCP3.FieldName = "mListPrice";
     this.gridColumnCP3.Name = "gridColumnCP3";
     this.gridColumnCP3.Visible = true;
     this.gridColumnCP3.VisibleIndex = 2;
     //
     // gcPriceWGST
     //
     this.gcPriceWGST.Caption = "Price w GST";
     this.gcPriceWGST.DisplayFormat.FormatString = "d2";
     this.gcPriceWGST.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcPriceWGST.FieldName = "mListPriceWGST";
     this.gcPriceWGST.Name = "gcPriceWGST";
     this.gcPriceWGST.Visible = true;
     this.gcPriceWGST.VisibleIndex = 3;
     //
     // gridColumnCP4
     //
     this.gridColumnCP4.Caption = "Eff.Start Date";
     this.gridColumnCP4.ColumnEdit = this.EffCCStartDate;
     this.gridColumnCP4.FieldName = "dtValidStart";
     this.gridColumnCP4.Name = "gridColumnCP4";
     this.gridColumnCP4.Visible = true;
     this.gridColumnCP4.VisibleIndex = 4;
     this.gridColumnCP4.Width = 98;
     //
     // EffCCStartDate
     //
     this.EffCCStartDate.AutoHeight = false;
     this.EffCCStartDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EffCCStartDate.Name = "EffCCStartDate";
     this.EffCCStartDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumnCP5
     //
     this.gridColumnCP5.Caption = "Eff.End Date";
     this.gridColumnCP5.ColumnEdit = this.EffCCEndDate;
     this.gridColumnCP5.FieldName = "dtValidEnd";
     this.gridColumnCP5.Name = "gridColumnCP5";
     this.gridColumnCP5.Visible = true;
     this.gridColumnCP5.VisibleIndex = 5;
     this.gridColumnCP5.Width = 91;
     //
     // EffCCEndDate
     //
     this.EffCCEndDate.AutoHeight = false;
     this.EffCCEndDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EffCCEndDate.Name = "EffCCEndDate";
     this.EffCCEndDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumnCP6
     //
     this.gridColumnCP6.Caption = "Category";
     this.gridColumnCP6.ColumnEdit = this.lk_CreditCategoryID;
     this.gridColumnCP6.FieldName = "nCategoryID";
     this.gridColumnCP6.Name = "gridColumnCP6";
     this.gridColumnCP6.OptionsColumn.AllowEdit = false;
     this.gridColumnCP6.Visible = true;
     this.gridColumnCP6.VisibleIndex = 6;
     this.gridColumnCP6.Width = 97;
     //
     // lk_CreditCategoryID
     //
     this.lk_CreditCategoryID.AutoHeight = false;
     this.lk_CreditCategoryID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CreditCategoryID.Name = "lk_CreditCategoryID";
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "Upgrade Group";
     this.gridColumn29.FieldName = "fNoRestrictionUpgrade";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 8;
     this.gridColumn29.Width = 65;
     //
     // gridColumnCP7
     //
     this.gridColumnCP7.Caption = "Valid Months";
     this.gridColumnCP7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnCP7.FieldName = "nValidMonths";
     this.gridColumnCP7.Name = "gridColumnCP7";
     this.gridColumnCP7.Visible = true;
     this.gridColumnCP7.VisibleIndex = 7;
     //
     // gridColumnCP8
     //
     this.gridColumnCP8.Caption = "Credit Amount";
     this.gridColumnCP8.DisplayFormat.FormatString = "d2";
     this.gridColumnCP8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnCP8.FieldName = "mCreditAmount";
     this.gridColumnCP8.Name = "gridColumnCP8";
     this.gridColumnCP8.Visible = true;
     this.gridColumnCP8.VisibleIndex = 9;
     this.gridColumnCP8.Width = 80;
     //
     // gcFreeCredit
     //
     this.gcFreeCredit.Caption = "Free Credit";
     this.gcFreeCredit.DisplayFormat.FormatString = "d2";
     this.gcFreeCredit.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcFreeCredit.FieldName = "mFreeCredit";
     this.gcFreeCredit.Name = "gcFreeCredit";
     this.gcFreeCredit.Visible = true;
     this.gcFreeCredit.VisibleIndex = 11;
     this.gcFreeCredit.Width = 80;
     //
     // gridColumnCP9
     //
     this.gridColumnCP9.Caption = "Credit discount";
     this.gridColumnCP9.DisplayFormat.FormatString = "d2";
     this.gridColumnCP9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnCP9.FieldName = "dCreditDiscount";
     this.gridColumnCP9.Name = "gridColumnCP9";
     this.gridColumnCP9.Visible = true;
     this.gridColumnCP9.VisibleIndex = 12;
     this.gridColumnCP9.Width = 80;
     //
     // grpPackageClass
     //
     this.grpPackageClass.Controls.Add(this.btn_PGC_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGCAll_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGCAll_Add);
     this.grpPackageClass.Controls.Add(this.btn_PGC_Add);
     this.grpPackageClass.Controls.Add(this.gridPackageClass2);
     this.grpPackageClass.Controls.Add(this.label2);
     this.grpPackageClass.Controls.Add(this.gridPackageClass);
     this.grpPackageClass.Controls.Add(this.btn_PGB_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGBAll_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGBAll_Add);
     this.grpPackageClass.Controls.Add(this.btn_PGB_Add);
     this.grpPackageClass.Controls.Add(this.btn_PGUB_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGUBAll_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGUBAll_Add);
     this.grpPackageClass.Controls.Add(this.btn_PGUB_Add);
     this.grpPackageClass.Controls.Add(this.gridPcGroupBranch2);
     this.grpPackageClass.Controls.Add(this.gridPcGroupUseBranch2);
     this.grpPackageClass.Controls.Add(this.label4);
     this.grpPackageClass.Controls.Add(this.label5);
     this.grpPackageClass.Controls.Add(this.gridPcGroupBranch);
     this.grpPackageClass.Controls.Add(this.gridPcGroupUseBranch);
     this.grpPackageClass.Controls.Add(this.label119);
     this.grpPackageClass.Controls.Add(this.label120);
     this.grpPackageClass.Location = new System.Drawing.Point(8, 288);
     this.grpPackageClass.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpPackageClass.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpPackageClass.Name = "grpPackageClass";
     this.grpPackageClass.Size = new System.Drawing.Size(968, 424);
     this.grpPackageClass.TabIndex = 94;
     this.grpPackageClass.Text = "EMPLOYEE PACKAGE SETUP .....";
     this.grpPackageClass.AlwaysScrollActiveControlIntoView = true;
     //
     // btn_PGC_Del
     //
     this.btn_PGC_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGC_Del.Location = new System.Drawing.Point(496, 232);
     this.btn_PGC_Del.Name = "btn_PGC_Del";
     this.btn_PGC_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGC_Del.TabIndex = 151;
     this.btn_PGC_Del.Text = "<";
     this.btn_PGC_Del.Click += new System.EventHandler(this.btn_PGC_Del_Click);
     //
     // btn_PGCAll_Del
     //
     this.btn_PGCAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGCAll_Del.Location = new System.Drawing.Point(496, 208);
     this.btn_PGCAll_Del.Name = "btn_PGCAll_Del";
     this.btn_PGCAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGCAll_Del.TabIndex = 150;
     this.btn_PGCAll_Del.Text = "<<";
     this.btn_PGCAll_Del.Click += new System.EventHandler(this.btn_PGCAll_Del_Click);
     //
     // btn_PGCAll_Add
     //
     this.btn_PGCAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGCAll_Add.Location = new System.Drawing.Point(496, 184);
     this.btn_PGCAll_Add.Name = "btn_PGCAll_Add";
     this.btn_PGCAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGCAll_Add.TabIndex = 149;
     this.btn_PGCAll_Add.Text = ">>";
     this.btn_PGCAll_Add.Click += new System.EventHandler(this.btn_PGCAll_Add_Click);
     //
     // btn_PGC_Add
     //
     this.btn_PGC_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGC_Add.Location = new System.Drawing.Point(496, 160);
     this.btn_PGC_Add.Name = "btn_PGC_Add";
     this.btn_PGC_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGC_Add.TabIndex = 148;
     this.btn_PGC_Add.Text = ">";
     this.btn_PGC_Add.Click += new System.EventHandler(this.btn_PGC_Add_Click);
     //
     // gridPackageClass2
     //
     this.gridPackageClass2.Location = new System.Drawing.Point(536, 160);
     this.gridPackageClass2.MainView = this.gvPackageClass2;
     this.gridPackageClass2.Name = "gridPackageClass2";
     this.gridPackageClass2.Size = new System.Drawing.Size(424, 128);
     this.gridPackageClass2.TabIndex = 152;
     this.gridPackageClass2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackageClass2});
     //
     // gvPackageClass2
     //
     this.gvPackageClass2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn21});
     this.gvPackageClass2.GridControl = this.gridPackageClass2;
     this.gvPackageClass2.Name = "gvPackageClass2";
     this.gvPackageClass2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackageClass2.OptionsBehavior.Editable = false;
     this.gvPackageClass2.OptionsCustomization.AllowFilter = false;
     this.gvPackageClass2.OptionsSelection.MultiSelect = true;
     this.gvPackageClass2.OptionsView.ShowGroupPanel = false;
     this.gvPackageClass2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn13, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Class Code";
     this.gridColumn13.FieldName = "strClassCode";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 0;
     this.gridColumn13.Width = 104;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Description";
     this.gridColumn14.FieldName = "strDescription";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 1;
     this.gridColumn14.Width = 282;
     //
     // gridColumn21
     //
     this.gridColumn21.FieldName = "strPackageCode";
     this.gridColumn21.Name = "gridColumn21";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 160);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(56, 34);
     this.label2.TabIndex = 153;
     this.label2.Text = "Package Class";
     //
     // gridPackageClass
     //
     this.gridPackageClass.Location = new System.Drawing.Point(64, 160);
     this.gridPackageClass.MainView = this.gvPackageClass;
     this.gridPackageClass.Name = "gridPackageClass";
     this.gridPackageClass.Size = new System.Drawing.Size(424, 128);
     this.gridPackageClass.TabIndex = 147;
     this.gridPackageClass.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackageClass});
     //
     // gvPackageClass
     //
     this.gvPackageClass.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn16});
     this.gvPackageClass.GridControl = this.gridPackageClass;
     this.gvPackageClass.Name = "gvPackageClass";
     this.gvPackageClass.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackageClass.OptionsBehavior.Editable = false;
     this.gvPackageClass.OptionsCustomization.AllowFilter = false;
     this.gvPackageClass.OptionsSelection.MultiSelect = true;
     this.gvPackageClass.OptionsView.ShowGroupPanel = false;
     this.gvPackageClass.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn15, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Class Code";
     this.gridColumn15.FieldName = "strClassCode";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 107;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Description";
     this.gridColumn16.FieldName = "strDescription";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 1;
     this.gridColumn16.Width = 279;
     //
     // btn_PGB_Del
     //
     this.btn_PGB_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGB_Del.Location = new System.Drawing.Point(496, 96);
     this.btn_PGB_Del.Name = "btn_PGB_Del";
     this.btn_PGB_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGB_Del.TabIndex = 144;
     this.btn_PGB_Del.Text = "<";
     this.btn_PGB_Del.Click += new System.EventHandler(this.btn_PGB_Del_Click);
     //
     // btn_PGBAll_Del
     //
     this.btn_PGBAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGBAll_Del.Location = new System.Drawing.Point(496, 72);
     this.btn_PGBAll_Del.Name = "btn_PGBAll_Del";
     this.btn_PGBAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGBAll_Del.TabIndex = 143;
     this.btn_PGBAll_Del.Text = "<<";
     this.btn_PGBAll_Del.Click += new System.EventHandler(this.btn_PGBAll_Del_Click);
     //
     // btn_PGBAll_Add
     //
     this.btn_PGBAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGBAll_Add.Location = new System.Drawing.Point(496, 48);
     this.btn_PGBAll_Add.Name = "btn_PGBAll_Add";
     this.btn_PGBAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGBAll_Add.TabIndex = 142;
     this.btn_PGBAll_Add.Text = ">>";
     this.btn_PGBAll_Add.Click += new System.EventHandler(this.btn_PGBAll_Add_Click);
     //
     // btn_PGB_Add
     //
     this.btn_PGB_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGB_Add.Location = new System.Drawing.Point(496, 24);
     this.btn_PGB_Add.Name = "btn_PGB_Add";
     this.btn_PGB_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGB_Add.TabIndex = 141;
     this.btn_PGB_Add.Text = ">";
     this.btn_PGB_Add.Click += new System.EventHandler(this.btn_PGB_Add_Click);
     //
     // btn_PGUB_Del
     //
     this.btn_PGUB_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGUB_Del.Location = new System.Drawing.Point(496, 362);
     this.btn_PGUB_Del.Name = "btn_PGUB_Del";
     this.btn_PGUB_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGUB_Del.TabIndex = 144;
     this.btn_PGUB_Del.Text = "<";
     this.btn_PGUB_Del.Click += new System.EventHandler(this.btn_PGUB_Del_Click);
     //
     // btn_PGUBAll_Del
     //
     this.btn_PGUBAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGUBAll_Del.Location = new System.Drawing.Point(496, 338);
     this.btn_PGUBAll_Del.Name = "btn_PGUBAll_Del";
     this.btn_PGUBAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGUBAll_Del.TabIndex = 143;
     this.btn_PGUBAll_Del.Text = "<<";
     this.btn_PGUBAll_Del.Click += new System.EventHandler(this.btn_PGUBAll_Del_Click);
     //
     // btn_PGBAll_Add
     //
     this.btn_PGUBAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGUBAll_Add.Location = new System.Drawing.Point(496, 314);
     this.btn_PGUBAll_Add.Name = "btn_PGUBAll_Add";
     this.btn_PGUBAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGUBAll_Add.TabIndex = 142;
     this.btn_PGUBAll_Add.Text = ">>";
     this.btn_PGUBAll_Add.Click += new System.EventHandler(this.btn_PGUBAll_Add_Click);
     //
     // btn_PUGB_Add
     //
     this.btn_PGUB_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGUB_Add.Location = new System.Drawing.Point(496, 290);
     this.btn_PGUB_Add.Name = "btn_PGUB_Add";
     this.btn_PGUB_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGUB_Add.TabIndex = 141;
     this.btn_PGUB_Add.Text = ">";
     this.btn_PGUB_Add.Click += new System.EventHandler(this.btn_PGUB_Add_Click);
     //
     // gridPcGroupBranch2
     //
     this.gridPcGroupBranch2.Location = new System.Drawing.Point(536, 24);
     this.gridPcGroupBranch2.MainView = this.gvPcGroupBranch2;
     this.gridPcGroupBranch2.Name = "gridPcGroupBranch2";
     this.gridPcGroupBranch2.Size = new System.Drawing.Size(424, 128);
     this.gridPcGroupBranch2.TabIndex = 145;
     this.gridPcGroupBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPcGroupBranch2});
     //
     // gvPcGroupBranch2
     //
     this.gvPcGroupBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn22});
     this.gvPcGroupBranch2.GridControl = this.gridPcGroupBranch2;
     this.gvPcGroupBranch2.Name = "gvPcGroupBranch2";
     this.gvPcGroupBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPcGroupBranch2.OptionsBehavior.Editable = false;
     this.gvPcGroupBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPcGroupBranch2.OptionsSelection.MultiSelect = true;
     this.gvPcGroupBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPcGroupBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn17, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Branch";
     this.gridColumn17.FieldName = "strBranchCode";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 0;
     this.gridColumn17.Width = 104;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Branch Name";
     this.gridColumn18.FieldName = "strBranchName";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 1;
     this.gridColumn18.Width = 282;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "strPackageCode";
     this.gridColumn22.FieldName = "strPackageCode";
     this.gridColumn22.Name = "gridColumn22";
     //
     // gridColumn50
     //
     this.gridColumn50.Caption = "Branch";
     this.gridColumn50.FieldName = "strBranchCode";
     this.gridColumn50.Name = "gridColumn50";
     this.gridColumn50.Visible = true;
     this.gridColumn50.VisibleIndex = 0;
     this.gridColumn50.Width = 104;
     //
     // gridColumn51
     //
     this.gridColumn51.Caption = "Branch Name";
     this.gridColumn51.FieldName = "strBranchName";
     this.gridColumn51.Name = "gridColumn51";
     this.gridColumn51.Visible = true;
     this.gridColumn51.VisibleIndex = 1;
     this.gridColumn51.Width = 282;
     //
     // gridColumn52
     //
     this.gridColumn52.Caption = "strPackageCode";
     this.gridColumn52.FieldName = "strPackageCode";
     this.gridColumn52.Name = "gridColumn52";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(8, 24);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(56, 54);
     this.label4.TabIndex = 146;
     this.label4.Text = "Package Sell Branch";
     //
     // gridPcGroupBranch
     //
     this.gridPcGroupBranch.Location = new System.Drawing.Point(64, 24);
     this.gridPcGroupBranch.MainView = this.gvPcGroupBranch;
     this.gridPcGroupBranch.Name = "gridPcGroupBranch";
     this.gridPcGroupBranch.Size = new System.Drawing.Size(424, 128);
     this.gridPcGroupBranch.TabIndex = 140;
     this.gridPcGroupBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPcGroupBranch});
     //
     // gvPcGroupBranch
     //
     this.gvPcGroupBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn19,
     this.gridColumn20});
     this.gvPcGroupBranch.GridControl = this.gridPcGroupBranch;
     this.gvPcGroupBranch.Name = "gvPcGroupBranch";
     this.gvPcGroupBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPcGroupBranch.OptionsBehavior.Editable = false;
     this.gvPcGroupBranch.OptionsCustomization.AllowFilter = false;
     this.gvPcGroupBranch.OptionsSelection.MultiSelect = true;
     this.gvPcGroupBranch.OptionsView.ShowGroupPanel = false;
     this.gvPcGroupBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn19, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Branch";
     this.gridColumn19.FieldName = "strBranchCode";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 0;
     this.gridColumn19.Width = 107;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Branch Name";
     this.gridColumn20.FieldName = "strBranchName";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 1;
     this.gridColumn20.Width = 279;
     //
     // gridColumn53
     //
     this.gridColumn53.Caption = "Branch";
     this.gridColumn53.FieldName = "strBranchCode";
     this.gridColumn53.Name = "gridColumn53";
     this.gridColumn53.Visible = true;
     this.gridColumn53.VisibleIndex = 0;
     this.gridColumn53.Width = 107;
     //
     // gridColumn54
     //
     this.gridColumn54.Caption = "Branch Name";
     this.gridColumn54.FieldName = "strBranchName";
     this.gridColumn54.Name = "gridColumn54";
     this.gridColumn54.Visible = true;
     this.gridColumn54.VisibleIndex = 1;
     this.gridColumn54.Width = 279;
     //
     // label119
     //
     this.label119.BackColor = System.Drawing.Color.Transparent;
     this.label119.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label119.Location = new System.Drawing.Point(560, 24);
     this.label119.Name = "label119";
     this.label119.Size = new System.Drawing.Size(56, 16);
     this.label119.TabIndex = 139;
     this.label119.Text = "Services";
     this.label119.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label120
     //
     this.label120.BackColor = System.Drawing.Color.Transparent;
     this.label120.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label120.Location = new System.Drawing.Point(288, 24);
     this.label120.Name = "label120";
     this.label120.Size = new System.Drawing.Size(56, 16);
     this.label120.TabIndex = 138;
     this.label120.Text = "Class";
     this.label120.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // gridPcGroupUseBranch2
     //
     this.gridPcGroupUseBranch2.Location = new System.Drawing.Point(536, 290);
     this.gridPcGroupUseBranch2.MainView = this.gvPcGroupUseBranch2;
     this.gridPcGroupUseBranch2.Name = "gridPcGroupBranch2";
     this.gridPcGroupUseBranch2.Size = new System.Drawing.Size(424, 128);
     this.gridPcGroupUseBranch2.TabIndex = 145;
     this.gridPcGroupUseBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPcGroupUseBranch2});
     //
     // gvPcGroupUseBranch2
     //
     this.gvPcGroupUseBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn50,
     this.gridColumn51,
     this.gridColumn52});
     this.gvPcGroupUseBranch2.GridControl = this.gridPcGroupUseBranch2;
     this.gvPcGroupUseBranch2.Name = "gvPcGroupUseBranch2";
     this.gvPcGroupUseBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPcGroupUseBranch2.OptionsBehavior.Editable = false;
     this.gvPcGroupUseBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPcGroupUseBranch2.OptionsSelection.MultiSelect = true;
     this.gvPcGroupUseBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPcGroupUseBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn17, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(8, 290);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(56, 54);
     this.label5.TabIndex = 146;
     this.label5.Text = "Package Use Branch";
     //
     // gridPcGroupUseBranch
     //
     this.gridPcGroupUseBranch.Location = new System.Drawing.Point(64, 290);
     this.gridPcGroupUseBranch.MainView = this.gvPcGroupUseBranch;
     this.gridPcGroupUseBranch.Name = "gridPcGroupBranch";
     this.gridPcGroupUseBranch.Size = new System.Drawing.Size(424, 128);
     this.gridPcGroupUseBranch.TabIndex = 140;
     this.gridPcGroupUseBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPcGroupUseBranch});
     //
     // gvPcGroupUseBranch
     //
     this.gvPcGroupUseBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn53,
     this.gridColumn54});
     this.gvPcGroupUseBranch.GridControl = this.gridPcGroupUseBranch;
     this.gvPcGroupUseBranch.Name = "gvPcGroupBranch";
     this.gvPcGroupUseBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPcGroupUseBranch.OptionsBehavior.Editable = false;
     this.gvPcGroupUseBranch.OptionsCustomization.AllowFilter = false;
     this.gvPcGroupUseBranch.OptionsSelection.MultiSelect = true;
     this.gvPcGroupUseBranch.OptionsView.ShowGroupPanel = false;
     this.gvPcGroupUseBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn19, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // grpPackageService
     //
     this.grpPackageService.Controls.Add(this.btn_PSAll_Del);
     this.grpPackageService.Controls.Add(this.btn_PS_Del);
     this.grpPackageService.Controls.Add(this.btn_PSAdd_Add);
     this.grpPackageService.Controls.Add(this.btn_PS_Add);
     this.grpPackageService.Controls.Add(this.gridPackageService2);
     this.grpPackageService.Controls.Add(this.label1);
     this.grpPackageService.Controls.Add(this.gridPackageService);
     this.grpPackageService.Controls.Add(this.btn_PB_Del);
     this.grpPackageService.Controls.Add(this.btn_PBAll_Del);
     this.grpPackageService.Controls.Add(this.btn_PBAll_Add);
     this.grpPackageService.Controls.Add(this.btn_PB_Add);
     this.grpPackageService.Controls.Add(this.btn_PUB_Del);
     this.grpPackageService.Controls.Add(this.btn_PUBAll_Del);
     this.grpPackageService.Controls.Add(this.btn_PUBAll_Add);
     this.grpPackageService.Controls.Add(this.btn_PUB_Add);
     this.grpPackageService.Controls.Add(this.gridPackageBranch2);
     this.grpPackageService.Controls.Add(this.gridPackageUseBranch2);
     this.grpPackageService.Controls.Add(this.label3);
     this.grpPackageService.Controls.Add(this.label7);
     this.grpPackageService.Controls.Add(this.gridPackageBranch);
     this.grpPackageService.Controls.Add(this.gridPackageUseBranch);
     this.grpPackageService.Location = new System.Drawing.Point(8, 288);
     this.grpPackageService.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpPackageService.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpPackageService.Name = "grpPackageService";
     this.grpPackageService.Size = new System.Drawing.Size(960, 424);
     this.grpPackageService.TabIndex = 99;
     this.grpPackageService.Text = "EMPLOYEE PACKAGE SETUP .....";
     //
     // btn_PSAll_Del
     //
     this.btn_PSAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PSAll_Del.Location = new System.Drawing.Point(496, 232);
     this.btn_PSAll_Del.Name = "btn_PSAll_Del";
     this.btn_PSAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PSAll_Del.TabIndex = 28;
     this.btn_PSAll_Del.Text = "<";
     this.btn_PSAll_Del.Click += new System.EventHandler(this.btn_PSAll_Del_Click);
     //
     // btn_PS_Del
     //
     this.btn_PS_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PS_Del.Location = new System.Drawing.Point(496, 208);
     this.btn_PS_Del.Name = "btn_PS_Del";
     this.btn_PS_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PS_Del.TabIndex = 27;
     this.btn_PS_Del.Text = "<<";
     this.btn_PS_Del.Click += new System.EventHandler(this.btn_PS_Del_Click);
     //
     // btn_PSAdd_Add
     //
     this.btn_PSAdd_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PSAdd_Add.Location = new System.Drawing.Point(496, 184);
     this.btn_PSAdd_Add.Name = "btn_PSAdd_Add";
     this.btn_PSAdd_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PSAdd_Add.TabIndex = 26;
     this.btn_PSAdd_Add.Text = ">>";
     this.btn_PSAdd_Add.Click += new System.EventHandler(this.btn_PSAdd_Add_Click);
     //
     // btn_PS_Add
     //
     this.btn_PS_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PS_Add.Location = new System.Drawing.Point(496, 160);
     this.btn_PS_Add.Name = "btn_PS_Add";
     this.btn_PS_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PS_Add.TabIndex = 25;
     this.btn_PS_Add.Text = ">";
     this.btn_PS_Add.Click += new System.EventHandler(this.btn_PS_Add_Click);
     //
     // gridPackageService2
     //
     this.gridPackageService2.Location = new System.Drawing.Point(536, 160);
     this.gridPackageService2.MainView = this.gvPackageService2;
     this.gridPackageService2.Name = "gridPackageService2";
     this.gridPackageService2.Size = new System.Drawing.Size(424, 128);
     this.gridPackageService2.TabIndex = 29;
     this.gridPackageService2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackageService2});
     //
     // gvPackageService2
     //
     this.gvPackageService2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn23});
     this.gvPackageService2.GridControl = this.gridPackageService2;
     this.gvPackageService2.Name = "gvPackageService2";
     this.gvPackageService2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackageService2.OptionsBehavior.Editable = false;
     this.gvPackageService2.OptionsCustomization.AllowFilter = false;
     this.gvPackageService2.OptionsSelection.MultiSelect = true;
     this.gvPackageService2.OptionsView.ShowGroupPanel = false;
     this.gvPackageService2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn9, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Service Code";
     this.gridColumn9.FieldName = "strServiceCode";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 0;
     this.gridColumn9.Width = 104;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Description";
     this.gridColumn10.FieldName = "strDescription";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 1;
     this.gridColumn10.Width = 282;
     //
     // gridColumn23
     //
     this.gridColumn23.FieldName = "strPackageCode";
     this.gridColumn23.Name = "gridColumn23";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 168);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(56, 34);
     this.label1.TabIndex = 30;
     this.label1.Text = "Package Service";
     //
     // gridPackageService
     //
     this.gridPackageService.Location = new System.Drawing.Point(64, 160);
     this.gridPackageService.MainView = this.gvPackageService;
     this.gridPackageService.Name = "gridPackageService";
     this.gridPackageService.Size = new System.Drawing.Size(424, 128);
     this.gridPackageService.TabIndex = 24;
     this.gridPackageService.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackageService});
     //
     // gvPackageService
     //
     this.gvPackageService.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn11,
     this.gridColumn12});
     this.gvPackageService.GridControl = this.gridPackageService;
     this.gvPackageService.Name = "gvPackageService";
     this.gvPackageService.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackageService.OptionsBehavior.Editable = false;
     this.gvPackageService.OptionsCustomization.AllowFilter = false;
     this.gvPackageService.OptionsSelection.MultiSelect = true;
     this.gvPackageService.OptionsView.ShowGroupPanel = false;
     this.gvPackageService.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn11, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Service Code";
     this.gridColumn11.FieldName = "strServiceCode";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 0;
     this.gridColumn11.Width = 107;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Description";
     this.gridColumn12.FieldName = "strDescription";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 1;
     this.gridColumn12.Width = 279;
     //
     // btn_PB_Del
     //
     this.btn_PB_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PB_Del.Location = new System.Drawing.Point(496, 96);
     this.btn_PB_Del.Name = "btn_PB_Del";
     this.btn_PB_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PB_Del.TabIndex = 21;
     this.btn_PB_Del.Text = "<";
     this.btn_PB_Del.Click += new System.EventHandler(this.btn_PB_Del_Click);
     //
     // btn_PBAll_Del
     //
     this.btn_PBAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PBAll_Del.Location = new System.Drawing.Point(496, 72);
     this.btn_PBAll_Del.Name = "btn_PBAll_Del";
     this.btn_PBAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PBAll_Del.TabIndex = 20;
     this.btn_PBAll_Del.Text = "<<";
     this.btn_PBAll_Del.Click += new System.EventHandler(this.btn_PBAll_Del_Click);
     //
     // btn_PBAll_Add
     //
     this.btn_PBAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PBAll_Add.Location = new System.Drawing.Point(496, 48);
     this.btn_PBAll_Add.Name = "btn_PBAll_Add";
     this.btn_PBAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PBAll_Add.TabIndex = 19;
     this.btn_PBAll_Add.Text = ">>";
     this.btn_PBAll_Add.Click += new System.EventHandler(this.btn_PBAll_Add_Click);
     //
     // btn_PB_Add
     //
     this.btn_PB_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PB_Add.Location = new System.Drawing.Point(496, 24);
     this.btn_PB_Add.Name = "btn_PB_Add";
     this.btn_PB_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PB_Add.TabIndex = 18;
     this.btn_PB_Add.Text = ">";
     this.btn_PB_Add.Click += new System.EventHandler(this.btn_PB_Add_Click);
     //
     // btn_PUB_Del
     //
     this.btn_PUB_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PUB_Del.Location = new System.Drawing.Point(496, 362);
     this.btn_PUB_Del.Name = "btn_PUB_Del";
     this.btn_PUB_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PUB_Del.TabIndex = 21;
     this.btn_PUB_Del.Text = "<";
     this.btn_PUB_Del.Click += new System.EventHandler(this.btn_PUB_Del_Click);
     //
     // btn_PUBAll_Del
     //
     this.btn_PUBAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PUBAll_Del.Location = new System.Drawing.Point(496, 338);
     this.btn_PUBAll_Del.Name = "btn_PUBAll_Del";
     this.btn_PUBAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PUBAll_Del.TabIndex = 20;
     this.btn_PUBAll_Del.Text = "<<";
     this.btn_PUBAll_Del.Click += new System.EventHandler(this.btn_PUBAll_Del_Click);
     //
     // btn_PUBAll_Add
     //
     this.btn_PUBAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PUBAll_Add.Location = new System.Drawing.Point(496, 314);
     this.btn_PUBAll_Add.Name = "btn_PUBAll_Add";
     this.btn_PUBAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PUBAll_Add.TabIndex = 19;
     this.btn_PUBAll_Add.Text = ">>";
     this.btn_PUBAll_Add.Click += new System.EventHandler(this.btn_PUBAll_Add_Click);
     //
     // btn_PUB_Add
     //
     this.btn_PUB_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PUB_Add.Location = new System.Drawing.Point(496, 290);
     this.btn_PUB_Add.Name = "btn_PUB_Add";
     this.btn_PUB_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PUB_Add.TabIndex = 18;
     this.btn_PUB_Add.Text = ">";
     this.btn_PUB_Add.Click += new System.EventHandler(this.btn_PUB_Add_Click);
     //
     // gridPackageBranch2
     //
     this.gridPackageBranch2.Location = new System.Drawing.Point(536, 24);
     this.gridPackageBranch2.MainView = this.gvPSBranch2;
     this.gridPackageBranch2.Name = "gridPackageBranch2";
     this.gridPackageBranch2.Size = new System.Drawing.Size(424, 128);
     this.gridPackageBranch2.TabIndex = 22;
     this.gridPackageBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPSBranch2});
     //
     // gridPackageUseBranch2
     //
     this.gridPackageUseBranch2.Location = new System.Drawing.Point(536, 290);
     this.gridPackageUseBranch2.MainView = this.gvPSUseBranch2;
     this.gridPackageUseBranch2.Name = "gridPackageUseBranch2";
     this.gridPackageUseBranch2.Size = new System.Drawing.Size(424, 128);
     this.gridPackageUseBranch2.TabIndex = 22;
     this.gridPackageUseBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPSUseBranch2});
     //
     // gvPSBranch2
     //
     this.gvPSBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colBranchCode2,
     this.colBranchName2});
     this.gvPSBranch2.GridControl = this.gridPackageBranch2;
     this.gvPSBranch2.Name = "gvPSBranch2";
     this.gvPSBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPSBranch2.OptionsBehavior.Editable = false;
     this.gvPSBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPSBranch2.OptionsSelection.MultiSelect = true;
     this.gvPSBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPSBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colBranchCode2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colBranchCode2
     //
     this.colBranchCode2.Caption = "Branch";
     this.colBranchCode2.FieldName = "strBranchCode";
     this.colBranchCode2.Name = "colBranchCode2";
     this.colBranchCode2.Visible = true;
     this.colBranchCode2.VisibleIndex = 0;
     this.colBranchCode2.Width = 104;
     //
     // colBranchName2
     //
     this.colBranchName2.Caption = "Branch Name";
     this.colBranchName2.FieldName = "strBranchName";
     this.colBranchName2.Name = "colBranchName2";
     this.colBranchName2.Visible = true;
     this.colBranchName2.VisibleIndex = 1;
     this.colBranchName2.Width = 282;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(8, 24);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 54);
     this.label3.TabIndex = 23;
     this.label3.Text = "Package Sell Branch";
     //
     // gvPSUseBranch2
     //
     this.gvPSUseBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colUseBranchCode2,
     this.colUseBranchName2});
     this.gvPSUseBranch2.GridControl = this.gridPackageUseBranch2;
     this.gvPSUseBranch2.Name = "gvPSUseBranch2";
     this.gvPSUseBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPSUseBranch2.OptionsBehavior.Editable = false;
     this.gvPSUseBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPSUseBranch2.OptionsSelection.MultiSelect = true;
     this.gvPSUseBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPSUseBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colUseBranchCode2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colUseBranchCode2
     //
     this.colUseBranchCode2.Caption = "Branch";
     this.colUseBranchCode2.FieldName = "strBranchCode";
     this.colUseBranchCode2.Name = "colUseBranchCode2";
     this.colUseBranchCode2.Visible = true;
     this.colUseBranchCode2.VisibleIndex = 0;
     this.colUseBranchCode2.Width = 104;
     //
     // colUseBranchName2
     //
     this.colUseBranchName2.Caption = "Branch Name";
     this.colUseBranchName2.FieldName = "strBranchName";
     this.colUseBranchName2.Name = "colUseBranchName2";
     this.colUseBranchName2.Visible = true;
     this.colUseBranchName2.VisibleIndex = 1;
     this.colUseBranchName2.Width = 282;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(8, 290);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(56, 54);
     this.label7.TabIndex = 23;
     this.label7.Text = "Package Use Branch";
     //
     // gridPackageBranch
     //
     this.gridPackageBranch.Location = new System.Drawing.Point(64, 24);
     this.gridPackageBranch.MainView = this.gvPSBranch;
     this.gridPackageBranch.Name = "gridPackageBranch";
     this.gridPackageBranch.Size = new System.Drawing.Size(424, 128);
     this.gridPackageBranch.TabIndex = 17;
     this.gridPackageBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPSBranch});
     //
     // gvPSBranch
     //
     this.gvPSBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colBranchCode,
     this.colBranchName});
     this.gvPSBranch.GridControl = this.gridPackageBranch;
     this.gvPSBranch.Name = "gvPSBranch";
     this.gvPSBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPSBranch.OptionsBehavior.Editable = false;
     this.gvPSBranch.OptionsCustomization.AllowFilter = false;
     this.gvPSBranch.OptionsSelection.MultiSelect = true;
     this.gvPSBranch.OptionsView.ShowGroupPanel = false;
     this.gvPSBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colBranchCode, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colBranchCode
     //
     this.colBranchCode.Caption = "Branch";
     this.colBranchCode.FieldName = "strBranchCode";
     this.colBranchCode.Name = "colBranchCode";
     this.colBranchCode.Visible = true;
     this.colBranchCode.VisibleIndex = 0;
     this.colBranchCode.Width = 107;
     //
     // colBranchName
     //
     this.colBranchName.Caption = "Branch Name";
     this.colBranchName.FieldName = "strBranchName";
     this.colBranchName.Name = "colBranchName";
     this.colBranchName.Visible = true;
     this.colBranchName.VisibleIndex = 1;
     this.colBranchName.Width = 279;
     //
     // gridPackageUseBranch
     //
     this.gridPackageUseBranch.Location = new System.Drawing.Point(64, 290);
     this.gridPackageUseBranch.MainView = this.gvPSUseBranch;
     this.gridPackageUseBranch.Name = "gridPackageUseBranch";
     this.gridPackageUseBranch.Size = new System.Drawing.Size(424, 128);
     this.gridPackageUseBranch.TabIndex = 17;
     this.gridPackageUseBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPSUseBranch});
     //
     // gvPSUseBranch
     //
     this.gvPSUseBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colUseBranchCode,
     this.colUseBranchName});
     this.gvPSUseBranch.GridControl = this.gridPackageUseBranch;
     this.gvPSUseBranch.Name = "gvPSUseBranch";
     this.gvPSUseBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPSUseBranch.OptionsBehavior.Editable = false;
     this.gvPSUseBranch.OptionsCustomization.AllowFilter = false;
     this.gvPSUseBranch.OptionsSelection.MultiSelect = true;
     this.gvPSUseBranch.OptionsView.ShowGroupPanel = false;
     this.gvPSUseBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colUseBranchCode, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colUseBranchCode
     //
     this.colUseBranchCode.Caption = "Branch";
     this.colUseBranchCode.FieldName = "strBranchCode";
     this.colUseBranchCode.Name = "colUseBranchCode";
     this.colUseBranchCode.Visible = true;
     this.colUseBranchCode.VisibleIndex = 0;
     this.colUseBranchCode.Width = 107;
     //
     // colUseBranchName
     //
     this.colUseBranchName.Caption = "Branch Name";
     this.colUseBranchName.FieldName = "strBranchName";
     this.colUseBranchName.Name = "colUseBranchName";
     this.colUseBranchName.Visible = true;
     this.colUseBranchName.VisibleIndex = 1;
     this.colUseBranchName.Width = 279;
     //
     // PackageGroup
     //
     this.PackageGroup.Controls.Add(this.btn_PacGroup_Add);
     this.PackageGroup.Controls.Add(this.btn_PacGroup_Del);
     this.PackageGroup.Controls.Add(this.groupControl2);
     this.PackageGroup.Controls.Add(this.splitter2);
     this.PackageGroup.ImeMode = System.Windows.Forms.ImeMode.On;
     this.PackageGroup.Location = new System.Drawing.Point(8, 288);
     this.PackageGroup.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.PackageGroup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.PackageGroup.Name = "PackageGroup";
     this.PackageGroup.Size = new System.Drawing.Size(952, 434);
     this.PackageGroup.TabIndex = 100;
     this.PackageGroup.Text = "PACKAGE GROUP ENTRIES SETUP .....";
     //
     // btn_PacGroup_Add
     //
     this.btn_PacGroup_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_PacGroup_Add.Appearance.Options.UseFont = true;
     this.btn_PacGroup_Add.Appearance.Options.UseTextOptions = true;
     this.btn_PacGroup_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_PacGroup_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_PacGroup_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_PacGroup_Add.ImageIndex = 0;
     this.btn_PacGroup_Add.ImageList = this.imageList1;
     this.btn_PacGroup_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_PacGroup_Add.Location = new System.Drawing.Point(8, 24);
     this.btn_PacGroup_Add.Name = "btn_PacGroup_Add";
     this.btn_PacGroup_Add.Size = new System.Drawing.Size(32, 16);
     this.btn_PacGroup_Add.TabIndex = 134;
     this.btn_PacGroup_Add.Click += new System.EventHandler(this.btn_PacGroup_Add_Click);
     //
     // btn_PacGroup_Del
     //
     this.btn_PacGroup_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_PacGroup_Del.Appearance.Options.UseFont = true;
     this.btn_PacGroup_Del.Appearance.Options.UseTextOptions = true;
     this.btn_PacGroup_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_PacGroup_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_PacGroup_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_PacGroup_Del.ImageIndex = 1;
     this.btn_PacGroup_Del.ImageList = this.imageList1;
     this.btn_PacGroup_Del.Location = new System.Drawing.Point(40, 24);
     this.btn_PacGroup_Del.Name = "btn_PacGroup_Del";
     this.btn_PacGroup_Del.Size = new System.Drawing.Size(32, 16);
     this.btn_PacGroup_Del.TabIndex = 133;
     this.btn_PacGroup_Del.Click += new System.EventHandler(this.btn_PacGroup_Del_Click);
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl2.Controls.Add(this.gridControlMd_GroupEntries);
     this.groupControl2.Location = new System.Drawing.Point(0, 40);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(968, 248);
     this.groupControl2.TabIndex = 12;
     this.groupControl2.Text = "groupControl2";
     //
     // gridControlMd_GroupEntries
     //
     this.gridControlMd_GroupEntries.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_GroupEntries.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_GroupEntries.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_GroupEntries.MainView = this.gridViewMd_GroupEntries;
     this.gridControlMd_GroupEntries.Name = "gridControlMd_GroupEntries";
     this.gridControlMd_GroupEntries.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_GrpPackageCode});
     this.gridControlMd_GroupEntries.Size = new System.Drawing.Size(968, 248);
     this.gridControlMd_GroupEntries.TabIndex = 12;
     this.gridControlMd_GroupEntries.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_GroupEntries});
     //
     // gridViewMd_GroupEntries
     //
     this.gridViewMd_GroupEntries.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn44,
     this.gridColumn45,
     this.gridColumn46});
     this.gridViewMd_GroupEntries.GridControl = this.gridControlMd_GroupEntries;
     this.gridViewMd_GroupEntries.Name = "gridViewMd_GroupEntries";
     this.gridViewMd_GroupEntries.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_GroupEntries.OptionsCustomization.AllowSort = false;
     this.gridViewMd_GroupEntries.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_GroupEntries.LostFocus += new System.EventHandler(this.gridViewMd_GroupEntries_LostFocus);
     //
     // gridColumn44
     //
     this.gridColumn44.Caption = "Package Group Code";
     this.gridColumn44.FieldName = "strPackageGroupCode";
     this.gridColumn44.Name = "gridColumn44";
     //
     // gridColumn45
     //
     this.gridColumn45.Caption = "Package Code";
     this.gridColumn45.ColumnEdit = this.lk_GrpPackageCode;
     this.gridColumn45.FieldName = "strPackageCode";
     this.gridColumn45.Name = "gridColumn45";
     this.gridColumn45.Visible = true;
     this.gridColumn45.VisibleIndex = 0;
     //
     // lk_GrpPackageCode
     //
     this.lk_GrpPackageCode.AutoHeight = false;
     this.lk_GrpPackageCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_GrpPackageCode.Name = "lk_GrpPackageCode";
     //
     // gridColumn46
     //
     this.gridColumn46.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn46.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn46.Caption = "Quantity";
     this.gridColumn46.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn46.FieldName = "nQuantity";
     this.gridColumn46.Name = "gridColumn46";
     this.gridColumn46.Visible = true;
     this.gridColumn46.VisibleIndex = 1;
     //
     // splitter2
     //
     this.splitter2.BackColor = System.Drawing.SystemColors.Control;
     this.splitter2.Dock = System.Windows.Forms.DockStyle.Right;
     this.splitter2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.splitter2.Location = new System.Drawing.Point(948, 19);
     this.splitter2.Name = "splitter2";
     this.splitter2.Size = new System.Drawing.Size(2, 413);
     this.splitter2.TabIndex = 7;
     this.splitter2.TabStop = false;
     //
     // GroupCreditPackage
     //
     this.GroupCreditPackage.Controls.Add(this.btn_CreGroup_Add);
     this.GroupCreditPackage.Controls.Add(this.btn_CreGroup_Del);
     this.GroupCreditPackage.Controls.Add(this.groupControl3);
     this.GroupCreditPackage.Location = new System.Drawing.Point(8, 288);
     this.GroupCreditPackage.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GroupCreditPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GroupCreditPackage.Name = "GroupCreditPackage";
     this.GroupCreditPackage.Size = new System.Drawing.Size(968, 300);
     this.GroupCreditPackage.TabIndex = 101;
     this.GroupCreditPackage.Text = "EMPLOYEE CREDIT PACKAGE SETUP .....";
     //
     // btn_CreGroup_Add
     //
     this.btn_CreGroup_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_CreGroup_Add.Appearance.Options.UseFont = true;
     this.btn_CreGroup_Add.Appearance.Options.UseTextOptions = true;
     this.btn_CreGroup_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_CreGroup_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_CreGroup_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_CreGroup_Add.ImageIndex = 0;
     this.btn_CreGroup_Add.ImageList = this.imageList1;
     this.btn_CreGroup_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_CreGroup_Add.Location = new System.Drawing.Point(0, 24);
     this.btn_CreGroup_Add.Name = "btn_CreGroup_Add";
     this.btn_CreGroup_Add.Size = new System.Drawing.Size(32, 16);
     this.btn_CreGroup_Add.TabIndex = 136;
     this.btn_CreGroup_Add.Click += new System.EventHandler(this.btn_CreGroup_Add_Click);
     //
     // btn_CreGroup_Del
     //
     this.btn_CreGroup_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_CreGroup_Del.Appearance.Options.UseFont = true;
     this.btn_CreGroup_Del.Appearance.Options.UseTextOptions = true;
     this.btn_CreGroup_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_CreGroup_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_CreGroup_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_CreGroup_Del.ImageIndex = 1;
     this.btn_CreGroup_Del.ImageList = this.imageList1;
     this.btn_CreGroup_Del.Location = new System.Drawing.Point(32, 24);
     this.btn_CreGroup_Del.Name = "btn_CreGroup_Del";
     this.btn_CreGroup_Del.Size = new System.Drawing.Size(32, 16);
     this.btn_CreGroup_Del.TabIndex = 135;
     this.btn_CreGroup_Del.Click += new System.EventHandler(this.btn_CreGroup_Del_Click);
     //
     // groupControl3
     //
     this.groupControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl3.Controls.Add(this.GridCreditRestric);
     this.groupControl3.Location = new System.Drawing.Point(0, 40);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(944, 256);
     this.groupControl3.TabIndex = 12;
     this.groupControl3.Text = "groupControl3";
     //
     // GridCreditRestric
     //
     this.GridCreditRestric.Dock = System.Windows.Forms.DockStyle.Fill;
     gridLevelNode2.RelationName = "Level1";
     this.GridCreditRestric.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode2});
     this.GridCreditRestric.Location = new System.Drawing.Point(0, 0);
     this.GridCreditRestric.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridCreditRestric.MainView = this.gridViewmd_CreditRestric;
     this.GridCreditRestric.Name = "GridCreditRestric";
     this.GridCreditRestric.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_PackageCode,
     this.chk_AllowDiscount});
     this.GridCreditRestric.Size = new System.Drawing.Size(944, 256);
     this.GridCreditRestric.TabIndex = 12;
     this.GridCreditRestric.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewmd_CreditRestric});
     //
     // gridViewmd_CreditRestric
     //
     this.gridViewmd_CreditRestric.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn25,
     this.gridColumn26,
     this.gridColumn27});
     this.gridViewmd_CreditRestric.GridControl = this.GridCreditRestric;
     this.gridViewmd_CreditRestric.Name = "gridViewmd_CreditRestric";
     this.gridViewmd_CreditRestric.OptionsCustomization.AllowFilter = false;
     this.gridViewmd_CreditRestric.OptionsCustomization.AllowSort = false;
     this.gridViewmd_CreditRestric.OptionsView.ShowGroupPanel = false;
     this.gridViewmd_CreditRestric.LostFocus += new System.EventHandler(this.gridViewmd_CreditRestric_LostFocus);
     //
     // gridColumn25
     //
     this.gridColumn25.FieldName = "strCreditPackageCode";
     this.gridColumn25.Name = "gridColumn25";
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "Package Code";
     this.gridColumn26.ColumnEdit = this.lk_PackageCode;
     this.gridColumn26.FieldName = "strPackageCode";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 0;
     //
     // lk_PackageCode
     //
     this.lk_PackageCode.AutoHeight = false;
     this.lk_PackageCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_PackageCode.Name = "lk_PackageCode";
     //
     // gridColumn27
     //
     this.gridColumn27.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn27.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn27.Caption = "Allow Discount";
     this.gridColumn27.ColumnEdit = this.chk_AllowDiscount;
     this.gridColumn27.FieldName = "fAllowDiscount";
     this.gridColumn27.ImageAlignment = System.Drawing.StringAlignment.Center;
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 1;
     //
     // chk_AllowDiscount
     //
     this.chk_AllowDiscount.AutoHeight = false;
     this.chk_AllowDiscount.Name = "chk_AllowDiscount";
     //
     // grpBranch
     //
     this.grpBranch.Controls.Add(this.btnPacBranch_Del);
     this.grpBranch.Controls.Add(this.btnPacBranch_DelAll);
     this.grpBranch.Controls.Add(this.btnPacBranch_AddAll);
     this.grpBranch.Controls.Add(this.btnPacBranch_Add);
     this.grpBranch.Controls.Add(this.gridPacBranch2);
     this.grpBranch.Controls.Add(this.label6);
     this.grpBranch.Controls.Add(this.gridPacBranch);
     this.grpBranch.Location = new System.Drawing.Point(3, 290);
     this.grpBranch.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpBranch.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpBranch.Name = "grpBranch";
     this.grpBranch.Size = new System.Drawing.Size(960, 296);
     this.grpBranch.TabIndex = 102;
     this.grpBranch.Text = "PACKAGE SETUP .....";
     //
     // btnPacBranch_Del
     //
     this.btnPacBranch_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_Del.Location = new System.Drawing.Point(496, 96);
     this.btnPacBranch_Del.Name = "btnPacBranch_Del";
     this.btnPacBranch_Del.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_Del.TabIndex = 21;
     this.btnPacBranch_Del.Text = "<";
     this.btnPacBranch_Del.Click += new System.EventHandler(this.btnPacBranch_Del_Click);
     //
     // btnPacBranch_DelAll
     //
     this.btnPacBranch_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_DelAll.Location = new System.Drawing.Point(496, 72);
     this.btnPacBranch_DelAll.Name = "btnPacBranch_DelAll";
     this.btnPacBranch_DelAll.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_DelAll.TabIndex = 20;
     this.btnPacBranch_DelAll.Text = "<<";
     this.btnPacBranch_DelAll.Click += new System.EventHandler(this.btnPacBranch_DelAll_Click);
     //
     // btnPacBranch_AddAll
     //
     this.btnPacBranch_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_AddAll.Location = new System.Drawing.Point(496, 48);
     this.btnPacBranch_AddAll.Name = "btnPacBranch_AddAll";
     this.btnPacBranch_AddAll.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_AddAll.TabIndex = 19;
     this.btnPacBranch_AddAll.Text = ">>";
     this.btnPacBranch_AddAll.Click += new System.EventHandler(this.btnPacBranch_AddAll_Click);
     //
     // btnPacBranch_Add
     //
     this.btnPacBranch_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_Add.Location = new System.Drawing.Point(496, 24);
     this.btnPacBranch_Add.Name = "btnPacBranch_Add";
     this.btnPacBranch_Add.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_Add.TabIndex = 18;
     this.btnPacBranch_Add.Text = ">";
     this.btnPacBranch_Add.Click += new System.EventHandler(this.btnPacBranch_Add_Click);
     //
     // gridPacBranch2
     //
     this.gridPacBranch2.Location = new System.Drawing.Point(536, 24);
     this.gridPacBranch2.MainView = this.gvPacBranch2;
     this.gridPacBranch2.Name = "gridPacBranch2";
     this.gridPacBranch2.Size = new System.Drawing.Size(424, 264);
     this.gridPacBranch2.TabIndex = 22;
     this.gridPacBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPacBranch2});
     //
     // gvPacBranch2
     //
     this.gvPacBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn33,
     this.gridColumn34});
     this.gvPacBranch2.GridControl = this.gridPacBranch2;
     this.gvPacBranch2.Name = "gvPacBranch2";
     this.gvPacBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPacBranch2.OptionsBehavior.Editable = false;
     this.gvPacBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPacBranch2.OptionsSelection.MultiSelect = true;
     this.gvPacBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPacBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn33, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn33
     //
     this.gridColumn33.Caption = "Branch";
     this.gridColumn33.FieldName = "strBranchCode";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 0;
     this.gridColumn33.Width = 104;
     //
     // gridColumn34
     //
     this.gridColumn34.Caption = "Branch Name";
     this.gridColumn34.FieldName = "strBranchName";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.Visible = true;
     this.gridColumn34.VisibleIndex = 1;
     this.gridColumn34.Width = 282;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(8, 24);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(56, 34);
     this.label6.TabIndex = 23;
     this.label6.Text = "Package Branch";
     //
     // gridPacBranch
     //
     this.gridPacBranch.Location = new System.Drawing.Point(64, 24);
     this.gridPacBranch.MainView = this.gvPacBranch;
     this.gridPacBranch.Name = "gridPacBranch";
     this.gridPacBranch.Size = new System.Drawing.Size(424, 264);
     this.gridPacBranch.TabIndex = 17;
     this.gridPacBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPacBranch});
     //
     // gvPacBranch
     //
     this.gvPacBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn35,
     this.gridColumn36});
     this.gvPacBranch.GridControl = this.gridPacBranch;
     this.gvPacBranch.Name = "gvPacBranch";
     this.gvPacBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPacBranch.OptionsBehavior.Editable = false;
     this.gvPacBranch.OptionsCustomization.AllowFilter = false;
     this.gvPacBranch.OptionsSelection.MultiSelect = true;
     this.gvPacBranch.OptionsView.ShowGroupPanel = false;
     this.gvPacBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn35, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn35
     //
     this.gridColumn35.Caption = "Branch";
     this.gridColumn35.FieldName = "strBranchCode";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Visible = true;
     this.gridColumn35.VisibleIndex = 0;
     this.gridColumn35.Width = 107;
     //
     // gridColumn36
     //
     this.gridColumn36.Caption = "Branch Name";
     this.gridColumn36.FieldName = "strBranchName";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.Visible = true;
     this.gridColumn36.VisibleIndex = 1;
     this.gridColumn36.Width = 279;
     //
     // frmPackage
     //
     this.BackColor = System.Drawing.Color.White;
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(982, 600);
     this.Controls.Add(this.grpPackageService);
     this.Controls.Add(this.grpMDPackageTop);
     this.Controls.Add(this.grpPackageClass);
     this.Controls.Add(this.GroupCreditPackage);
     this.Controls.Add(this.grpBranch);
     this.Controls.Add(this.PackageGroup);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmPackage";
     this.Text = "frmPackage";
     this.Load += new System.EventHandler(this.frmPackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPackageTop)).EndInit();
     this.grpMDPackageTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ddlPackageCategory.Properties)).EndInit();
     this.Searchpanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackage)).EndInit();
     this.grpPackage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Package)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Package)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_DurationUnit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Peak)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StudentPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Category)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_GIRO)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Sell)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Peak_1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StuPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_RestUpgrade)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageGroup)).EndInit();
     this.grpPackageGroup.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_PackageGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_PackageGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_pkGroupCatID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCreditPackage)).EndInit();
     this.grpCreditPackage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CreditPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CreditPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CreditCategoryID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageClass)).EndInit();
     this.grpPackageClass.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageClass2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageClass2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageClass)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageClass)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupUseBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupUseBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupUseBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupUseBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageService)).EndInit();
     this.grpPackageService.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageService2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageService2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageUseBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSUseBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageUseBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSUseBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PackageGroup)).EndInit();
     this.PackageGroup.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_GroupEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_GroupEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GrpPackageCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupCreditPackage)).EndInit();
     this.GroupCreditPackage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridCreditRestric)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewmd_CreditRestric)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PackageCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_AllowDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpBranch)).EndInit();
     this.grpBranch.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 40
0
        /// <summary>
        /// �����豸��ʾ��
        /// </summary>
        public override void InitColumns()
        {
            GridColumn column = gridView1.Columns.Add();
            column.Caption = "����Ԫ��";
            column.FieldName = "IName";
            column.SortOrder = DevExpress.Data.ColumnSortOrder.Ascending;
            column.Width = 100;
            column.VisibleIndex = 1;
            column.OptionsColumn.AllowEdit = false;
            DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit comboBox = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            column.ColumnEdit = comboBox;
            string sql = "where Type in('01','74')";
            IList<PSPDEV> xl_list = Services.BaseService.GetList<PSPDEV>("SelectPSPDEVByCondition", sql);
            comboBox.DataSource = xl_list;
            comboBox.DisplayMember = "Name";
            comboBox.ValueMember = "SUID";

            column = gridView1.Columns.Add();
            column.Caption = "��·������";
            column.FieldName = "Name";
            column.Width = 100;
            column.VisibleIndex = 1;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "��·�����";
            column.FieldName = "Number";
            column.Width = 100;
            column.VisibleIndex = 2;
            column.OptionsColumn.AllowEdit = false;
            //column = gridView1.Columns.Add();
            //column.Caption = "�ڵ�����";
            //column.FieldName = "NodeType";
            //column.Width = 100;
            //column.VisibleIndex = 3;
            //column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "������վ";
            column.FieldName = "HuganLine1";
            column.Width = 100;
            column.VisibleIndex = 4;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "���·���ϵ���";
            column.FieldName = "HuganTQ1";
            column.Width = 100;
            column.VisibleIndex = 5;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "���·����ֱ������";
            column.FieldName = "HuganTQ3";
            column.Width = 100;
            column.VisibleIndex = 6;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "��·������";
            column.FieldName = "HuganLine2";
            column.Width = 100;
            column.VisibleIndex = 7;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "����״̬";
            column.FieldName = "KSwitchStatus";
            column.Width = 100;
            column.VisibleIndex = 8;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "��̷�բʱ��";
            column.FieldName = "HuganTQ2";
            column.Width = 100;
            column.VisibleIndex = 9;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "������";
            column.FieldName = "HuganTQ3";
            column.Width = 100;
            column.VisibleIndex =10;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "�޸�ʱ��";
            column.FieldName = "HuganTQ4";
            column.Width = 100;
            column.VisibleIndex = 11;
            column.OptionsColumn.AllowEdit = false;
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition3 = new DevExpress.XtraGrid.StyleFormatCondition();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WishListForm));
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition4 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule3 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule4 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     this.colPacks = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.spinEditPack = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.boxSizedList = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.layoutControl4 = new DevExpress.XtraLayout.LayoutControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.lkRange = new DevExpress.XtraEditors.LookUpEdit();
     this.ShowStockOutCheckBox = new DevExpress.XtraEditors.CheckEdit();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.ItemSelectionPage = new DevExpress.XtraTab.XtraTabPage();
     this.orderGrid = new DevExpress.XtraGrid.GridControl();
     this.gridOrderView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.ColStockCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColItemNameOrderDetail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.colsQtyPerPack = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColUnit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colExpired = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDamaged = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSOH = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColBeginningBalance = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColLoss = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColAdjustment = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColQuantityReceived = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColDOS = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColQuantityNeedMax = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColMaxStockQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColConsumption = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColStockedOut = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ExpireDateEditor = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemButtonEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.spinEditQtyPerPack = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridRecieveView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.VolumeMetricsPage = new DevExpress.XtraTab.XtraTabPage();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.lkContainerTypes = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cboRequiredContainer = new System.Windows.Forms.ComboBox();
     this.lblAvailableVolume = new System.Windows.Forms.Label();
     this.lblVolumeNeeded = new System.Windows.Forms.Label();
     this.volumetricsCanvas = new System.Windows.Forms.Panel();
     this.grdVolumeGrid = new DevExpress.XtraGrid.GridControl();
     this.grdVolumeGridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.Height = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Width = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Depth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Quantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlItem32 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem36 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem37 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem40 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem39 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem33 = new DevExpress.XtraLayout.LayoutControlItem();
     this.NoOfVisitLabel = new DevExpress.XtraEditors.LabelControl();
     this.LastVisitlabel = new DevExpress.XtraEditors.LabelControl();
     this.progressBarControl = new DevExpress.XtraEditors.ProgressBarControl();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.lkType = new DevExpress.XtraEditors.LookUpEdit();
     this.lkOwnership = new DevExpress.XtraEditors.LookUpEdit();
     this.lkWoreda = new DevExpress.XtraEditors.LookUpEdit();
     this.txtRemark = new DevExpress.XtraEditors.MemoEdit();
     this.txtReceivedBy = new DevExpress.XtraEditors.TextEdit();
     this.txtTin = new DevExpress.XtraEditors.TextEdit();
     this.txtVatRegistration = new DevExpress.XtraEditors.TextEdit();
     this.txtRegistrationNo = new DevExpress.XtraEditors.TextEdit();
     this.txtLetterNumber = new DevExpress.XtraEditors.TextEdit();
     this.txtRefNo = new DevExpress.XtraEditors.TextEdit();
     this.btnSaveOrder = new DevExpress.XtraEditors.SimpleButton();
     this.btnSaveAndForward = new DevExpress.XtraEditors.SimpleButton();
     this.lkModes = new DevExpress.XtraEditors.LookUpEdit();
     this.txtContactPerson = new DevExpress.XtraEditors.TextEdit();
     this.lkZone = new DevExpress.XtraEditors.LookUpEdit();
     this.lkRegion = new DevExpress.XtraEditors.LookUpEdit();
     this.lblLoadRU = new DevExpress.XtraEditors.LabelControl();
     this.lkCategoires = new DevExpress.XtraEditors.LookUpEdit();
     this.txtItemName = new DevExpress.XtraEditors.TextEdit();
     this.gridItemsChoice = new DevExpress.XtraGrid.GridControl();
     this.gridItemChoiceView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colItemName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn66 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn67 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lkPaymentType = new DevExpress.XtraEditors.LookUpEdit();
     this.lkForFacility = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lkPeriod = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.lkColStartDate_EndDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lkRequisitionType = new DevExpress.XtraEditors.LookUpEdit();
     this.btnCancelOne = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem25 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutReload = new DevExpress.XtraLayout.LayoutControlItem();
     this.progressBarlayoutControlItem = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem23 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem22 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem21 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup14 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem29 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem30 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem19 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem14 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.simpleSeparator2 = new DevExpress.XtraLayout.SimpleSeparator();
     this.LastVisitlayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.NoRequisitionlayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
     this.ShowStockOutCheckBoxLayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup5 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.RequisitionTypelayoutControlItem = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.RangeLayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem52 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem31 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem7 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem38 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.simpleSeparator3 = new DevExpress.XtraLayout.SimpleSeparator();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem20 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem8 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem18 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem34 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem35 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem9 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lkPeriodlayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutForFacility = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.emptySpaceItem15 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup8 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup9 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup10 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem10 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem22 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem23 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printOrder = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.dxValidation1stTab = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem26 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem27 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem28 = new DevExpress.XtraLayout.LayoutControlItem();
     this.simpleLabelItem13 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem1 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem2 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditPack)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl4)).BeginInit();
     this.layoutControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkRange.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShowStockOutCheckBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.ItemSelectionPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.orderGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrderView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditQtyPerPack)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridRecieveView1)).BeginInit();
     this.VolumeMetricsPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkContainerTypes.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdVolumeGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdVolumeGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem33)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkOwnership.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkWoreda.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceivedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTin.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVatRegistration.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRegistrationNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLetterNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkModes.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkZone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRegion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkCategoires.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemsChoice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemChoiceView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPaymentType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkForFacility.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPeriod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRequisitionType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutReload)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarlayoutControlItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastVisitlayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoRequisitionlayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShowStockOutCheckBoxLayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RequisitionTypelayoutControlItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RangeLayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem52)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem34)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPeriodlayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutForFacility)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printOrder.ImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidation1stTab)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem2)).BeginInit();
     this.SuspendLayout();
     //
     // colPacks
     //
     this.colPacks.Caption = "Quantity";
     this.colPacks.ColumnEdit = this.repositoryItemTextEdit1;
     this.colPacks.FieldName = "Pack";
     this.colPacks.Name = "colPacks";
     this.colPacks.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colPacks.OptionsColumn.FixedWidth = true;
     this.colPacks.ToolTip = "Requested Quantity";
     this.colPacks.Visible = true;
     this.colPacks.VisibleIndex = 14;
     this.colPacks.Width = 40;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Mask.EditMask = "\\d{0,6}(\\.\\d{0,4})";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // spinEditPack
     //
     this.spinEditPack.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.spinEditPack.AutoHeight = false;
     this.spinEditPack.DisplayFormat.FormatString = "#,##0.##";
     this.spinEditPack.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.spinEditPack.EditFormat.FormatString = "#,##0.##";
     this.spinEditPack.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.spinEditPack.IsFloatValue = false;
     this.spinEditPack.MaxValue = new decimal(new int[] {
     100000000,
     0,
     0,
     0});
     this.spinEditPack.Name = "spinEditPack";
     //
     // boxSizedList
     //
     this.boxSizedList.AutoHeight = false;
     this.boxSizedList.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.boxSizedList.DisplayMember = "Name";
     this.boxSizedList.Name = "boxSizedList";
     this.boxSizedList.ValueMember = "ID";
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // repositoryItemDateEdit3
     //
     this.repositoryItemDateEdit3.AutoHeight = false;
     this.repositoryItemDateEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit3.EditFormat.FormatString = "mm-DD-YYYY";
     this.repositoryItemDateEdit3.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit3.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.DisplayText;
     this.repositoryItemDateEdit3.Name = "repositoryItemDateEdit3";
     this.repositoryItemDateEdit3.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemButtonEdit4
     //
     this.repositoryItemButtonEdit4.AutoHeight = false;
     this.repositoryItemButtonEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemButtonEdit4.Name = "repositoryItemButtonEdit4";
     this.repositoryItemButtonEdit4.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // layoutControl4
     //
     this.layoutControl4.AllowCustomizationMenu = false;
     this.layoutControl4.Controls.Add(this.labelControl4);
     this.layoutControl4.Controls.Add(this.labelControl3);
     this.layoutControl4.Controls.Add(this.labelControl2);
     this.layoutControl4.Controls.Add(this.labelControl1);
     this.layoutControl4.Controls.Add(this.lkRange);
     this.layoutControl4.Controls.Add(this.ShowStockOutCheckBox);
     this.layoutControl4.Controls.Add(this.xtraTabControl1);
     this.layoutControl4.Controls.Add(this.NoOfVisitLabel);
     this.layoutControl4.Controls.Add(this.LastVisitlabel);
     this.layoutControl4.Controls.Add(this.progressBarControl);
     this.layoutControl4.Controls.Add(this.simpleButton1);
     this.layoutControl4.Controls.Add(this.lkType);
     this.layoutControl4.Controls.Add(this.lkOwnership);
     this.layoutControl4.Controls.Add(this.lkWoreda);
     this.layoutControl4.Controls.Add(this.txtRemark);
     this.layoutControl4.Controls.Add(this.txtReceivedBy);
     this.layoutControl4.Controls.Add(this.txtTin);
     this.layoutControl4.Controls.Add(this.txtVatRegistration);
     this.layoutControl4.Controls.Add(this.txtRegistrationNo);
     this.layoutControl4.Controls.Add(this.txtLetterNumber);
     this.layoutControl4.Controls.Add(this.txtRefNo);
     this.layoutControl4.Controls.Add(this.btnSaveOrder);
     this.layoutControl4.Controls.Add(this.btnSaveAndForward);
     this.layoutControl4.Controls.Add(this.lkModes);
     this.layoutControl4.Controls.Add(this.txtContactPerson);
     this.layoutControl4.Controls.Add(this.lkZone);
     this.layoutControl4.Controls.Add(this.lkRegion);
     this.layoutControl4.Controls.Add(this.lblLoadRU);
     this.layoutControl4.Controls.Add(this.lkCategoires);
     this.layoutControl4.Controls.Add(this.txtItemName);
     this.layoutControl4.Controls.Add(this.gridItemsChoice);
     this.layoutControl4.Controls.Add(this.lkPaymentType);
     this.layoutControl4.Controls.Add(this.lkForFacility);
     this.layoutControl4.Controls.Add(this.lkPeriod);
     this.layoutControl4.Controls.Add(this.lkRequisitionType);
     this.layoutControl4.Controls.Add(this.btnCancelOne);
     this.layoutControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl4.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem24,
     this.layoutControlItem25,
     this.layoutReload,
     this.progressBarlayoutControlItem,
     this.layoutControlItem23,
     this.layoutControlItem22,
     this.layoutControlItem21,
     this.layoutControlItem13});
     this.layoutControl4.Location = new System.Drawing.Point(0, 0);
     this.layoutControl4.Name = "layoutControl4";
     this.layoutControl4.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(59, 358, 345, 729);
     this.layoutControl4.OptionsView.ShareLookAndFeelWithChildren = false;
     this.layoutControl4.Root = this.layoutControlGroup14;
     this.layoutControl4.Size = new System.Drawing.Size(1350, 393);
     this.layoutControl4.TabIndex = 31;
     this.layoutControl4.Text = "layoutControl4";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(75, 16);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(189, 13);
     this.labelControl4.TabIndex = 53;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(899, 4);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(93, 13);
     this.labelControl3.TabIndex = 52;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(707, 4);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(107, 13);
     this.labelControl2.TabIndex = 51;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(523, 4);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(113, 13);
     this.labelControl1.TabIndex = 50;
     //
     // lkRange
     //
     this.lkRange.Enabled = false;
     this.lkRange.Location = new System.Drawing.Point(308, 38);
     this.lkRange.Name = "lkRange";
     this.lkRange.Properties.AllowMouseWheel = false;
     this.lkRange.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRange.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Range", "History Detail")});
     this.lkRange.Properties.DisplayMember = "Range";
     this.lkRange.Properties.NullText = "Range";
     this.lkRange.Properties.PopupWidth = 100;
     this.lkRange.Properties.ShowFooter = false;
     this.lkRange.Properties.ValueMember = "Value";
     this.lkRange.Size = new System.Drawing.Size(102, 20);
     this.lkRange.TabIndex = 46;
     this.lkRange.EditValueChanged += new System.EventHandler(this.lkRange_EditValueChanged);
     //
     // ShowStockOutCheckBox
     //
     this.ShowStockOutCheckBox.Location = new System.Drawing.Point(446, 107);
     this.ShowStockOutCheckBox.Name = "ShowStockOutCheckBox";
     this.ShowStockOutCheckBox.Properties.Caption = "Show Stock Out";
     this.ShowStockOutCheckBox.Size = new System.Drawing.Size(277, 19);
     this.ShowStockOutCheckBox.TabIndex = 49;
     this.ShowStockOutCheckBox.CheckedChanged += new System.EventHandler(this.ShowStockOutCheckBox_CheckedChanged);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(432, 143);
     this.xtraTabControl1.Margin = new System.Windows.Forms.Padding(0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.ItemSelectionPage;
     this.xtraTabControl1.Size = new System.Drawing.Size(916, 222);
     this.xtraTabControl1.TabIndex = 48;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.ItemSelectionPage,
     this.VolumeMetricsPage});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     this.xtraTabControl1.Click += new System.EventHandler(this.xtraTabControl1_Click);
     //
     // ItemSelectionPage
     //
     this.ItemSelectionPage.Controls.Add(this.orderGrid);
     this.ItemSelectionPage.Name = "ItemSelectionPage";
     this.ItemSelectionPage.Size = new System.Drawing.Size(910, 194);
     this.ItemSelectionPage.Text = "Selection";
     //
     // orderGrid
     //
     this.orderGrid.Dock = System.Windows.Forms.DockStyle.Fill;
     this.orderGrid.ImeMode = System.Windows.Forms.ImeMode.On;
     this.orderGrid.Location = new System.Drawing.Point(0, 0);
     this.orderGrid.MainView = this.gridOrderView;
     this.orderGrid.Margin = new System.Windows.Forms.Padding(0);
     this.orderGrid.Name = "orderGrid";
     this.orderGrid.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.ExpireDateEditor,
     this.repositoryItemButtonEdit2,
     this.spinEditPack,
     this.spinEditQtyPerPack,
     this.repositoryItemTextEdit1,
     this.repositoryItemMemoEdit1});
     this.orderGrid.Size = new System.Drawing.Size(910, 194);
     this.orderGrid.TabIndex = 11;
     this.orderGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridOrderView,
     this.gridRecieveView1});
     this.orderGrid.Click += new System.EventHandler(this.orderGrid_Click);
     //
     // gridOrderView
     //
     this.gridOrderView.Appearance.FocusedCell.BackColor = System.Drawing.Color.SkyBlue;
     this.gridOrderView.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gridOrderView.Appearance.FocusedRow.BackColor = System.Drawing.Color.CornflowerBlue;
     this.gridOrderView.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridOrderView.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.gridOrderView.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridOrderView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColStockCode,
     this.ColItemNameOrderDetail,
     this.colsQtyPerPack,
     this.ColUnit,
     this.colExpired,
     this.colDamaged,
     this.colSOH,
     this.ColBeginningBalance,
     this.ColLoss,
     this.ColAdjustment,
     this.ColQuantityReceived,
     this.ColDOS,
     this.ColQuantityNeedMax,
     this.ColMaxStockQuantity,
     this.ColConsumption,
     this.colPacks,
     this.ColStockedOut});
     styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition1.Appearance.Options.UseBackColor = true;
     styleFormatCondition1.Column = this.colPacks;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "[SKUBU] is null";
     styleFormatCondition2.Appearance.ForeColor = System.Drawing.Color.Silver;
     styleFormatCondition2.Appearance.Options.UseForeColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition2.Expression = "[StockedOut] == 1";
     styleFormatCondition3.Appearance.ForeColor = System.Drawing.Color.Silver;
     styleFormatCondition3.Appearance.Options.UseForeColor = true;
     styleFormatCondition3.ApplyToRow = true;
     styleFormatCondition3.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition3.Expression = "[StockedOut] == 1";
     this.gridOrderView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1,
     styleFormatCondition2,
     styleFormatCondition3});
     this.gridOrderView.GridControl = this.orderGrid;
     this.gridOrderView.IndicatorWidth = 40;
     this.gridOrderView.Name = "gridOrderView";
     this.gridOrderView.OptionsCustomization.AllowColumnMoving = false;
     this.gridOrderView.OptionsCustomization.AllowColumnResizing = false;
     this.gridOrderView.OptionsCustomization.AllowFilter = false;
     this.gridOrderView.OptionsCustomization.AllowQuickHideColumns = false;
     this.gridOrderView.OptionsCustomization.AllowSort = false;
     this.gridOrderView.OptionsMenu.EnableColumnMenu = false;
     this.gridOrderView.OptionsMenu.EnableFooterMenu = false;
     this.gridOrderView.OptionsMenu.EnableGroupPanelMenu = false;
     this.gridOrderView.OptionsView.AllowCellMerge = true;
     this.gridOrderView.OptionsView.RowAutoHeight = true;
     this.gridOrderView.OptionsView.ShowGroupPanel = false;
     this.gridOrderView.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridOrderView_CustomDrawRowIndicator);
     this.gridOrderView.CustomDrawCell += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.gridOrderView_CustomDrawCell);
     this.gridOrderView.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.gridOrderView_ShowingEditor);
     this.gridOrderView.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.OnOrderCellValueChanged);
     //
     // ColStockCode
     //
     this.ColStockCode.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ColStockCode.AppearanceCell.Options.UseBackColor = true;
     this.ColStockCode.Caption = "Stock Code";
     this.ColStockCode.FieldName = "StockCode";
     this.ColStockCode.Name = "ColStockCode";
     this.ColStockCode.OptionsColumn.AllowEdit = false;
     this.ColStockCode.OptionsColumn.AllowFocus = false;
     this.ColStockCode.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.OptionsColumn.AllowIncrementalSearch = false;
     this.ColStockCode.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.OptionsColumn.AllowMove = false;
     this.ColStockCode.OptionsColumn.AllowShowHide = false;
     this.ColStockCode.OptionsColumn.AllowSize = false;
     this.ColStockCode.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.OptionsColumn.FixedWidth = true;
     this.ColStockCode.OptionsColumn.ShowInCustomizationForm = false;
     this.ColStockCode.OptionsColumn.ShowInExpressionEditor = false;
     this.ColStockCode.OptionsFilter.AllowAutoFilter = false;
     this.ColStockCode.OptionsFilter.AllowFilter = false;
     this.ColStockCode.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.Visible = true;
     this.ColStockCode.VisibleIndex = 0;
     this.ColStockCode.Width = 34;
     //
     // ColItemNameOrderDetail
     //
     this.ColItemNameOrderDetail.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ColItemNameOrderDetail.AppearanceCell.Options.UseBackColor = true;
     this.ColItemNameOrderDetail.AppearanceCell.Options.UseTextOptions = true;
     this.ColItemNameOrderDetail.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.ColItemNameOrderDetail.AppearanceHeader.Options.UseTextOptions = true;
     this.ColItemNameOrderDetail.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.ColItemNameOrderDetail.Caption = "Item";
     this.ColItemNameOrderDetail.ColumnEdit = this.repositoryItemMemoEdit1;
     this.ColItemNameOrderDetail.FieldName = "FullItemName";
     this.ColItemNameOrderDetail.Name = "ColItemNameOrderDetail";
     this.ColItemNameOrderDetail.OptionsColumn.AllowEdit = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowFocus = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.OptionsColumn.AllowIncrementalSearch = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.OptionsColumn.AllowMove = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowShowHide = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowSize = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.OptionsColumn.FixedWidth = true;
     this.ColItemNameOrderDetail.OptionsColumn.ShowInCustomizationForm = false;
     this.ColItemNameOrderDetail.OptionsColumn.ShowInExpressionEditor = false;
     this.ColItemNameOrderDetail.OptionsFilter.AllowAutoFilter = false;
     this.ColItemNameOrderDetail.OptionsFilter.AllowFilter = false;
     this.ColItemNameOrderDetail.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.ColItemNameOrderDetail.ToolTip = "FullItemName";
     this.ColItemNameOrderDetail.Visible = true;
     this.ColItemNameOrderDetail.VisibleIndex = 1;
     this.ColItemNameOrderDetail.Width = 171;
     //
     // repositoryItemMemoEdit1
     //
     this.repositoryItemMemoEdit1.LinesCount = 1;
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     //
     // colsQtyPerPack
     //
     this.colsQtyPerPack.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.colsQtyPerPack.AppearanceCell.Options.UseBackColor = true;
     this.colsQtyPerPack.Caption = "Quantity Per Pack";
     this.colsQtyPerPack.ColumnEdit = this.spinEditPack;
     this.colsQtyPerPack.FieldName = "QtyPerPack";
     this.colsQtyPerPack.Name = "colsQtyPerPack";
     this.colsQtyPerPack.OptionsColumn.AllowEdit = false;
     this.colsQtyPerPack.OptionsColumn.AllowFocus = false;
     this.colsQtyPerPack.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.OptionsColumn.AllowIncrementalSearch = false;
     this.colsQtyPerPack.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.OptionsColumn.AllowMove = false;
     this.colsQtyPerPack.OptionsColumn.AllowShowHide = false;
     this.colsQtyPerPack.OptionsColumn.AllowSize = false;
     this.colsQtyPerPack.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.OptionsColumn.FixedWidth = true;
     this.colsQtyPerPack.OptionsColumn.ShowInCustomizationForm = false;
     this.colsQtyPerPack.OptionsColumn.ShowInExpressionEditor = false;
     this.colsQtyPerPack.OptionsFilter.AllowAutoFilter = false;
     this.colsQtyPerPack.OptionsFilter.AllowFilter = false;
     this.colsQtyPerPack.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.Width = 100;
     //
     // ColUnit
     //
     this.ColUnit.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ColUnit.AppearanceCell.Options.UseBackColor = true;
     this.ColUnit.Caption = "Unit";
     this.ColUnit.FieldName = "Unit";
     this.ColUnit.Name = "ColUnit";
     this.ColUnit.OptionsColumn.AllowEdit = false;
     this.ColUnit.OptionsColumn.AllowFocus = false;
     this.ColUnit.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.OptionsColumn.AllowIncrementalSearch = false;
     this.ColUnit.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.OptionsColumn.AllowMove = false;
     this.ColUnit.OptionsColumn.AllowShowHide = false;
     this.ColUnit.OptionsColumn.AllowSize = false;
     this.ColUnit.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.OptionsColumn.FixedWidth = true;
     this.ColUnit.OptionsColumn.ShowInCustomizationForm = false;
     this.ColUnit.OptionsColumn.ShowInExpressionEditor = false;
     this.ColUnit.OptionsFilter.AllowAutoFilter = false;
     this.ColUnit.OptionsFilter.AllowFilter = false;
     this.ColUnit.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.Visible = true;
     this.ColUnit.VisibleIndex = 2;
     this.ColUnit.Width = 53;
     //
     // colExpired
     //
     this.colExpired.Caption = "Expired";
     this.colExpired.DisplayFormat.FormatString = "#,###.##";
     this.colExpired.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colExpired.FieldName = "ExpiredStock";
     this.colExpired.Name = "colExpired";
     this.colExpired.OptionsColumn.AllowEdit = false;
     this.colExpired.OptionsColumn.AllowFocus = false;
     this.colExpired.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsColumn.AllowIncrementalSearch = false;
     this.colExpired.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsColumn.AllowMove = false;
     this.colExpired.OptionsColumn.AllowShowHide = false;
     this.colExpired.OptionsColumn.AllowSize = false;
     this.colExpired.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsColumn.FixedWidth = true;
     this.colExpired.OptionsColumn.ShowInCustomizationForm = false;
     this.colExpired.OptionsColumn.ShowInExpressionEditor = false;
     this.colExpired.OptionsFilter.AllowAutoFilter = false;
     this.colExpired.OptionsFilter.AllowFilter = false;
     this.colExpired.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.ToolTip = "Expired Stock";
     this.colExpired.Visible = true;
     this.colExpired.VisibleIndex = 3;
     this.colExpired.Width = 39;
     //
     // colDamaged
     //
     this.colDamaged.Caption = "Damaged";
     this.colDamaged.DisplayFormat.FormatString = "#,###.##";
     this.colDamaged.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colDamaged.FieldName = "DamagedStock";
     this.colDamaged.Name = "colDamaged";
     this.colDamaged.OptionsColumn.AllowEdit = false;
     this.colDamaged.OptionsColumn.AllowFocus = false;
     this.colDamaged.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsColumn.AllowIncrementalSearch = false;
     this.colDamaged.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsColumn.AllowMove = false;
     this.colDamaged.OptionsColumn.AllowShowHide = false;
     this.colDamaged.OptionsColumn.AllowSize = false;
     this.colDamaged.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsColumn.FixedWidth = true;
     this.colDamaged.OptionsColumn.ShowInCustomizationForm = false;
     this.colDamaged.OptionsColumn.ShowInExpressionEditor = false;
     this.colDamaged.OptionsFilter.AllowAutoFilter = false;
     this.colDamaged.OptionsFilter.AllowFilter = false;
     this.colDamaged.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.ToolTip = "Damaged Stock";
     this.colDamaged.Visible = true;
     this.colDamaged.VisibleIndex = 4;
     this.colDamaged.Width = 39;
     //
     // colSOH
     //
     this.colSOH.Caption = "E.B";
     this.colSOH.DisplayFormat.FormatString = "#,###.##";
     this.colSOH.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colSOH.FieldName = "StockOnHand";
     this.colSOH.Name = "colSOH";
     this.colSOH.OptionsColumn.AllowEdit = false;
     this.colSOH.OptionsColumn.AllowFocus = false;
     this.colSOH.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsColumn.AllowIncrementalSearch = false;
     this.colSOH.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsColumn.AllowMove = false;
     this.colSOH.OptionsColumn.AllowShowHide = false;
     this.colSOH.OptionsColumn.AllowSize = false;
     this.colSOH.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsColumn.FixedWidth = true;
     this.colSOH.OptionsColumn.ShowInCustomizationForm = false;
     this.colSOH.OptionsColumn.ShowInExpressionEditor = false;
     this.colSOH.OptionsFilter.AllowAutoFilter = false;
     this.colSOH.OptionsFilter.AllowFilter = false;
     this.colSOH.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.ToolTip = "Remaining Stock On Hand (Ending Balance)";
     this.colSOH.Visible = true;
     this.colSOH.VisibleIndex = 8;
     this.colSOH.Width = 39;
     //
     // ColBeginningBalance
     //
     this.ColBeginningBalance.Caption = "b.B";
     this.ColBeginningBalance.DisplayFormat.FormatString = "#,###.##";
     this.ColBeginningBalance.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColBeginningBalance.FieldName = "BeginningBalance";
     this.ColBeginningBalance.Name = "ColBeginningBalance";
     this.ColBeginningBalance.OptionsColumn.AllowEdit = false;
     this.ColBeginningBalance.OptionsColumn.AllowFocus = false;
     this.ColBeginningBalance.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.OptionsColumn.AllowIncrementalSearch = false;
     this.ColBeginningBalance.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.OptionsColumn.AllowMove = false;
     this.ColBeginningBalance.OptionsColumn.AllowShowHide = false;
     this.ColBeginningBalance.OptionsColumn.AllowSize = false;
     this.ColBeginningBalance.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.OptionsColumn.FixedWidth = true;
     this.ColBeginningBalance.OptionsColumn.ShowInCustomizationForm = false;
     this.ColBeginningBalance.OptionsColumn.ShowInExpressionEditor = false;
     this.ColBeginningBalance.OptionsFilter.AllowAutoFilter = false;
     this.ColBeginningBalance.OptionsFilter.AllowFilter = false;
     this.ColBeginningBalance.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.ToolTip = "Beginning Balance";
     this.ColBeginningBalance.Visible = true;
     this.ColBeginningBalance.VisibleIndex = 5;
     this.ColBeginningBalance.Width = 39;
     //
     // ColLoss
     //
     this.ColLoss.Caption = "Loss";
     this.ColLoss.DisplayFormat.FormatString = "#,###.##";
     this.ColLoss.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColLoss.FieldName = "Loss";
     this.ColLoss.Name = "ColLoss";
     this.ColLoss.OptionsColumn.AllowEdit = false;
     this.ColLoss.OptionsColumn.AllowFocus = false;
     this.ColLoss.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.OptionsColumn.AllowIncrementalSearch = false;
     this.ColLoss.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.OptionsColumn.AllowMove = false;
     this.ColLoss.OptionsColumn.AllowShowHide = false;
     this.ColLoss.OptionsColumn.AllowSize = false;
     this.ColLoss.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.OptionsColumn.FixedWidth = true;
     this.ColLoss.OptionsColumn.ShowInCustomizationForm = false;
     this.ColLoss.OptionsColumn.ShowInExpressionEditor = false;
     this.ColLoss.OptionsFilter.AllowAutoFilter = false;
     this.ColLoss.OptionsFilter.AllowFilter = false;
     this.ColLoss.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.ToolTip = "Loss";
     this.ColLoss.Visible = true;
     this.ColLoss.VisibleIndex = 6;
     this.ColLoss.Width = 39;
     //
     // ColAdjustment
     //
     this.ColAdjustment.Caption = "Adjust.";
     this.ColAdjustment.DisplayFormat.FormatString = "#,###.##";
     this.ColAdjustment.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColAdjustment.FieldName = "Adjustment";
     this.ColAdjustment.Name = "ColAdjustment";
     this.ColAdjustment.OptionsColumn.AllowEdit = false;
     this.ColAdjustment.OptionsColumn.AllowFocus = false;
     this.ColAdjustment.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.OptionsColumn.AllowIncrementalSearch = false;
     this.ColAdjustment.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.OptionsColumn.AllowMove = false;
     this.ColAdjustment.OptionsColumn.AllowShowHide = false;
     this.ColAdjustment.OptionsColumn.AllowSize = false;
     this.ColAdjustment.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.OptionsColumn.FixedWidth = true;
     this.ColAdjustment.OptionsColumn.ShowInCustomizationForm = false;
     this.ColAdjustment.OptionsColumn.ShowInExpressionEditor = false;
     this.ColAdjustment.OptionsFilter.AllowAutoFilter = false;
     this.ColAdjustment.OptionsFilter.AllowFilter = false;
     this.ColAdjustment.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.ToolTip = "Adjustment";
     this.ColAdjustment.Visible = true;
     this.ColAdjustment.VisibleIndex = 7;
     this.ColAdjustment.Width = 39;
     //
     // ColQuantityReceived
     //
     this.ColQuantityReceived.Caption = "Q.R";
     this.ColQuantityReceived.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColQuantityReceived.FieldName = "QuantityReceived";
     this.ColQuantityReceived.Name = "ColQuantityReceived";
     this.ColQuantityReceived.OptionsColumn.AllowEdit = false;
     this.ColQuantityReceived.OptionsColumn.AllowFocus = false;
     this.ColQuantityReceived.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.OptionsColumn.AllowIncrementalSearch = false;
     this.ColQuantityReceived.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.OptionsColumn.AllowMove = false;
     this.ColQuantityReceived.OptionsColumn.AllowShowHide = false;
     this.ColQuantityReceived.OptionsColumn.AllowSize = false;
     this.ColQuantityReceived.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.OptionsColumn.FixedWidth = true;
     this.ColQuantityReceived.OptionsColumn.ShowInCustomizationForm = false;
     this.ColQuantityReceived.OptionsColumn.ShowInExpressionEditor = false;
     this.ColQuantityReceived.OptionsFilter.AllowAutoFilter = false;
     this.ColQuantityReceived.OptionsFilter.AllowFilter = false;
     this.ColQuantityReceived.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.ToolTip = "Quantity Received";
     this.ColQuantityReceived.Visible = true;
     this.ColQuantityReceived.VisibleIndex = 9;
     this.ColQuantityReceived.Width = 39;
     //
     // ColDOS
     //
     this.ColDOS.Caption = "DoS";
     this.ColDOS.DisplayFormat.FormatString = "#,###.##";
     this.ColDOS.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColDOS.FieldName = "DOS";
     this.ColDOS.Name = "ColDOS";
     this.ColDOS.OptionsColumn.AllowEdit = false;
     this.ColDOS.OptionsColumn.AllowFocus = false;
     this.ColDOS.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.OptionsColumn.AllowIncrementalSearch = false;
     this.ColDOS.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.OptionsColumn.AllowMove = false;
     this.ColDOS.OptionsColumn.AllowShowHide = false;
     this.ColDOS.OptionsColumn.AllowSize = false;
     this.ColDOS.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.OptionsColumn.FixedWidth = true;
     this.ColDOS.OptionsColumn.ShowInCustomizationForm = false;
     this.ColDOS.OptionsColumn.ShowInExpressionEditor = false;
     this.ColDOS.OptionsFilter.AllowAutoFilter = false;
     this.ColDOS.OptionsFilter.AllowFilter = false;
     this.ColDOS.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.ToolTip = "Days Out Of Stock";
     this.ColDOS.Visible = true;
     this.ColDOS.VisibleIndex = 10;
     this.ColDOS.Width = 39;
     //
     // ColQuantityNeedMax
     //
     this.ColQuantityNeedMax.Caption = "Q.N.M";
     this.ColQuantityNeedMax.DisplayFormat.FormatString = "#,###.##";
     this.ColQuantityNeedMax.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColQuantityNeedMax.FieldName = "QuantityNeedMax";
     this.ColQuantityNeedMax.Name = "ColQuantityNeedMax";
     this.ColQuantityNeedMax.OptionsColumn.AllowEdit = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowFocus = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.OptionsColumn.AllowIncrementalSearch = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.OptionsColumn.AllowMove = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowShowHide = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowSize = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.OptionsColumn.FixedWidth = true;
     this.ColQuantityNeedMax.OptionsColumn.ReadOnly = true;
     this.ColQuantityNeedMax.OptionsColumn.ShowInCustomizationForm = false;
     this.ColQuantityNeedMax.OptionsColumn.ShowInExpressionEditor = false;
     this.ColQuantityNeedMax.OptionsFilter.AllowAutoFilter = false;
     this.ColQuantityNeedMax.OptionsFilter.AllowFilter = false;
     this.ColQuantityNeedMax.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.ToolTip = "Quantity Need To Reach Max =  M.S.Q - E.B";
     this.ColQuantityNeedMax.Visible = true;
     this.ColQuantityNeedMax.VisibleIndex = 11;
     this.ColQuantityNeedMax.Width = 57;
     //
     // ColMaxStockQuantity
     //
     this.ColMaxStockQuantity.Caption = "M.S.Q";
     this.ColMaxStockQuantity.DisplayFormat.FormatString = "#,###.##";
     this.ColMaxStockQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColMaxStockQuantity.FieldName = "MaxStockQuantity";
     this.ColMaxStockQuantity.Name = "ColMaxStockQuantity";
     this.ColMaxStockQuantity.OptionsColumn.AllowEdit = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowFocus = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.OptionsColumn.AllowIncrementalSearch = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.OptionsColumn.AllowMove = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowShowHide = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowSize = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.OptionsColumn.FixedWidth = true;
     this.ColMaxStockQuantity.OptionsColumn.ReadOnly = true;
     this.ColMaxStockQuantity.OptionsColumn.ShowInCustomizationForm = false;
     this.ColMaxStockQuantity.OptionsColumn.ShowInExpressionEditor = false;
     this.ColMaxStockQuantity.OptionsFilter.AllowAutoFilter = false;
     this.ColMaxStockQuantity.OptionsFilter.AllowFilter = false;
     this.ColMaxStockQuantity.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.ToolTip = "Max Stock Quantity  = (120*Consum)/(60-DOS)";
     this.ColMaxStockQuantity.Visible = true;
     this.ColMaxStockQuantity.VisibleIndex = 12;
     this.ColMaxStockQuantity.Width = 39;
     //
     // ColConsumption
     //
     this.ColConsumption.Caption = "Consum";
     this.ColConsumption.DisplayFormat.FormatString = "#,###.##";
     this.ColConsumption.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColConsumption.FieldName = "Consumption";
     this.ColConsumption.Name = "ColConsumption";
     this.ColConsumption.OptionsColumn.AllowEdit = false;
     this.ColConsumption.OptionsColumn.AllowFocus = false;
     this.ColConsumption.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.OptionsColumn.AllowIncrementalSearch = false;
     this.ColConsumption.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.OptionsColumn.AllowMove = false;
     this.ColConsumption.OptionsColumn.AllowShowHide = false;
     this.ColConsumption.OptionsColumn.AllowSize = false;
     this.ColConsumption.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.OptionsColumn.FixedWidth = true;
     this.ColConsumption.OptionsColumn.ReadOnly = true;
     this.ColConsumption.OptionsColumn.ShowInCustomizationForm = false;
     this.ColConsumption.OptionsColumn.ShowInExpressionEditor = false;
     this.ColConsumption.OptionsFilter.AllowAutoFilter = false;
     this.ColConsumption.OptionsFilter.AllowFilter = false;
     this.ColConsumption.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.ToolTip = "Calculated Consumption =   b.B + Q.R +/- (Loss+Adjust) - E.B";
     this.ColConsumption.Visible = true;
     this.ColConsumption.VisibleIndex = 13;
     this.ColConsumption.Width = 39;
     //
     // ColStockedOut
     //
     this.ColStockedOut.Caption = "StockedOut";
     this.ColStockedOut.FieldName = "StockedOut";
     this.ColStockedOut.Name = "ColStockedOut";
     this.ColStockedOut.OptionsColumn.AllowEdit = false;
     this.ColStockedOut.OptionsColumn.AllowFocus = false;
     this.ColStockedOut.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockedOut.OptionsColumn.AllowIncrementalSearch = false;
     this.ColStockedOut.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockedOut.OptionsColumn.AllowMove = false;
     this.ColStockedOut.OptionsColumn.AllowShowHide = false;
     this.ColStockedOut.OptionsColumn.AllowSize = false;
     this.ColStockedOut.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockedOut.OptionsColumn.FixedWidth = true;
     this.ColStockedOut.OptionsColumn.ShowInCustomizationForm = false;
     this.ColStockedOut.OptionsColumn.ShowInExpressionEditor = false;
     this.ColStockedOut.OptionsFilter.AllowAutoFilter = false;
     this.ColStockedOut.OptionsFilter.AllowFilter = false;
     this.ColStockedOut.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockedOut.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     //
     // ExpireDateEditor
     //
     this.ExpireDateEditor.AutoHeight = false;
     this.ExpireDateEditor.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ExpireDateEditor.DisplayFormat.FormatString = "mm-DD-YYYY";
     this.ExpireDateEditor.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.ExpireDateEditor.EditFormat.FormatString = "mm-DD-YYYY";
     this.ExpireDateEditor.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.ExpireDateEditor.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Value;
     this.ExpireDateEditor.Name = "ExpireDateEditor";
     this.ExpireDateEditor.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemButtonEdit2
     //
     this.repositoryItemButtonEdit2.AutoHeight = false;
     this.repositoryItemButtonEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemButtonEdit2.Name = "repositoryItemButtonEdit2";
     this.repositoryItemButtonEdit2.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // spinEditQtyPerPack
     //
     this.spinEditQtyPerPack.AutoHeight = false;
     this.spinEditQtyPerPack.Name = "spinEditQtyPerPack";
     //
     // gridRecieveView1
     //
     this.gridRecieveView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1});
     this.gridRecieveView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.gridColumn3,
     this.gridColumn1,
     this.gridColumn10,
     this.gridColumn2,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn12,
     this.gridColumn9});
     this.gridRecieveView1.GridControl = this.orderGrid;
     this.gridRecieveView1.Name = "gridRecieveView1";
     this.gridRecieveView1.OptionsView.ShowGroupPanel = false;
     //
     // gridBand1
     //
     this.gridBand1.Caption = "gridBand1";
     this.gridBand1.Columns.Add(this.gridColumn3);
     this.gridBand1.Columns.Add(this.gridColumn1);
     this.gridBand1.Columns.Add(this.gridColumn10);
     this.gridBand1.Columns.Add(this.gridColumn2);
     this.gridBand1.Columns.Add(this.gridColumn4);
     this.gridBand1.Columns.Add(this.gridColumn5);
     this.gridBand1.Columns.Add(this.gridColumn6);
     this.gridBand1.Columns.Add(this.gridColumn7);
     this.gridBand1.Columns.Add(this.gridColumn8);
     this.gridBand1.Columns.Add(this.gridColumn12);
     this.gridBand1.Columns.Add(this.gridColumn9);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 1117;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Stock Code";
     this.gridColumn3.FieldName = "Stock Code";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.AllowFocus = false;
     this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn3.Visible = true;
     this.gridColumn3.Width = 104;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Item Name";
     this.gridColumn1.FieldName = "Item Name";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn1.Visible = true;
     this.gridColumn1.Width = 104;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Manufacturer";
     this.gridColumn10.FieldName = "Manufacturer";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn10.Visible = true;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Pack Qty";
     this.gridColumn2.FieldName = "Pack Qty";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.Visible = true;
     this.gridColumn2.Width = 104;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Reciving Box Size";
     this.gridColumn4.FieldName = "Qty/pack";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn4.Visible = true;
     this.gridColumn4.Width = 104;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "BU Qty";
     this.gridColumn5.FieldName = "BU Qty";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.Visible = true;
     this.gridColumn5.Width = 104;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Unit";
     this.gridColumn6.FieldName = "Unit";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.Visible = true;
     this.gridColumn6.Width = 104;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Price/Pack";
     this.gridColumn7.FieldName = "Price/Pack";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.Visible = true;
     this.gridColumn7.Width = 104;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Batch No";
     this.gridColumn8.FieldName = "Batch No";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn8.Visible = true;
     this.gridColumn8.Width = 144;
     //
     // gridColumn12
     //
     this.gridColumn12.ColumnEdit = this.repositoryItemButtonEdit2;
     this.gridColumn12.ImageAlignment = System.Drawing.StringAlignment.Center;
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn12.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.gridColumn12.Visible = true;
     this.gridColumn12.Width = 25;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Expiry Date";
     this.gridColumn9.ColumnEdit = this.ExpireDateEditor;
     this.gridColumn9.FieldName = "Expiry Date";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn9.Visible = true;
     this.gridColumn9.Width = 145;
     //
     // VolumeMetricsPage
     //
     this.VolumeMetricsPage.Controls.Add(this.layoutControl1);
     this.VolumeMetricsPage.Name = "VolumeMetricsPage";
     this.VolumeMetricsPage.Size = new System.Drawing.Size(910, 194);
     this.VolumeMetricsPage.Text = "Volume Metrics";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.lkContainerTypes);
     this.layoutControl1.Controls.Add(this.cboRequiredContainer);
     this.layoutControl1.Controls.Add(this.lblAvailableVolume);
     this.layoutControl1.Controls.Add(this.lblVolumeNeeded);
     this.layoutControl1.Controls.Add(this.volumetricsCanvas);
     this.layoutControl1.Controls.Add(this.grdVolumeGrid);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem32});
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(845, 218, 250, 350);
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(910, 194);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // lkContainerTypes
     //
     this.lkContainerTypes.EditValue = "Select";
     this.lkContainerTypes.Location = new System.Drawing.Point(89, 12);
     this.lkContainerTypes.Name = "lkContainerTypes";
     this.lkContainerTypes.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkContainerTypes.Properties.DisplayMember = "Name";
     this.lkContainerTypes.Properties.ValueMember = "ShippingContainerTypeID";
     this.lkContainerTypes.Properties.View = this.gridView1;
     this.lkContainerTypes.Size = new System.Drawing.Size(249, 20);
     this.lkContainerTypes.StyleController = this.layoutControl1;
     this.lkContainerTypes.TabIndex = 15;
     this.lkContainerTypes.EditValueChanged += new System.EventHandler(this.lkContainerTypes_EditValueChanged);
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn11,
     this.gridColumn13,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Name";
     this.gridColumn11.FieldName = "Name";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 0;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Height";
     this.gridColumn13.FieldName = "HeightMM";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 1;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Width";
     this.gridColumn16.FieldName = "WidthMM";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 2;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Length";
     this.gridColumn17.FieldName = "LengthMM";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 3;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Weight";
     this.gridColumn18.FieldName = "WeightG";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 4;
     //
     // cboRequiredContainer
     //
     this.cboRequiredContainer.FormattingEnabled = true;
     this.cboRequiredContainer.Location = new System.Drawing.Point(419, 12);
     this.cboRequiredContainer.Name = "cboRequiredContainer";
     this.cboRequiredContainer.Size = new System.Drawing.Size(108, 21);
     this.cboRequiredContainer.TabIndex = 14;
     this.cboRequiredContainer.SelectedIndexChanged += new System.EventHandler(this.cboRequiredContainer_SelectedIndexChanged);
     //
     // lblAvailableVolume
     //
     this.lblAvailableVolume.Location = new System.Drawing.Point(12, 37);
     this.lblAvailableVolume.Name = "lblAvailableVolume";
     this.lblAvailableVolume.Size = new System.Drawing.Size(167, 41);
     this.lblAvailableVolume.TabIndex = 13;
     //
     // lblVolumeNeeded
     //
     this.lblVolumeNeeded.Location = new System.Drawing.Point(183, 37);
     this.lblVolumeNeeded.Name = "lblVolumeNeeded";
     this.lblVolumeNeeded.Size = new System.Drawing.Size(155, 41);
     this.lblVolumeNeeded.TabIndex = 12;
     //
     // volumetricsCanvas
     //
     this.volumetricsCanvas.Location = new System.Drawing.Point(12, 82);
     this.volumetricsCanvas.Name = "volumetricsCanvas";
     this.volumetricsCanvas.Size = new System.Drawing.Size(886, 100);
     this.volumetricsCanvas.TabIndex = 10;
     this.volumetricsCanvas.Paint += new System.Windows.Forms.PaintEventHandler(this.volumetricsCanvas_Paint);
     //
     // grdVolumeGrid
     //
     this.grdVolumeGrid.Location = new System.Drawing.Point(12, 166);
     this.grdVolumeGrid.MainView = this.grdVolumeGridView;
     this.grdVolumeGrid.Name = "grdVolumeGrid";
     this.grdVolumeGrid.Size = new System.Drawing.Size(228, 173);
     this.grdVolumeGrid.TabIndex = 5;
     this.grdVolumeGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grdVolumeGridView});
     this.grdVolumeGrid.Visible = false;
     //
     // grdVolumeGridView
     //
     this.grdVolumeGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Height,
     this.Width,
     this.Depth,
     this.Quantity});
     this.grdVolumeGridView.GridControl = this.grdVolumeGrid;
     this.grdVolumeGridView.Name = "grdVolumeGridView";
     this.grdVolumeGridView.OptionsView.ShowGroupPanel = false;
     this.grdVolumeGridView.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.grdVolumeGridView_CellValueChanged);
     //
     // Height
     //
     this.Height.Caption = "Height";
     this.Height.FieldName = "HeightMM";
     this.Height.Name = "Height";
     this.Height.Visible = true;
     this.Height.VisibleIndex = 0;
     //
     // Width
     //
     this.Width.Caption = "Width";
     this.Width.FieldName = "WidthMM";
     this.Width.Name = "Width";
     this.Width.Visible = true;
     this.Width.VisibleIndex = 1;
     //
     // Depth
     //
     this.Depth.Caption = "Depth";
     this.Depth.FieldName = "DepthMM";
     this.Depth.Name = "Depth";
     this.Depth.Visible = true;
     this.Depth.VisibleIndex = 2;
     //
     // Quantity
     //
     this.Quantity.Caption = "Quantity";
     this.Quantity.FieldName = "Quantity";
     this.Quantity.Name = "Quantity";
     this.Quantity.Visible = true;
     this.Quantity.VisibleIndex = 3;
     //
     // layoutControlItem32
     //
     this.layoutControlItem32.Control = this.grdVolumeGrid;
     this.layoutControlItem32.CustomizationFormText = "layoutControlItem32";
     this.layoutControlItem32.Location = new System.Drawing.Point(0, 154);
     this.layoutControlItem32.MinSize = new System.Drawing.Size(104, 24);
     this.layoutControlItem32.Name = "layoutControlItem32";
     this.layoutControlItem32.Size = new System.Drawing.Size(232, 177);
     this.layoutControlItem32.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem32.Text = "layoutControlItem32";
     this.layoutControlItem32.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem32.TextToControlDistance = 0;
     this.layoutControlItem32.TextVisible = false;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.emptySpaceItem2,
     this.layoutControlItem36,
     this.layoutControlItem37,
     this.layoutControlItem40,
     this.layoutControlItem39,
     this.emptySpaceItem4,
     this.layoutControlItem33});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Size = new System.Drawing.Size(910, 194);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(519, 0);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(371, 25);
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem36
     //
     this.layoutControlItem36.Control = this.volumetricsCanvas;
     this.layoutControlItem36.CustomizationFormText = "layoutControlItem36";
     this.layoutControlItem36.Location = new System.Drawing.Point(0, 70);
     this.layoutControlItem36.Name = "layoutControlItem36";
     this.layoutControlItem36.Size = new System.Drawing.Size(890, 104);
     this.layoutControlItem36.Text = "layoutControlItem36";
     this.layoutControlItem36.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem36.TextToControlDistance = 0;
     this.layoutControlItem36.TextVisible = false;
     //
     // layoutControlItem37
     //
     this.layoutControlItem37.Control = this.cboRequiredContainer;
     this.layoutControlItem37.CustomizationFormText = "Required";
     this.layoutControlItem37.Location = new System.Drawing.Point(330, 0);
     this.layoutControlItem37.Name = "layoutControlItem37";
     this.layoutControlItem37.Size = new System.Drawing.Size(189, 25);
     this.layoutControlItem37.Text = "Required";
     this.layoutControlItem37.TextSize = new System.Drawing.Size(74, 13);
     //
     // layoutControlItem40
     //
     this.layoutControlItem40.Control = this.lblVolumeNeeded;
     this.layoutControlItem40.CustomizationFormText = "layoutControlItem40";
     this.layoutControlItem40.Location = new System.Drawing.Point(171, 25);
     this.layoutControlItem40.Name = "layoutControlItem40";
     this.layoutControlItem40.Size = new System.Drawing.Size(159, 45);
     this.layoutControlItem40.Text = "layoutControlItem40";
     this.layoutControlItem40.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem40.TextToControlDistance = 0;
     this.layoutControlItem40.TextVisible = false;
     //
     // layoutControlItem39
     //
     this.layoutControlItem39.Control = this.lblAvailableVolume;
     this.layoutControlItem39.CustomizationFormText = "layoutControlItem39";
     this.layoutControlItem39.Location = new System.Drawing.Point(0, 25);
     this.layoutControlItem39.Name = "layoutControlItem39";
     this.layoutControlItem39.Size = new System.Drawing.Size(171, 45);
     this.layoutControlItem39.Text = "layoutControlItem39";
     this.layoutControlItem39.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem39.TextToControlDistance = 0;
     this.layoutControlItem39.TextVisible = false;
     //
     // emptySpaceItem4
     //
     this.emptySpaceItem4.AllowHotTrack = false;
     this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4";
     this.emptySpaceItem4.Location = new System.Drawing.Point(330, 25);
     this.emptySpaceItem4.Name = "emptySpaceItem4";
     this.emptySpaceItem4.Size = new System.Drawing.Size(560, 45);
     this.emptySpaceItem4.Text = "emptySpaceItem4";
     this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem33
     //
     this.layoutControlItem33.Control = this.lkContainerTypes;
     this.layoutControlItem33.CustomizationFormText = "Container Type";
     this.layoutControlItem33.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem33.Name = "layoutControlItem33";
     this.layoutControlItem33.Size = new System.Drawing.Size(330, 25);
     this.layoutControlItem33.Text = "Container Type";
     this.layoutControlItem33.TextSize = new System.Drawing.Size(74, 13);
     //
     // NoOfVisitLabel
     //
     this.NoOfVisitLabel.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.NoOfVisitLabel.Location = new System.Drawing.Point(1259, 4);
     this.NoOfVisitLabel.Name = "NoOfVisitLabel";
     this.NoOfVisitLabel.Size = new System.Drawing.Size(87, 13);
     this.NoOfVisitLabel.TabIndex = 47;
     //
     // LastVisitlabel
     //
     this.LastVisitlabel.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LastVisitlabel.Location = new System.Drawing.Point(1050, 4);
     this.LastVisitlabel.Name = "LastVisitlabel";
     this.LastVisitlabel.Size = new System.Drawing.Size(119, 13);
     this.LastVisitlabel.TabIndex = 46;
     //
     // progressBarControl
     //
     this.progressBarControl.Location = new System.Drawing.Point(390, 370);
     this.progressBarControl.Name = "progressBarControl";
     this.progressBarControl.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.progressBarControl.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.progressBarControl.Properties.ProgressViewStyle = DevExpress.XtraEditors.Controls.ProgressViewStyle.Solid;
     this.progressBarControl.Properties.ShowTitle = true;
     this.progressBarControl.Properties.Step = 1;
     this.progressBarControl.Size = new System.Drawing.Size(962, 20);
     this.progressBarControl.TabIndex = 45;
     //
     // simpleButton1
     //
     this.simpleButton1.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton1.Image")));
     this.simpleButton1.Location = new System.Drawing.Point(763, 367);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(142, 22);
     this.simpleButton1.TabIndex = 32;
     this.simpleButton1.Text = "Save Multiple";
     this.simpleButton1.Click += new System.EventHandler(this.multiFacilityDialog_Click);
     //
     // lkType
     //
     this.lkType.Location = new System.Drawing.Point(818, 59);
     this.lkType.Name = "lkType";
     this.lkType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "Name"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "Name28", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lkType.Properties.DisplayMember = "Name";
     this.lkType.Properties.NullText = "Select Institution Type";
     this.lkType.Properties.ShowFooter = false;
     this.lkType.Properties.ShowHeader = false;
     this.lkType.Properties.ValueMember = "ID";
     this.lkType.Size = new System.Drawing.Size(211, 20);
     this.lkType.TabIndex = 45;
     this.lkType.EditValueChanged += new System.EventHandler(this.lkType_EditValueChanged);
     //
     // lkOwnership
     //
     this.lkOwnership.Location = new System.Drawing.Point(818, 35);
     this.lkOwnership.Name = "lkOwnership";
     this.lkOwnership.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkOwnership.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "Name"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "Name26", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lkOwnership.Properties.DisplayMember = "Name";
     this.lkOwnership.Properties.NullText = "Select Ownership";
     this.lkOwnership.Properties.ShowFooter = false;
     this.lkOwnership.Properties.ShowHeader = false;
     this.lkOwnership.Properties.ValueMember = "ID";
     this.lkOwnership.Size = new System.Drawing.Size(211, 20);
     this.lkOwnership.TabIndex = 44;
     this.lkOwnership.EditValueChanged += new System.EventHandler(this.lkOwnership_EditValueChanged);
     //
     // lkWoreda
     //
     this.lkWoreda.Location = new System.Drawing.Point(497, 83);
     this.lkWoreda.Name = "lkWoreda";
     this.lkWoreda.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkWoreda.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.lkWoreda.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "ID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "Woreda Name")});
     this.lkWoreda.Properties.DisplayMember = "WoredaName";
     this.lkWoreda.Properties.NullText = "";
     this.lkWoreda.Properties.ShowFooter = false;
     this.lkWoreda.Properties.ShowHeader = false;
     this.lkWoreda.Properties.ValueMember = "ID";
     this.lkWoreda.Size = new System.Drawing.Size(226, 20);
     this.lkWoreda.TabIndex = 43;
     this.lkWoreda.EditValueChanged += new System.EventHandler(this.lkWoreda_EditValueChanged);
     //
     // txtRemark
     //
     this.txtRemark.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.txtRemark.Location = new System.Drawing.Point(357, 521);
     this.txtRemark.Name = "txtRemark";
     this.txtRemark.Size = new System.Drawing.Size(395, 22);
     this.txtRemark.TabIndex = 18;
     //
     // txtReceivedBy
     //
     this.txtReceivedBy.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.txtReceivedBy.Enabled = false;
     this.txtReceivedBy.Location = new System.Drawing.Point(664, 521);
     this.txtReceivedBy.Name = "txtReceivedBy";
     this.txtReceivedBy.Size = new System.Drawing.Size(124, 20);
     this.txtReceivedBy.TabIndex = 16;
     //
     // txtTin
     //
     this.txtTin.Enabled = false;
     this.txtTin.Location = new System.Drawing.Point(497, 4);
     this.txtTin.Name = "txtTin";
     this.txtTin.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.txtTin.Properties.Appearance.Options.UseBackColor = true;
     this.txtTin.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.txtTin.Size = new System.Drawing.Size(122, 18);
     this.txtTin.TabIndex = 26;
     this.txtTin.Visible = false;
     //
     // txtVatRegistration
     //
     this.txtVatRegistration.Enabled = false;
     this.txtVatRegistration.Location = new System.Drawing.Point(621, 4);
     this.txtVatRegistration.Name = "txtVatRegistration";
     this.txtVatRegistration.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.txtVatRegistration.Properties.Appearance.Options.UseBackColor = true;
     this.txtVatRegistration.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.txtVatRegistration.Size = new System.Drawing.Size(128, 18);
     this.txtVatRegistration.TabIndex = 25;
     //
     // txtRegistrationNo
     //
     this.txtRegistrationNo.Location = new System.Drawing.Point(808, 4);
     this.txtRegistrationNo.Name = "txtRegistrationNo";
     this.txtRegistrationNo.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.txtRegistrationNo.Properties.Appearance.Options.UseBackColor = true;
     this.txtRegistrationNo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.txtRegistrationNo.Size = new System.Drawing.Size(50, 18);
     this.txtRegistrationNo.TabIndex = 27;
     //
     // txtLetterNumber
     //
     this.txtLetterNumber.Location = new System.Drawing.Point(1151, 83);
     this.txtLetterNumber.Name = "txtLetterNumber";
     this.txtLetterNumber.Size = new System.Drawing.Size(183, 20);
     this.txtLetterNumber.TabIndex = 28;
     //
     // txtRefNo
     //
     this.txtRefNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtRefNo.Location = new System.Drawing.Point(104, 16);
     this.txtRefNo.Name = "txtRefNo";
     this.txtRefNo.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.txtRefNo.Properties.Appearance.Options.UseBackColor = true;
     this.txtRefNo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.txtRefNo.Size = new System.Drawing.Size(160, 18);
     this.txtRefNo.TabIndex = 15;
     //
     // btnSaveOrder
     //
     this.btnSaveOrder.Cursor = System.Windows.Forms.Cursors.Default;
     this.btnSaveOrder.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveOrder.Image")));
     this.btnSaveOrder.Location = new System.Drawing.Point(909, 367);
     this.btnSaveOrder.Name = "btnSaveOrder";
     this.btnSaveOrder.Size = new System.Drawing.Size(142, 22);
     this.btnSaveOrder.TabIndex = 24;
     this.btnSaveOrder.Text = "Save as Draft";
     this.btnSaveOrder.Click += new System.EventHandler(this.SaveOrderAsDraft);
     //
     // btnSaveAndForward
     //
     this.btnSaveAndForward.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveAndForward.Image")));
     this.btnSaveAndForward.Location = new System.Drawing.Point(1055, 367);
     this.btnSaveAndForward.Name = "btnSaveAndForward";
     this.btnSaveAndForward.Size = new System.Drawing.Size(142, 22);
     this.btnSaveAndForward.TabIndex = 25;
     this.btnSaveAndForward.Text = "Save and Forward";
     this.btnSaveAndForward.Click += new System.EventHandler(this.btnSaveAndForward_Click);
     //
     // lkModes
     //
     this.lkModes.EditValue = "1";
     this.lkModes.Location = new System.Drawing.Point(78, 62);
     this.lkModes.Name = "lkModes";
     this.lkModes.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkModes.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TypeName", "Name")});
     this.lkModes.Properties.DisplayMember = "TypeName";
     this.lkModes.Properties.NullText = "Select Mode";
     this.lkModes.Properties.ShowFooter = false;
     this.lkModes.Properties.ValueMember = "ID";
     this.lkModes.Size = new System.Drawing.Size(186, 20);
     this.lkModes.TabIndex = 15;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.dxValidation1stTab.SetValidationRule(this.lkModes, conditionValidationRule1);
     this.lkModes.EditValueChanged += new System.EventHandler(this.lkModes_EditValueChanged);
     //
     // txtContactPerson
     //
     this.txtContactPerson.Location = new System.Drawing.Point(1151, 59);
     this.txtContactPerson.Name = "txtContactPerson";
     this.txtContactPerson.Size = new System.Drawing.Size(183, 20);
     this.txtContactPerson.TabIndex = 39;
     //
     // lkZone
     //
     this.lkZone.Location = new System.Drawing.Point(497, 59);
     this.lkZone.Name = "lkZone";
     this.lkZone.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkZone.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "ZoneName"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "ID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lkZone.Properties.DisplayMember = "ZoneName";
     this.lkZone.Properties.NullText = "";
     this.lkZone.Properties.ShowFooter = false;
     this.lkZone.Properties.ShowHeader = false;
     this.lkZone.Properties.ValueMember = "ID";
     this.lkZone.Size = new System.Drawing.Size(226, 20);
     this.lkZone.TabIndex = 38;
     this.lkZone.EditValueChanged += new System.EventHandler(this.lkZone_EditValueChanged);
     //
     // lkRegion
     //
     this.lkRegion.Location = new System.Drawing.Point(497, 35);
     this.lkRegion.Name = "lkRegion";
     this.lkRegion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRegion.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RegionName", "RegionName"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "ID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lkRegion.Properties.DisplayMember = "RegionName";
     this.lkRegion.Properties.NullText = "Select Region";
     this.lkRegion.Properties.ShowFooter = false;
     this.lkRegion.Properties.ShowHeader = false;
     this.lkRegion.Properties.ValueMember = "ID";
     this.lkRegion.Size = new System.Drawing.Size(226, 20);
     this.lkRegion.TabIndex = 37;
     this.lkRegion.Tag = "r";
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "This value is not valid";
     this.dxValidation1stTab.SetValidationRule(this.lkRegion, conditionValidationRule2);
     this.lkRegion.EditValueChanged += new System.EventHandler(this.lkRegion_EditValueChanged);
     //
     // lblLoadRU
     //
     this.lblLoadRU.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline);
     this.lblLoadRU.Location = new System.Drawing.Point(1082, 19);
     this.lblLoadRU.Name = "lblLoadRU";
     this.lblLoadRU.Size = new System.Drawing.Size(33, 13);
     this.lblLoadRU.TabIndex = 36;
     this.lblLoadRU.Text = "Reload";
     this.lblLoadRU.Click += new System.EventHandler(this.lblLoadRU_Click);
     //
     // lkCategoires
     //
     this.lkCategoires.Location = new System.Drawing.Point(78, 86);
     this.lkCategoires.Name = "lkCategoires";
     this.lkCategoires.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkCategoires.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkCategoires.Properties.DisplayMember = "Name";
     this.lkCategoires.Properties.NullText = "Select Commodity Type";
     this.lkCategoires.Properties.ShowFooter = false;
     this.lkCategoires.Properties.ValueMember = "ID";
     this.lkCategoires.Size = new System.Drawing.Size(186, 20);
     this.lkCategoires.TabIndex = 23;
     this.lkCategoires.EditValueChanged += new System.EventHandler(this.lkCategoires_EditValueChanged);
     //
     // txtItemName
     //
     this.txtItemName.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtItemName.Location = new System.Drawing.Point(308, 86);
     this.txtItemName.Name = "txtItemName";
     this.txtItemName.Size = new System.Drawing.Size(102, 20);
     this.txtItemName.TabIndex = 4;
     this.txtItemName.EditValueChanged += new System.EventHandler(this.OnFilterByItemNameChanged);
     //
     // gridItemsChoice
     //
     this.gridItemsChoice.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridItemsChoice.Location = new System.Drawing.Point(4, 122);
     this.gridItemsChoice.MainView = this.gridItemChoiceView;
     this.gridItemsChoice.Name = "gridItemsChoice";
     this.gridItemsChoice.Padding = new System.Windows.Forms.Padding(2);
     this.gridItemsChoice.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1,
     this.repositoryItemMemoEdit2});
     this.gridItemsChoice.Size = new System.Drawing.Size(418, 241);
     this.gridItemsChoice.TabIndex = 11;
     this.gridItemsChoice.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridItemChoiceView});
     this.gridItemsChoice.Click += new System.EventHandler(this.gridItemsChoice_Click);
     //
     // gridItemChoiceView
     //
     this.gridItemChoiceView.Appearance.FocusedRow.BackColor = System.Drawing.Color.Gray;
     this.gridItemChoiceView.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridItemChoiceView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn30,
     this.gridColumn28,
     this.colItemName,
     this.gridColumn14,
     this.gridColumn29,
     this.gridColumn66,
     this.gridColumn67,
     this.gridColumn21});
     styleFormatCondition4.Appearance.ForeColor = System.Drawing.Color.Silver;
     styleFormatCondition4.Appearance.Options.UseForeColor = true;
     styleFormatCondition4.ApplyToRow = true;
     styleFormatCondition4.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition4.Expression = "[StockedOut] == 1";
     this.gridItemChoiceView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition4});
     this.gridItemChoiceView.GridControl = this.gridItemsChoice;
     this.gridItemChoiceView.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.None, "", null, "")});
     this.gridItemChoiceView.HorzScrollStep = 1;
     this.gridItemChoiceView.Name = "gridItemChoiceView";
     this.gridItemChoiceView.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridItemChoiceView.OptionsCustomization.AllowColumnMoving = false;
     this.gridItemChoiceView.OptionsCustomization.AllowColumnResizing = false;
     this.gridItemChoiceView.OptionsCustomization.AllowFilter = false;
     this.gridItemChoiceView.OptionsCustomization.AllowGroup = false;
     this.gridItemChoiceView.OptionsDetail.AllowExpandEmptyDetails = true;
     this.gridItemChoiceView.OptionsDetail.EnableDetailToolTip = true;
     this.gridItemChoiceView.OptionsDetail.SmartDetailExpandButtonMode = DevExpress.XtraGrid.Views.Grid.DetailExpandButtonMode.AlwaysEnabled;
     this.gridItemChoiceView.OptionsDetail.SmartDetailHeight = true;
     this.gridItemChoiceView.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridItemChoiceView.OptionsMenu.EnableColumnMenu = false;
     this.gridItemChoiceView.OptionsMenu.EnableFooterMenu = false;
     this.gridItemChoiceView.OptionsMenu.EnableGroupPanelMenu = false;
     this.gridItemChoiceView.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridItemChoiceView.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridItemChoiceView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridItemChoiceView.OptionsSelection.EnableAppearanceHideSelection = false;
     this.gridItemChoiceView.OptionsSelection.MultiSelect = true;
     this.gridItemChoiceView.OptionsView.EnableAppearanceEvenRow = true;
     this.gridItemChoiceView.OptionsView.EnableAppearanceOddRow = true;
     this.gridItemChoiceView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridItemChoiceView.OptionsView.ShowGroupPanel = false;
     this.gridItemChoiceView.OptionsView.ShowIndicator = false;
     this.gridItemChoiceView.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.gridItemChoiceView_RowClick);
     //
     // gridColumn30
     //
     this.gridColumn30.ColumnEdit = this.repositoryItemCheckEdit1;
     this.gridColumn30.FieldName = "IsSelected";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.OptionsColumn.AllowEdit = false;
     this.gridColumn30.OptionsColumn.AllowFocus = false;
     this.gridColumn30.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn30.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn30.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn30.OptionsColumn.AllowMove = false;
     this.gridColumn30.OptionsColumn.AllowShowHide = false;
     this.gridColumn30.OptionsColumn.AllowSize = false;
     this.gridColumn30.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn30.OptionsColumn.FixedWidth = true;
     this.gridColumn30.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn30.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn30.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn30.OptionsFilter.AllowFilter = false;
     this.gridColumn30.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn30.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Like;
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 0;
     this.gridColumn30.Width = 20;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.repositoryItemCheckEdit1.ValueGrayed = false;
     this.repositoryItemCheckEdit1.CheckedChanged += new System.EventHandler(this.OnItemCheckedChanged);
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "Stock Code";
     this.gridColumn28.FieldName = "StockCode";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.OptionsColumn.AllowEdit = false;
     this.gridColumn28.OptionsColumn.AllowFocus = false;
     this.gridColumn28.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn28.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn28.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn28.OptionsColumn.AllowMove = false;
     this.gridColumn28.OptionsColumn.AllowShowHide = false;
     this.gridColumn28.OptionsColumn.AllowSize = false;
     this.gridColumn28.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn28.OptionsColumn.FixedWidth = true;
     this.gridColumn28.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn28.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn28.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn28.OptionsFilter.AllowFilter = false;
     this.gridColumn28.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn28.Width = 89;
     //
     // colItemName
     //
     this.colItemName.AppearanceCell.Options.UseTextOptions = true;
     this.colItemName.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.colItemName.AppearanceHeader.Options.UseTextOptions = true;
     this.colItemName.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.colItemName.Caption = "Item";
     this.colItemName.ColumnEdit = this.repositoryItemMemoEdit2;
     this.colItemName.FieldName = "FullItemName";
     this.colItemName.Name = "colItemName";
     this.colItemName.OptionsColumn.AllowEdit = false;
     this.colItemName.OptionsColumn.AllowFocus = false;
     this.colItemName.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.OptionsColumn.AllowIncrementalSearch = false;
     this.colItemName.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.OptionsColumn.AllowMove = false;
     this.colItemName.OptionsColumn.AllowShowHide = false;
     this.colItemName.OptionsColumn.AllowSize = false;
     this.colItemName.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.OptionsColumn.FixedWidth = true;
     this.colItemName.OptionsColumn.ShowInCustomizationForm = false;
     this.colItemName.OptionsColumn.ShowInExpressionEditor = false;
     this.colItemName.OptionsFilter.AllowAutoFilter = false;
     this.colItemName.OptionsFilter.AllowFilter = false;
     this.colItemName.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.Visible = true;
     this.colItemName.VisibleIndex = 1;
     this.colItemName.Width = 343;
     //
     // repositoryItemMemoEdit2
     //
     this.repositoryItemMemoEdit2.LinesCount = 1;
     this.repositoryItemMemoEdit2.Name = "repositoryItemMemoEdit2";
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Type";
     this.gridColumn14.FieldName = "CommodityType";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowEdit = false;
     this.gridColumn14.OptionsColumn.AllowFocus = false;
     this.gridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn14.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn14.OptionsColumn.AllowMove = false;
     this.gridColumn14.OptionsColumn.AllowShowHide = false;
     this.gridColumn14.OptionsColumn.AllowSize = false;
     this.gridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn14.OptionsColumn.FixedWidth = true;
     this.gridColumn14.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn14.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn14.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn14.OptionsFilter.AllowFilter = false;
     this.gridColumn14.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "Unit";
     this.gridColumn29.FieldName = "Unit";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.OptionsColumn.AllowEdit = false;
     this.gridColumn29.OptionsColumn.AllowFocus = false;
     this.gridColumn29.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn29.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.AllowMove = false;
     this.gridColumn29.OptionsColumn.AllowShowHide = false;
     this.gridColumn29.OptionsColumn.AllowSize = false;
     this.gridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.FixedWidth = true;
     this.gridColumn29.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn29.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn29.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn29.OptionsFilter.AllowFilter = false;
     this.gridColumn29.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 2;
     //
     // gridColumn66
     //
     this.gridColumn66.Caption = "gridColumn66";
     this.gridColumn66.FieldName = "SubCategoryID";
     this.gridColumn66.Name = "gridColumn66";
     this.gridColumn66.OptionsColumn.AllowEdit = false;
     this.gridColumn66.OptionsColumn.AllowFocus = false;
     this.gridColumn66.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn66.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn66.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn66.OptionsColumn.AllowMove = false;
     this.gridColumn66.OptionsColumn.AllowShowHide = false;
     this.gridColumn66.OptionsColumn.AllowSize = false;
     this.gridColumn66.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn66.OptionsColumn.FixedWidth = true;
     this.gridColumn66.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn66.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn66.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn66.OptionsFilter.AllowFilter = false;
     this.gridColumn66.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColumn67
     //
     this.gridColumn67.Caption = "gridColumn67";
     this.gridColumn67.FieldName = "CategoryID";
     this.gridColumn67.Name = "gridColumn67";
     this.gridColumn67.OptionsColumn.AllowEdit = false;
     this.gridColumn67.OptionsColumn.AllowFocus = false;
     this.gridColumn67.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn67.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn67.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn67.OptionsColumn.AllowMove = false;
     this.gridColumn67.OptionsColumn.AllowShowHide = false;
     this.gridColumn67.OptionsColumn.AllowSize = false;
     this.gridColumn67.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn67.OptionsColumn.FixedWidth = true;
     this.gridColumn67.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn67.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn67.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn67.OptionsFilter.AllowFilter = false;
     this.gridColumn67.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "gridColumn21";
     this.gridColumn21.FieldName = "TypeID";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.OptionsColumn.AllowEdit = false;
     this.gridColumn21.OptionsColumn.AllowFocus = false;
     this.gridColumn21.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn21.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn21.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn21.OptionsColumn.AllowMove = false;
     this.gridColumn21.OptionsColumn.AllowShowHide = false;
     this.gridColumn21.OptionsColumn.AllowSize = false;
     this.gridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn21.OptionsColumn.FixedWidth = true;
     this.gridColumn21.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn21.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn21.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn21.OptionsFilter.AllowFilter = false;
     this.gridColumn21.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     //
     // lkPaymentType
     //
     this.lkPaymentType.Location = new System.Drawing.Point(1150, 35);
     this.lkPaymentType.Margin = new System.Windows.Forms.Padding(0);
     this.lkPaymentType.Name = "lkPaymentType";
     this.lkPaymentType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkPaymentType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkPaymentType.Properties.DisplayMember = "Name";
     this.lkPaymentType.Properties.NullText = "Select Payment Type";
     this.lkPaymentType.Properties.PopupSizeable = false;
     this.lkPaymentType.Properties.ShowFooter = false;
     this.lkPaymentType.Properties.ShowHeader = false;
     this.lkPaymentType.Properties.ValueMember = "ID";
     this.lkPaymentType.Size = new System.Drawing.Size(184, 20);
     this.lkPaymentType.TabIndex = 37;
     conditionValidationRule3.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule3.ErrorText = "This value is not valid";
     this.dxValidation1stTab.SetValidationRule(this.lkPaymentType, conditionValidationRule3);
     //
     // lkForFacility
     //
     this.lkForFacility.EditValue = "1";
     this.lkForFacility.Location = new System.Drawing.Point(818, 83);
     this.lkForFacility.Name = "lkForFacility";
     this.lkForFacility.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkForFacility.Properties.DisplayMember = "Name";
     this.lkForFacility.Properties.NullText = "Select Issue Location";
     this.lkForFacility.Properties.ShowFooter = false;
     this.lkForFacility.Properties.ShowPopupShadow = false;
     this.lkForFacility.Properties.ValueMember = "ID";
     this.lkForFacility.Properties.View = this.gridLookUpEdit1View;
     this.lkForFacility.Size = new System.Drawing.Size(211, 20);
     this.lkForFacility.TabIndex = 22;
     this.lkForFacility.EditValueChanged += new System.EventHandler(this.lkForFacility_EditValueChanged);
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn19,
     this.gridColumn20,
     this.gridColumn22,
     this.gridColumn24,
     this.gridColumn25});
     this.gridLookUpEdit1View.DetailTabHeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Bottom;
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.VisibleAlways;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsCustomization.AllowColumnMoving = false;
     this.gridLookUpEdit1View.OptionsCustomization.AllowColumnResizing = false;
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowAutoFilterRow = true;
     this.gridLookUpEdit1View.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     this.gridLookUpEdit1View.OptionsView.ShowIndicator = false;
     this.gridLookUpEdit1View.ScrollStyle = DevExpress.XtraGrid.Views.Grid.ScrollStyleFlags.LiveVertScroll;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Name";
     this.gridColumn15.FieldName = "Name";
     this.gridColumn15.MinWidth = 150;
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.OptionsColumn.AllowFocus = false;
     this.gridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsColumn.AllowMove = false;
     this.gridColumn15.OptionsColumn.AllowShowHide = false;
     this.gridColumn15.OptionsColumn.AllowSize = false;
     this.gridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 150;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Ownership";
     this.gridColumn19.FieldName = "OwnershipName";
     this.gridColumn19.MinWidth = 75;
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.AllowEdit = false;
     this.gridColumn19.OptionsColumn.AllowFocus = false;
     this.gridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsColumn.AllowMove = false;
     this.gridColumn19.OptionsColumn.AllowShowHide = false;
     this.gridColumn19.OptionsColumn.AllowSize = false;
     this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Type";
     this.gridColumn20.FieldName = "InstitutionTypeName";
     this.gridColumn20.MinWidth = 75;
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.OptionsColumn.AllowEdit = false;
     this.gridColumn20.OptionsColumn.AllowFocus = false;
     this.gridColumn20.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsColumn.AllowMove = false;
     this.gridColumn20.OptionsColumn.AllowShowHide = false;
     this.gridColumn20.OptionsColumn.AllowSize = false;
     this.gridColumn20.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 2;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Woreda";
     this.gridColumn22.FieldName = "WoredaName";
     this.gridColumn22.MinWidth = 150;
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.OptionsColumn.AllowEdit = false;
     this.gridColumn22.OptionsColumn.AllowFocus = false;
     this.gridColumn22.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.AllowMove = false;
     this.gridColumn22.OptionsColumn.AllowShowHide = false;
     this.gridColumn22.OptionsColumn.AllowSize = false;
     this.gridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 3;
     this.gridColumn22.Width = 150;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Zone";
     this.gridColumn24.FieldName = "ZoneName";
     this.gridColumn24.MinWidth = 150;
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.OptionsColumn.AllowEdit = false;
     this.gridColumn24.OptionsColumn.AllowFocus = false;
     this.gridColumn24.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsColumn.AllowMove = false;
     this.gridColumn24.OptionsColumn.AllowShowHide = false;
     this.gridColumn24.OptionsColumn.AllowSize = false;
     this.gridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 4;
     this.gridColumn24.Width = 150;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "Region";
     this.gridColumn25.FieldName = "RegionName";
     this.gridColumn25.MinWidth = 75;
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.OptionsColumn.AllowEdit = false;
     this.gridColumn25.OptionsColumn.AllowFocus = false;
     this.gridColumn25.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsColumn.AllowMove = false;
     this.gridColumn25.OptionsColumn.AllowShowHide = false;
     this.gridColumn25.OptionsColumn.AllowSize = false;
     this.gridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 5;
     //
     // lkPeriod
     //
     this.lkPeriod.Location = new System.Drawing.Point(818, 107);
     this.lkPeriod.Name = "lkPeriod";
     this.lkPeriod.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkPeriod.Properties.DisplayMember = "StartDate_EndDate";
     this.lkPeriod.Properties.NullText = "Select Period";
     this.lkPeriod.Properties.ShowFooter = false;
     this.lkPeriod.Properties.ValueMember = "PeriodID";
     this.lkPeriod.Properties.View = this.gridView2;
     this.lkPeriod.Size = new System.Drawing.Size(211, 20);
     this.lkPeriod.TabIndex = 44;
     this.lkPeriod.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.lkPeriod_EditValueChanging);
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.lkColStartDate_EndDate});
     this.gridView2.DetailHeight = 150;
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // lkColStartDate_EndDate
     //
     this.lkColStartDate_EndDate.Caption = "StartDate_EndDate";
     this.lkColStartDate_EndDate.FieldName = "StartDate_EndDate";
     this.lkColStartDate_EndDate.Name = "lkColStartDate_EndDate";
     this.lkColStartDate_EndDate.Visible = true;
     this.lkColStartDate_EndDate.VisibleIndex = 0;
     //
     // lkRequisitionType
     //
     this.lkRequisitionType.Location = new System.Drawing.Point(78, 38);
     this.lkRequisitionType.Name = "lkRequisitionType";
     this.lkRequisitionType.Properties.AllowMouseWheel = false;
     this.lkRequisitionType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRequisitionType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Description", "Requisiton Type")});
     this.lkRequisitionType.Properties.DisplayMember = "Description";
     this.lkRequisitionType.Properties.NullText = "Select Type";
     this.lkRequisitionType.Properties.PopupWidth = 100;
     this.lkRequisitionType.Properties.ShowFooter = false;
     this.lkRequisitionType.Properties.ValueMember = "Value";
     this.lkRequisitionType.Size = new System.Drawing.Size(186, 20);
     this.lkRequisitionType.TabIndex = 45;
     conditionValidationRule4.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule4.ErrorText = "This value is not valid";
     this.dxValidation1stTab.SetValidationRule(this.lkRequisitionType, conditionValidationRule4);
     this.lkRequisitionType.EditValueChanged += new System.EventHandler(this.lkRequisitionType_EditValueChanged);
     this.lkRequisitionType.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.lkRequisitionType_EditValueChanging);
     //
     // btnCancelOne
     //
     this.btnCancelOne.Image = ((System.Drawing.Image)(resources.GetObject("btnCancelOne.Image")));
     this.btnCancelOne.Location = new System.Drawing.Point(1201, 367);
     this.btnCancelOne.Name = "btnCancelOne";
     this.btnCancelOne.Size = new System.Drawing.Size(142, 22);
     this.btnCancelOne.TabIndex = 20;
     this.btnCancelOne.Text = "Cancel";
     this.btnCancelOne.Click += new System.EventHandler(this.btnCancelOne_Click);
     //
     // layoutControlItem24
     //
     this.layoutControlItem24.Control = this.txtReceivedBy;
     this.layoutControlItem24.CustomizationFormText = "Received By";
     this.layoutControlItem24.Location = new System.Drawing.Point(538, 517);
     this.layoutControlItem24.Name = "layoutControlItem24";
     this.layoutControlItem24.Size = new System.Drawing.Size(250, 26);
     this.layoutControlItem24.Text = "Received By";
     this.layoutControlItem24.TextSize = new System.Drawing.Size(120, 13);
     this.layoutControlItem24.TextToControlDistance = 5;
     //
     // layoutControlItem25
     //
     this.layoutControlItem25.Control = this.txtRemark;
     this.layoutControlItem25.CustomizationFormText = "layoutControlItem25";
     this.layoutControlItem25.Location = new System.Drawing.Point(231, 517);
     this.layoutControlItem25.Name = "layoutControlItem25";
     this.layoutControlItem25.Size = new System.Drawing.Size(521, 26);
     this.layoutControlItem25.Text = "Remarks";
     this.layoutControlItem25.TextSize = new System.Drawing.Size(120, 13);
     this.layoutControlItem25.TextToControlDistance = 5;
     //
     // layoutReload
     //
     this.layoutReload.Control = this.lblLoadRU;
     this.layoutReload.ControlAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.layoutReload.CustomizationFormText = "layoutControlItem2";
     this.layoutReload.FillControlToClientArea = false;
     this.layoutReload.Location = new System.Drawing.Point(1078, 0);
     this.layoutReload.Name = "layoutReload";
     this.layoutReload.Size = new System.Drawing.Size(37, 48);
     this.layoutReload.Text = "layoutReload";
     this.layoutReload.TextLocation = DevExpress.Utils.Locations.Default;
     this.layoutReload.TextSize = new System.Drawing.Size(0, 0);
     this.layoutReload.TextToControlDistance = 0;
     this.layoutReload.TextVisible = false;
     this.layoutReload.TrimClientAreaToControl = false;
     this.layoutReload.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // progressBarlayoutControlItem
     //
     this.progressBarlayoutControlItem.Control = this.progressBarControl;
     this.progressBarlayoutControlItem.CustomizationFormText = "progressBarlayoutControlItem";
     this.progressBarlayoutControlItem.Location = new System.Drawing.Point(386, 366);
     this.progressBarlayoutControlItem.MinSize = new System.Drawing.Size(54, 18);
     this.progressBarlayoutControlItem.Name = "progressBarlayoutControlItem";
     this.progressBarlayoutControlItem.Size = new System.Drawing.Size(966, 24);
     this.progressBarlayoutControlItem.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.progressBarlayoutControlItem.Text = "progressBarlayoutControlItem";
     this.progressBarlayoutControlItem.TextSize = new System.Drawing.Size(0, 0);
     this.progressBarlayoutControlItem.TextToControlDistance = 0;
     this.progressBarlayoutControlItem.TextVisible = false;
     this.progressBarlayoutControlItem.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // layoutControlItem23
     //
     this.layoutControlItem23.Control = this.txtTin;
     this.layoutControlItem23.CustomizationFormText = "TIN Number";
     this.layoutControlItem23.Location = new System.Drawing.Point(430, 0);
     this.layoutControlItem23.MaxSize = new System.Drawing.Size(189, 22);
     this.layoutControlItem23.MinSize = new System.Drawing.Size(189, 22);
     this.layoutControlItem23.Name = "layoutControlItem23";
     this.layoutControlItem23.Size = new System.Drawing.Size(189, 22);
     this.layoutControlItem23.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem23.Text = "TIN Number:";
     this.layoutControlItem23.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem23.TextSize = new System.Drawing.Size(61, 13);
     this.layoutControlItem23.TextToControlDistance = 2;
     //
     // layoutControlItem22
     //
     this.layoutControlItem22.Control = this.txtVatRegistration;
     this.layoutControlItem22.CustomizationFormText = "VAT Registration Number";
     this.layoutControlItem22.Location = new System.Drawing.Point(552, 0);
     this.layoutControlItem22.MaxSize = new System.Drawing.Size(197, 22);
     this.layoutControlItem22.MinSize = new System.Drawing.Size(197, 22);
     this.layoutControlItem22.Name = "layoutControlItem22";
     this.layoutControlItem22.Size = new System.Drawing.Size(197, 22);
     this.layoutControlItem22.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem22.Text = "VAT Number:";
     this.layoutControlItem22.TextSize = new System.Drawing.Size(63, 13);
     this.layoutControlItem22.TextToControlDistance = 5;
     //
     // layoutControlItem21
     //
     this.layoutControlItem21.Control = this.txtRegistrationNo;
     this.layoutControlItem21.CustomizationFormText = "License Number";
     this.layoutControlItem21.Location = new System.Drawing.Point(723, 0);
     this.layoutControlItem21.MinSize = new System.Drawing.Size(135, 22);
     this.layoutControlItem21.Name = "layoutControlItem21";
     this.layoutControlItem21.Size = new System.Drawing.Size(135, 22);
     this.layoutControlItem21.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem21.Text = "License Number:";
     this.layoutControlItem21.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem21.TextSize = new System.Drawing.Size(79, 13);
     this.layoutControlItem21.TextToControlDistance = 2;
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.Control = this.txtRefNo;
     this.layoutControlItem13.CustomizationFormText = "Order Number";
     this.layoutControlItem13.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem13.MaxSize = new System.Drawing.Size(252, 22);
     this.layoutControlItem13.MinSize = new System.Drawing.Size(252, 22);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(252, 22);
     this.layoutControlItem13.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem13.Text = "Order Number:";
     this.layoutControlItem13.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem13.TextSize = new System.Drawing.Size(72, 13);
     this.layoutControlItem13.TextToControlDistance = 16;
     //
     // layoutControlGroup14
     //
     this.layoutControlGroup14.CustomizationFormText = "Root";
     this.layoutControlGroup14.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup14.GroupBordersVisible = false;
     this.layoutControlGroup14.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem29,
     this.layoutControlItem2,
     this.layoutControlItem30,
     this.layoutControlItem8,
     this.layoutControlItem19,
     this.layoutControlItem12,
     this.emptySpaceItem14,
     this.simpleSeparator2,
     this.LastVisitlayout,
     this.NoRequisitionlayout,
     this.layoutControlGroup2,
     this.layoutControlGroup5,
     this.emptySpaceItem5,
     this.simpleSeparator3,
     this.layoutControlGroup4,
     this.layoutControlItem18,
     this.layoutControlItem34,
     this.layoutControlItem35,
     this.emptySpaceItem9,
     this.layoutControlGroup3});
     this.layoutControlGroup14.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup14.Name = "Root";
     this.layoutControlGroup14.OptionsItemText.TextToControlDistance = 2;
     this.layoutControlGroup14.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutControlGroup14.Size = new System.Drawing.Size(1350, 393);
     this.layoutControlGroup14.Text = "Root";
     this.layoutControlGroup14.TextVisible = false;
     //
     // layoutControlItem29
     //
     this.layoutControlItem29.Control = this.gridItemsChoice;
     this.layoutControlItem29.CustomizationFormText = "layoutControlItem29";
     this.layoutControlItem29.Location = new System.Drawing.Point(0, 118);
     this.layoutControlItem29.Name = "layoutControlItem29";
     this.layoutControlItem29.Size = new System.Drawing.Size(422, 245);
     this.layoutControlItem29.Text = "layoutControlItem29";
     this.layoutControlItem29.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem29.TextToControlDistance = 0;
     this.layoutControlItem29.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.xtraTabControl1;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(430, 141);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlItem2.Size = new System.Drawing.Size(916, 222);
     this.layoutControlItem2.Text = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem30
     //
     this.layoutControlItem30.Control = this.simpleButton1;
     this.layoutControlItem30.CustomizationFormText = "layoutControlItem30";
     this.layoutControlItem30.Location = new System.Drawing.Point(759, 363);
     this.layoutControlItem30.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem30.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem30.Name = "layoutControlItem30";
     this.layoutControlItem30.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem30.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem30.Text = "layoutControlItem30";
     this.layoutControlItem30.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem30.TextToControlDistance = 0;
     this.layoutControlItem30.TextVisible = false;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.btnSaveAndForward;
     this.layoutControlItem8.CustomizationFormText = "layoutControlItem8";
     this.layoutControlItem8.Location = new System.Drawing.Point(1051, 363);
     this.layoutControlItem8.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem8.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem8.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem8.Text = "layoutControlItem8";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem8.TextToControlDistance = 0;
     this.layoutControlItem8.TextVisible = false;
     //
     // layoutControlItem19
     //
     this.layoutControlItem19.Control = this.btnSaveOrder;
     this.layoutControlItem19.CustomizationFormText = "layoutControlItem19";
     this.layoutControlItem19.Location = new System.Drawing.Point(905, 363);
     this.layoutControlItem19.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem19.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem19.Name = "layoutControlItem19";
     this.layoutControlItem19.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem19.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem19.Text = "layoutControlItem19";
     this.layoutControlItem19.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem19.TextToControlDistance = 0;
     this.layoutControlItem19.TextVisible = false;
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.Control = this.btnCancelOne;
     this.layoutControlItem12.CustomizationFormText = "layoutControlItem12";
     this.layoutControlItem12.Location = new System.Drawing.Point(1197, 363);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 5, 2, 2);
     this.layoutControlItem12.Size = new System.Drawing.Size(149, 26);
     this.layoutControlItem12.Text = "layoutControlItem12";
     this.layoutControlItem12.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem12.TextToControlDistance = 0;
     this.layoutControlItem12.TextVisible = false;
     //
     // emptySpaceItem14
     //
     this.emptySpaceItem14.AllowHotTrack = false;
     this.emptySpaceItem14.CustomizationFormText = "emptySpaceItem14";
     this.emptySpaceItem14.Location = new System.Drawing.Point(0, 363);
     this.emptySpaceItem14.Name = "emptySpaceItem14";
     this.emptySpaceItem14.Size = new System.Drawing.Size(759, 26);
     this.emptySpaceItem14.Text = "emptySpaceItem14";
     this.emptySpaceItem14.TextSize = new System.Drawing.Size(0, 0);
     //
     // simpleSeparator2
     //
     this.simpleSeparator2.AllowHotTrack = false;
     this.simpleSeparator2.CustomizationFormText = "simpleSeparator2";
     this.simpleSeparator2.Location = new System.Drawing.Point(430, 17);
     this.simpleSeparator2.Name = "simpleSeparator2";
     this.simpleSeparator2.Size = new System.Drawing.Size(916, 2);
     this.simpleSeparator2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.simpleSeparator2.Text = "simpleSeparator2";
     //
     // LastVisitlayout
     //
     this.LastVisitlayout.AppearanceItemCaption.Options.UseTextOptions = true;
     this.LastVisitlayout.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.LastVisitlayout.Control = this.LastVisitlabel;
     this.LastVisitlayout.CustomizationFormText = "Last Visit:";
     this.LastVisitlayout.Location = new System.Drawing.Point(992, 0);
     this.LastVisitlayout.MaxSize = new System.Drawing.Size(177, 17);
     this.LastVisitlayout.MinSize = new System.Drawing.Size(177, 17);
     this.LastVisitlayout.Name = "LastVisitlayout";
     this.LastVisitlayout.Size = new System.Drawing.Size(177, 17);
     this.LastVisitlayout.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.LastVisitlayout.Text = "  Last Visit:";
     this.LastVisitlayout.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.LastVisitlayout.TextSize = new System.Drawing.Size(52, 13);
     this.LastVisitlayout.TextToControlDistance = 2;
     //
     // NoRequisitionlayout
     //
     this.NoRequisitionlayout.Control = this.NoOfVisitLabel;
     this.NoRequisitionlayout.CustomizationFormText = "        No of Requistion:";
     this.NoRequisitionlayout.Location = new System.Drawing.Point(1169, 0);
     this.NoRequisitionlayout.MaxSize = new System.Drawing.Size(177, 17);
     this.NoRequisitionlayout.MinSize = new System.Drawing.Size(177, 17);
     this.NoRequisitionlayout.Name = "NoRequisitionlayout";
     this.NoRequisitionlayout.Size = new System.Drawing.Size(177, 17);
     this.NoRequisitionlayout.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.NoRequisitionlayout.Text = "Last Requisitions:";
     this.NoRequisitionlayout.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.NoRequisitionlayout.TextSize = new System.Drawing.Size(84, 13);
     this.NoRequisitionlayout.TextToControlDistance = 2;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = " ";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem15,
     this.ShowStockOutCheckBoxLayout,
     this.layoutControlItem3,
     this.layoutControlItem4});
     this.layoutControlGroup2.Location = new System.Drawing.Point(430, 19);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(305, 120);
     this.layoutControlGroup2.Text = " ";
     this.layoutControlGroup2.TextVisible = false;
     //
     // layoutControlItem15
     //
     this.layoutControlItem15.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem15.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem15.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem15.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem15.Control = this.lkWoreda;
     this.layoutControlItem15.CustomizationFormText = "Woreda";
     this.layoutControlItem15.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem15.MaxSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem15.MinSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem15.Name = "layoutControlItem15";
     this.layoutControlItem15.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem15.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem15.Text = "Woreda:";
     this.layoutControlItem15.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem15.TextSize = new System.Drawing.Size(47, 13);
     this.layoutControlItem15.TextToControlDistance = 4;
     //
     // ShowStockOutCheckBoxLayout
     //
     this.ShowStockOutCheckBoxLayout.Control = this.ShowStockOutCheckBox;
     this.ShowStockOutCheckBoxLayout.CustomizationFormText = "ShowStockOutCheckBoxLayout";
     this.ShowStockOutCheckBoxLayout.Location = new System.Drawing.Point(0, 72);
     this.ShowStockOutCheckBoxLayout.Name = "ShowStockOutCheckBoxLayout";
     this.ShowStockOutCheckBoxLayout.Size = new System.Drawing.Size(281, 24);
     this.ShowStockOutCheckBoxLayout.Text = "ShowStockOutCheckBoxLayout";
     this.ShowStockOutCheckBoxLayout.TextSize = new System.Drawing.Size(0, 0);
     this.ShowStockOutCheckBoxLayout.TextToControlDistance = 0;
     this.ShowStockOutCheckBoxLayout.TextVisible = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem3.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem3.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem3.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem3.Control = this.lkRegion;
     this.layoutControlItem3.CustomizationFormText = "Region";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Region:";
     this.layoutControlItem3.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(42, 13);
     this.layoutControlItem3.TextToControlDistance = 9;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem4.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem4.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem4.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem4.Control = this.lkZone;
     this.layoutControlItem4.CustomizationFormText = "Zone";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Zone:";
     this.layoutControlItem4.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem4.TextToControlDistance = 20;
     //
     // layoutControlGroup5
     //
     this.layoutControlGroup5.CustomizationFormText = " ";
     this.layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.RequisitionTypelayoutControlItem,
     this.layoutControlItem7,
     this.RangeLayout,
     this.layoutControlItem52,
     this.layoutControlItem31,
     this.emptySpaceItem1,
     this.emptySpaceItem7,
     this.layoutControlItem38});
     this.layoutControlGroup5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup5.Name = "layoutControlGroup5";
     this.layoutControlGroup5.Size = new System.Drawing.Size(422, 118);
     this.layoutControlGroup5.Text = " ";
     this.layoutControlGroup5.TextVisible = false;
     //
     // RequisitionTypelayoutControlItem
     //
     this.RequisitionTypelayoutControlItem.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.RequisitionTypelayoutControlItem.AppearanceItemCaption.Options.UseForeColor = true;
     this.RequisitionTypelayoutControlItem.Control = this.lkRequisitionType;
     this.RequisitionTypelayoutControlItem.CustomizationFormText = "Type";
     this.RequisitionTypelayoutControlItem.ImageToTextDistance = 1;
     this.RequisitionTypelayoutControlItem.Location = new System.Drawing.Point(0, 22);
     this.RequisitionTypelayoutControlItem.MaxSize = new System.Drawing.Size(252, 24);
     this.RequisitionTypelayoutControlItem.MinSize = new System.Drawing.Size(252, 24);
     this.RequisitionTypelayoutControlItem.Name = "RequisitionTypelayoutControlItem";
     this.RequisitionTypelayoutControlItem.Size = new System.Drawing.Size(252, 24);
     this.RequisitionTypelayoutControlItem.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.RequisitionTypelayoutControlItem.Text = "Type:";
     this.RequisitionTypelayoutControlItem.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.RequisitionTypelayoutControlItem.TextSize = new System.Drawing.Size(28, 13);
     this.RequisitionTypelayoutControlItem.TextToControlDistance = 34;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.layoutControlItem7.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem7.Control = this.lkModes;
     this.layoutControlItem7.CustomizationFormText = "Mode:";
     this.layoutControlItem7.Location = new System.Drawing.Point(0, 46);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(252, 24);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(252, 24);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(252, 24);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.Text = "Mode:";
     this.layoutControlItem7.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem7.TextToControlDistance = 32;
     //
     // RangeLayout
     //
     this.RangeLayout.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.RangeLayout.AppearanceItemCaption.Options.UseForeColor = true;
     this.RangeLayout.Control = this.lkRange;
     this.RangeLayout.CustomizationFormText = "RangeLayout";
     this.RangeLayout.Location = new System.Drawing.Point(252, 22);
     this.RangeLayout.MaxSize = new System.Drawing.Size(146, 24);
     this.RangeLayout.MinSize = new System.Drawing.Size(146, 24);
     this.RangeLayout.Name = "RangeLayout";
     this.RangeLayout.Size = new System.Drawing.Size(146, 24);
     this.RangeLayout.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.RangeLayout.Text = "Range:";
     this.RangeLayout.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.RangeLayout.TextSize = new System.Drawing.Size(35, 13);
     this.RangeLayout.TextToControlDistance = 5;
     //
     // layoutControlItem52
     //
     this.layoutControlItem52.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.layoutControlItem52.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem52.Control = this.lkCategoires;
     this.layoutControlItem52.CustomizationFormText = "Categories";
     this.layoutControlItem52.Location = new System.Drawing.Point(0, 70);
     this.layoutControlItem52.MaxSize = new System.Drawing.Size(252, 24);
     this.layoutControlItem52.MinSize = new System.Drawing.Size(252, 24);
     this.layoutControlItem52.Name = "layoutControlItem52";
     this.layoutControlItem52.Size = new System.Drawing.Size(252, 24);
     this.layoutControlItem52.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem52.Text = "Commodity:";
     this.layoutControlItem52.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem52.TextSize = new System.Drawing.Size(57, 13);
     this.layoutControlItem52.TextToControlDistance = 5;
     //
     // layoutControlItem31
     //
     this.layoutControlItem31.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.layoutControlItem31.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem31.Control = this.txtItemName;
     this.layoutControlItem31.CustomizationFormText = "layoutControlItem31";
     this.layoutControlItem31.Location = new System.Drawing.Point(252, 70);
     this.layoutControlItem31.MaxSize = new System.Drawing.Size(146, 24);
     this.layoutControlItem31.MinSize = new System.Drawing.Size(146, 24);
     this.layoutControlItem31.Name = "layoutControlItem31";
     this.layoutControlItem31.Size = new System.Drawing.Size(146, 24);
     this.layoutControlItem31.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem31.Text = "Item:";
     this.layoutControlItem31.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem31.TextSize = new System.Drawing.Size(26, 13);
     this.layoutControlItem31.TextToControlDistance = 14;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(252, 46);
     this.emptySpaceItem1.MaxSize = new System.Drawing.Size(146, 24);
     this.emptySpaceItem1.MinSize = new System.Drawing.Size(146, 24);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(146, 24);
     this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem7
     //
     this.emptySpaceItem7.AllowHotTrack = false;
     this.emptySpaceItem7.CustomizationFormText = "emptySpaceItem7";
     this.emptySpaceItem7.Location = new System.Drawing.Point(252, 0);
     this.emptySpaceItem7.MaxSize = new System.Drawing.Size(146, 22);
     this.emptySpaceItem7.MinSize = new System.Drawing.Size(146, 22);
     this.emptySpaceItem7.Name = "emptySpaceItem7";
     this.emptySpaceItem7.Size = new System.Drawing.Size(146, 22);
     this.emptySpaceItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem7.Text = "emptySpaceItem7";
     this.emptySpaceItem7.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem38
     //
     this.layoutControlItem38.Control = this.labelControl4;
     this.layoutControlItem38.CustomizationFormText = "Order Number: ";
     this.layoutControlItem38.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem38.Name = "layoutControlItem38";
     this.layoutControlItem38.Size = new System.Drawing.Size(252, 22);
     this.layoutControlItem38.Text = "Order No: ";
     this.layoutControlItem38.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem38.TextSize = new System.Drawing.Size(51, 13);
     this.layoutControlItem38.TextToControlDistance = 8;
     //
     // emptySpaceItem5
     //
     this.emptySpaceItem5.AllowHotTrack = false;
     this.emptySpaceItem5.CustomizationFormText = "emptySpaceItem5";
     this.emptySpaceItem5.Location = new System.Drawing.Point(422, 0);
     this.emptySpaceItem5.MinSize = new System.Drawing.Size(8, 10);
     this.emptySpaceItem5.Name = "emptySpaceItem5";
     this.emptySpaceItem5.Size = new System.Drawing.Size(8, 363);
     this.emptySpaceItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem5.Text = "emptySpaceItem5";
     this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
     //
     // simpleSeparator3
     //
     this.simpleSeparator3.AllowHotTrack = false;
     this.simpleSeparator3.CustomizationFormText = "simpleSeparator3";
     this.simpleSeparator3.Location = new System.Drawing.Point(430, 139);
     this.simpleSeparator3.Name = "simpleSeparator3";
     this.simpleSeparator3.Size = new System.Drawing.Size(916, 2);
     this.simpleSeparator3.Text = "simpleSeparator3";
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "layoutControlGroup4";
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem5,
     this.layoutControlItem20,
     this.layoutControlItem1,
     this.emptySpaceItem8});
     this.layoutControlGroup4.Location = new System.Drawing.Point(1041, 19);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.Size = new System.Drawing.Size(305, 120);
     this.layoutControlGroup4.Text = " ";
     this.layoutControlGroup4.TextVisible = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem5.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem5.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.layoutControlItem5.Control = this.txtContactPerson;
     this.layoutControlItem5.CustomizationFormText = "Contact Person";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem5.Text = "Contact Person:";
     this.layoutControlItem5.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(89, 13);
     this.layoutControlItem5.TextToControlDistance = 5;
     //
     // layoutControlItem20
     //
     this.layoutControlItem20.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem20.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem20.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem20.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem20.Control = this.txtLetterNumber;
     this.layoutControlItem20.CustomizationFormText = "Letter Number";
     this.layoutControlItem20.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem20.Name = "layoutControlItem20";
     this.layoutControlItem20.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem20.Text = "Letter No:";
     this.layoutControlItem20.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem20.TextSize = new System.Drawing.Size(55, 13);
     this.layoutControlItem20.TextToControlDistance = 39;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem1.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem1.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem1.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem1.Control = this.lkPaymentType;
     this.layoutControlItem1.CustomizationFormText = "Payment Type";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem1.Text = "Payment:";
     this.layoutControlItem1.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(54, 13);
     this.layoutControlItem1.TextToControlDistance = 39;
     //
     // emptySpaceItem8
     //
     this.emptySpaceItem8.AllowHotTrack = false;
     this.emptySpaceItem8.CustomizationFormText = "emptySpaceItem8";
     this.emptySpaceItem8.Location = new System.Drawing.Point(0, 72);
     this.emptySpaceItem8.Name = "emptySpaceItem8";
     this.emptySpaceItem8.Size = new System.Drawing.Size(281, 24);
     this.emptySpaceItem8.Text = "emptySpaceItem8";
     this.emptySpaceItem8.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem18
     //
     this.layoutControlItem18.Control = this.labelControl1;
     this.layoutControlItem18.CustomizationFormText = "Tin Number:";
     this.layoutControlItem18.Location = new System.Drawing.Point(459, 0);
     this.layoutControlItem18.MaxSize = new System.Drawing.Size(177, 17);
     this.layoutControlItem18.MinSize = new System.Drawing.Size(177, 17);
     this.layoutControlItem18.Name = "layoutControlItem18";
     this.layoutControlItem18.Size = new System.Drawing.Size(177, 17);
     this.layoutControlItem18.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem18.Text = "Tin Number:";
     this.layoutControlItem18.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem18.TextSize = new System.Drawing.Size(58, 13);
     this.layoutControlItem18.TextToControlDistance = 2;
     //
     // layoutControlItem34
     //
     this.layoutControlItem34.Control = this.labelControl2;
     this.layoutControlItem34.CustomizationFormText = "VAT number: ";
     this.layoutControlItem34.Location = new System.Drawing.Point(636, 0);
     this.layoutControlItem34.MaxSize = new System.Drawing.Size(178, 17);
     this.layoutControlItem34.MinSize = new System.Drawing.Size(178, 17);
     this.layoutControlItem34.Name = "layoutControlItem34";
     this.layoutControlItem34.Size = new System.Drawing.Size(178, 17);
     this.layoutControlItem34.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem34.Text = "VAT number: ";
     this.layoutControlItem34.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem34.TextSize = new System.Drawing.Size(65, 13);
     this.layoutControlItem34.TextToControlDistance = 2;
     //
     // layoutControlItem35
     //
     this.layoutControlItem35.Control = this.labelControl3;
     this.layoutControlItem35.CustomizationFormText = "License Number:";
     this.layoutControlItem35.Location = new System.Drawing.Point(814, 0);
     this.layoutControlItem35.MaxSize = new System.Drawing.Size(178, 17);
     this.layoutControlItem35.MinSize = new System.Drawing.Size(178, 17);
     this.layoutControlItem35.Name = "layoutControlItem35";
     this.layoutControlItem35.Size = new System.Drawing.Size(178, 17);
     this.layoutControlItem35.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem35.Text = "License Number:";
     this.layoutControlItem35.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem35.TextSize = new System.Drawing.Size(79, 13);
     this.layoutControlItem35.TextToControlDistance = 2;
     //
     // emptySpaceItem9
     //
     this.emptySpaceItem9.AllowHotTrack = false;
     this.emptySpaceItem9.CustomizationFormText = "emptySpaceItem9";
     this.emptySpaceItem9.Location = new System.Drawing.Point(430, 0);
     this.emptySpaceItem9.Name = "emptySpaceItem9";
     this.emptySpaceItem9.Size = new System.Drawing.Size(29, 17);
     this.emptySpaceItem9.Text = "emptySpaceItem9";
     this.emptySpaceItem9.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem11,
     this.lkPeriodlayout,
     this.layoutControlItem14,
     this.layoutForFacility});
     this.layoutControlGroup3.Location = new System.Drawing.Point(735, 19);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Size = new System.Drawing.Size(306, 120);
     this.layoutControlGroup3.Text = " ";
     this.layoutControlGroup3.TextVisible = false;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem11.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem11.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem11.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem11.Control = this.lkOwnership;
     this.layoutControlItem11.CustomizationFormText = "Ownership";
     this.layoutControlItem11.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(282, 24);
     this.layoutControlItem11.Text = "Ownership:";
     this.layoutControlItem11.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem11.TextSize = new System.Drawing.Size(62, 13);
     this.layoutControlItem11.TextToControlDistance = 5;
     //
     // lkPeriodlayout
     //
     this.lkPeriodlayout.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lkPeriodlayout.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.lkPeriodlayout.AppearanceItemCaption.Options.UseFont = true;
     this.lkPeriodlayout.AppearanceItemCaption.Options.UseForeColor = true;
     this.lkPeriodlayout.Control = this.lkPeriod;
     this.lkPeriodlayout.CustomizationFormText = "Period";
     this.lkPeriodlayout.ImageToTextDistance = 1;
     this.lkPeriodlayout.Location = new System.Drawing.Point(0, 72);
     this.lkPeriodlayout.Name = "lkPeriodlayout";
     this.lkPeriodlayout.Size = new System.Drawing.Size(282, 24);
     this.lkPeriodlayout.Text = "Period:";
     this.lkPeriodlayout.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.lkPeriodlayout.TextSize = new System.Drawing.Size(39, 13);
     this.lkPeriodlayout.TextToControlDistance = 28;
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem14.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem14.Control = this.lkType;
     this.layoutControlItem14.CustomizationFormText = "Type";
     this.layoutControlItem14.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(282, 24);
     this.layoutControlItem14.Text = "Inst. Type:";
     this.layoutControlItem14.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem14.TextSize = new System.Drawing.Size(60, 13);
     this.layoutControlItem14.TextToControlDistance = 7;
     //
     // layoutForFacility
     //
     this.layoutForFacility.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutForFacility.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutForFacility.AppearanceItemCaption.Options.UseFont = true;
     this.layoutForFacility.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutForFacility.Control = this.lkForFacility;
     this.layoutForFacility.CustomizationFormText = "For Facility";
     this.layoutForFacility.Location = new System.Drawing.Point(0, 48);
     this.layoutForFacility.Name = "layoutForFacility";
     this.layoutForFacility.Size = new System.Drawing.Size(282, 24);
     this.layoutForFacility.Text = "Facility:";
     this.layoutForFacility.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutForFacility.TextSize = new System.Drawing.Size(43, 13);
     this.layoutForFacility.TextToControlDistance = 24;
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(297, 0);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(368, 20);
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // popupMenu1
     //
     this.popupMenu1.Name = "popupMenu1";
     //
     // emptySpaceItem15
     //
     this.emptySpaceItem15.AllowHotTrack = false;
     this.emptySpaceItem15.CustomizationFormText = "emptySpaceItem15";
     this.emptySpaceItem15.Location = new System.Drawing.Point(0, 116);
     this.emptySpaceItem15.Name = "emptySpaceItem15";
     this.emptySpaceItem15.Size = new System.Drawing.Size(717, 10);
     this.emptySpaceItem15.Text = "emptySpaceItem15";
     this.emptySpaceItem15.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup8
     //
     this.layoutControlGroup8.CustomizationFormText = "layoutControlGroup8";
     this.layoutControlGroup8.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup8.Name = "layoutControlGroup8";
     this.layoutControlGroup8.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup8.Size = new System.Drawing.Size(717, 116);
     this.layoutControlGroup8.Text = "layoutControlGroup8";
     //
     // layoutControlGroup9
     //
     this.layoutControlGroup9.CustomizationFormText = "layoutControlGroup9";
     this.layoutControlGroup9.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup9.Name = "layoutControlGroup9";
     this.layoutControlGroup9.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup9.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup9.Text = "layoutControlGroup9";
     //
     // layoutControlGroup10
     //
     this.layoutControlGroup10.CustomizationFormText = "layoutControlGroup10";
     this.layoutControlGroup10.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup10.Name = "layoutControlGroup10";
     this.layoutControlGroup10.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup10.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup10.Text = "layoutControlGroup10";
     //
     // emptySpaceItem10
     //
     this.emptySpaceItem10.AllowHotTrack = false;
     this.emptySpaceItem10.CustomizationFormText = "emptySpaceItem10";
     this.emptySpaceItem10.Location = new System.Drawing.Point(0, 0);
     this.emptySpaceItem10.Name = "emptySpaceItem10";
     this.emptySpaceItem10.Size = new System.Drawing.Size(693, 10);
     this.emptySpaceItem10.Text = "emptySpaceItem10";
     this.emptySpaceItem10.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem22
     //
     this.emptySpaceItem22.AllowHotTrack = false;
     this.emptySpaceItem22.CustomizationFormText = "emptySpaceItem22";
     this.emptySpaceItem22.Location = new System.Drawing.Point(85, 0);
     this.emptySpaceItem22.Name = "emptySpaceItem22";
     this.emptySpaceItem22.Size = new System.Drawing.Size(119, 479);
     this.emptySpaceItem22.Text = "emptySpaceItem22";
     this.emptySpaceItem22.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem23
     //
     this.emptySpaceItem23.AllowHotTrack = false;
     this.emptySpaceItem23.CustomizationFormText = "emptySpaceItem23";
     this.emptySpaceItem23.Location = new System.Drawing.Point(1179, 24);
     this.emptySpaceItem23.Name = "emptySpaceItem23";
     this.emptySpaceItem23.Size = new System.Drawing.Size(10, 455);
     this.emptySpaceItem23.Text = "emptySpaceItem23";
     this.emptySpaceItem23.TextSize = new System.Drawing.Size(0, 0);
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
     this.printableComponentLink1,
     this.printOrder});
     //
     // printableComponentLink1
     //
     //
     //
     //
     this.printableComponentLink1.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink1.ImageCollection.ImageStream")));
     this.printableComponentLink1.Landscape = true;
     this.printableComponentLink1.Margins = new System.Drawing.Printing.Margins(20, 20, 20, 20);
     this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(null, new DevExpress.XtraPrinting.PageFooterArea(new string[] {
         "[Time Printed]",
         "[Date Printed]",
         "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))), DevExpress.XtraPrinting.BrickAlignment.Near));
     this.printableComponentLink1.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printableComponentLink1.PrintingSystem = this.printingSystem1;
     this.printableComponentLink1.PrintingSystemBase = this.printingSystem1;
     this.printableComponentLink1.RtfReportHeader = resources.GetString("printableComponentLink1.RtfReportHeader");
     //
     // printOrder
     //
     //
     //
     //
     this.printOrder.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printOrder.ImageCollection.ImageStream")));
     this.printOrder.Landscape = true;
     this.printOrder.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printOrder.PrintingSystem = this.printingSystem1;
     this.printOrder.PrintingSystemBase = this.printingSystem1;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.CustomizationFormText = "Type";
     this.layoutControlItem9.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem9.Name = "layoutControlItem5";
     this.layoutControlItem9.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem9.Text = "Facility Type";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem9.TextToControlDistance = 5;
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.CustomizationFormText = "Type";
     this.layoutControlItem10.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem10.Name = "layoutControlItem5";
     this.layoutControlItem10.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem10.Text = "Facility Type";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem10.TextToControlDistance = 5;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.CustomizationFormText = "Woreda";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem6.Name = "layoutControlItem4";
     this.layoutControlItem6.Size = new System.Drawing.Size(387, 24);
     this.layoutControlItem6.Text = "Woreda";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem6.TextToControlDistance = 5;
     //
     // layoutControlItem16
     //
     this.layoutControlItem16.CustomizationFormText = "Ownership";
     this.layoutControlItem16.Location = new System.Drawing.Point(387, 0);
     this.layoutControlItem16.Name = "layoutControlItem6";
     this.layoutControlItem16.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem16.Text = "Ownership Type";
     this.layoutControlItem16.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem16.TextToControlDistance = 5;
     //
     // layoutControlItem17
     //
     this.layoutControlItem17.CustomizationFormText = "Type";
     this.layoutControlItem17.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem17.Name = "layoutControlItem5";
     this.layoutControlItem17.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem17.Text = "Facility Type";
     this.layoutControlItem17.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem17.TextToControlDistance = 5;
     //
     // layoutControlItem26
     //
     this.layoutControlItem26.CustomizationFormText = "Woreda";
     this.layoutControlItem26.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem26.Name = "layoutControlItem4";
     this.layoutControlItem26.Size = new System.Drawing.Size(387, 24);
     this.layoutControlItem26.Text = "Woreda";
     this.layoutControlItem26.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem26.TextToControlDistance = 5;
     //
     // layoutControlItem27
     //
     this.layoutControlItem27.CustomizationFormText = "Ownership";
     this.layoutControlItem27.Location = new System.Drawing.Point(387, 0);
     this.layoutControlItem27.Name = "layoutControlItem6";
     this.layoutControlItem27.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem27.Text = "Ownership Type";
     this.layoutControlItem27.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem27.TextToControlDistance = 5;
     //
     // layoutControlItem28
     //
     this.layoutControlItem28.CustomizationFormText = "Type";
     this.layoutControlItem28.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem28.Name = "layoutControlItem5";
     this.layoutControlItem28.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem28.Text = "Facility Type";
     this.layoutControlItem28.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem28.TextToControlDistance = 5;
     //
     // simpleLabelItem13
     //
     this.simpleLabelItem13.AllowHotTrack = false;
     this.simpleLabelItem13.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem13.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem13.CustomizationFormText = "Insurance";
     this.simpleLabelItem13.Location = new System.Drawing.Point(459, 85);
     this.simpleLabelItem13.Name = "simpleLabelItem13";
     this.simpleLabelItem13.Size = new System.Drawing.Size(165, 17);
     this.simpleLabelItem13.Text = "Insurance:";
     this.simpleLabelItem13.TextSize = new System.Drawing.Size(111, 13);
     //
     // simpleLabelItem1
     //
     this.simpleLabelItem1.AllowHotTrack = false;
     this.simpleLabelItem1.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem1.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem1.CustomizationFormText = "Insurance";
     this.simpleLabelItem1.Location = new System.Drawing.Point(459, 85);
     this.simpleLabelItem1.Name = "simpleLabelItem13";
     this.simpleLabelItem1.Size = new System.Drawing.Size(165, 17);
     this.simpleLabelItem1.Text = "Insurance:";
     this.simpleLabelItem1.TextSize = new System.Drawing.Size(111, 13);
     //
     // simpleLabelItem2
     //
     this.simpleLabelItem2.AllowHotTrack = false;
     this.simpleLabelItem2.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem2.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem2.CustomizationFormText = "Insurance";
     this.simpleLabelItem2.Location = new System.Drawing.Point(459, 85);
     this.simpleLabelItem2.Name = "simpleLabelItem13";
     this.simpleLabelItem2.Size = new System.Drawing.Size(165, 17);
     this.simpleLabelItem2.Text = "Insurance:";
     this.simpleLabelItem2.TextSize = new System.Drawing.Size(111, 13);
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "Ownership Type";
     this.gridColumn23.FieldName = "OwnershipName";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 4;
     //
     // WishListForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1350, 393);
     this.Controls.Add(this.layoutControl4);
     this.Name = "WishListForm";
     this.Text = "Order";
     this.Load += new System.EventHandler(this.OrderForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditPack)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl4)).EndInit();
     this.layoutControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkRange.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShowStockOutCheckBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.ItemSelectionPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.orderGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrderView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditQtyPerPack)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridRecieveView1)).EndInit();
     this.VolumeMetricsPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkContainerTypes.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdVolumeGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdVolumeGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem33)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkOwnership.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkWoreda.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceivedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTin.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVatRegistration.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRegistrationNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLetterNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkModes.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkZone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRegion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkCategoires.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemsChoice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemChoiceView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPaymentType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkForFacility.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPeriod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRequisitionType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutReload)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarlayoutControlItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastVisitlayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoRequisitionlayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShowStockOutCheckBoxLayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RequisitionTypelayoutControlItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RangeLayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem52)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem34)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPeriodlayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutForFacility)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printOrder.ImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidation1stTab)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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(MainFrm));
     this.barManagerMain = new DevExpress.XtraBars.BarManager(this.components);
     this.barUp = new DevExpress.XtraBars.Bar();
     this.barSubItemFile = new DevExpress.XtraBars.BarSubItem();
     this.mbConnection = new DevExpress.XtraBars.BarButtonItem();
     this.mbExit = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemView = new DevExpress.XtraBars.BarSubItem();
     this.mbCode = new DevExpress.XtraBars.BarButtonItem();
     this.mbData = new DevExpress.XtraBars.BarButtonItem();
     this.mbQuery = new DevExpress.XtraBars.BarButtonItem();
     this.mbReport = new DevExpress.XtraBars.BarButtonItem();
     this.mbPriv = new DevExpress.XtraBars.BarButtonItem();
     this.mbResult = new DevExpress.XtraBars.BarButtonItem();
     this.mbSkins = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemWindows = new DevExpress.XtraBars.BarSubItem();
     this.mbcascade = new DevExpress.XtraBars.BarButtonItem();
     this.mbtileVertical = new DevExpress.XtraBars.BarButtonItem();
     this.mbtileHorizontal = new DevExpress.XtraBars.BarButtonItem();
     this.mbcloseAll = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemHelp = new DevExpress.XtraBars.BarSubItem();
     this.mbIndex = new DevExpress.XtraBars.BarButtonItem();
     this.mbAboutUs = new DevExpress.XtraBars.BarButtonItem();
     this.barEditItemasase_code = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemLookUpEditasase_code = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.barDown = new DevExpress.XtraBars.Bar();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.dockManagerMain = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.panelContainer3 = new DevExpress.XtraBars.Docking.DockPanel();
     this.DPSkins = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer6 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.galleryControlSkins = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.DPResult = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer5 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.Logging = new System.Windows.Forms.RichTextBox();
     this.panelContainer1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.DPCode = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlCode = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpCD_AsaseEmp = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_EmpState = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_JobDescription = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_EmpJob = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_Department = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_Subject = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_QualifiedPlace = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCDQualification = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_Specialization = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_MaritalStatus = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_Courses = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCDPlaceTraining = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_AgazaType = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCDTakdeer = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_EznType = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_GzaaType = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_GehaGazaa = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_EmpTIME = new DevExpress.XtraNavBar.NavBarItem();
     this.imageCollection32 = new DevExpress.Utils.ImageCollection(this.components);
     this.DPData = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer1 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlData = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpTBL_Emp = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEmp_Moaahel = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_agazat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_Later = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_ezn = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_gzaat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_training = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_TAMEEN = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_report = new DevExpress.XtraNavBar.NavBarItem();
     this.DPPriv = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer4 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlPriv = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup3 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpRoles = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpRoleDetial = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpUsers = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpUserRoles = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpAppOptions = new DevExpress.XtraNavBar.NavBarItem();
     this.panelContainer2 = new DevExpress.XtraBars.Docking.DockPanel();
     this.DPReport = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer3 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlReport = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup4 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpXRepEmpAddress = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpXRepEmpagazat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpXRepEmpAll = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup7 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup8 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup9 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpDeployRpt = new DevExpress.XtraNavBar.NavBarItem();
     this.DPQuery = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer2 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlQry = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup5 = new DevExpress.XtraNavBar.NavBarGroup();
     this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemComboBoxSkins = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.navBarItemEmpXRepEmpDetail = new DevExpress.XtraNavBar.NavBarItem();
     ((System.ComponentModel.ISupportInitialize)(this.barManagerMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditasase_code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).BeginInit();
     this.panelContainer3.SuspendLayout();
     this.DPSkins.SuspendLayout();
     this.controlContainer6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControlSkins)).BeginInit();
     this.galleryControlSkins.SuspendLayout();
     this.DPResult.SuspendLayout();
     this.controlContainer5.SuspendLayout();
     this.panelContainer1.SuspendLayout();
     this.DPCode.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).BeginInit();
     this.DPData.SuspendLayout();
     this.controlContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlData)).BeginInit();
     this.DPPriv.SuspendLayout();
     this.controlContainer4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlPriv)).BeginInit();
     this.panelContainer2.SuspendLayout();
     this.DPReport.SuspendLayout();
     this.controlContainer3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlReport)).BeginInit();
     this.DPQuery.SuspendLayout();
     this.controlContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlQry)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBoxSkins)).BeginInit();
     this.SuspendLayout();
     //
     // barManagerMain
     //
     this.barManagerMain.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.barUp,
     this.barDown});
     this.barManagerMain.DockControls.Add(this.barDockControlTop);
     this.barManagerMain.DockControls.Add(this.barDockControlBottom);
     this.barManagerMain.DockControls.Add(this.barDockControlLeft);
     this.barManagerMain.DockControls.Add(this.barDockControlRight);
     this.barManagerMain.DockManager = this.dockManagerMain;
     this.barManagerMain.Form = this;
     this.barManagerMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barSubItemFile,
     this.barSubItemView,
     this.barSubItemHelp,
     this.mbConnection,
     this.mbExit,
     this.mbCode,
     this.mbData,
     this.mbQuery,
     this.mbReport,
     this.mbPriv,
     this.mbAboutUs,
     this.mbIndex,
     this.barEditItem1,
     this.barEditItemasase_code,
     this.mbResult,
     this.mbSkins,
     this.barSubItemWindows,
     this.mbcascade,
     this.mbtileVertical,
     this.mbtileHorizontal,
     this.mbcloseAll});
     this.barManagerMain.MainMenu = this.barUp;
     this.barManagerMain.MaxItemId = 28;
     this.barManagerMain.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemComboBoxSkins,
     this.repositoryItemLookUpEditasase_code});
     this.barManagerMain.StatusBar = this.barDown;
     this.barManagerMain.TransparentEditors = true;
     //
     // barUp
     //
     this.barUp.BarName = "Main menu";
     this.barUp.DockCol = 0;
     this.barUp.DockRow = 0;
     this.barUp.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.barUp.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemFile),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemView),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemWindows),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemHelp),
     new DevExpress.XtraBars.LinkPersistInfo(this.barEditItemasase_code)});
     this.barUp.OptionsBar.MultiLine = true;
     this.barUp.OptionsBar.UseWholeRow = true;
     this.barUp.Text = "Main menu";
     //
     // barSubItemFile
     //
     this.barSubItemFile.Caption = "ملف";
     this.barSubItemFile.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemFile.Glyph")));
     this.barSubItemFile.Id = 0;
     this.barSubItemFile.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.mbConnection, DevExpress.XtraBars.BarItemPaintStyle.Standard),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbExit)});
     this.barSubItemFile.Name = "barSubItemFile";
     this.barSubItemFile.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // mbConnection
     //
     this.mbConnection.Caption = "الغاء الاتصال";
     this.mbConnection.Glyph = ((System.Drawing.Image)(resources.GetObject("mbConnection.Glyph")));
     this.mbConnection.Id = 3;
     this.mbConnection.Name = "mbConnection";
     this.mbConnection.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbConnection_ItemClick);
     //
     // mbExit
     //
     this.mbExit.Caption = "خروج";
     this.mbExit.Glyph = global::Employee.Properties.Resources.Exit;
     this.mbExit.Id = 4;
     this.mbExit.Name = "mbExit";
     this.mbExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbExit_ItemClick);
     //
     // barSubItemView
     //
     this.barSubItemView.Caption = "عرض";
     this.barSubItemView.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemView.Glyph")));
     this.barSubItemView.Id = 1;
     this.barSubItemView.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbCode),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbData),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbQuery),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbReport),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbPriv),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbResult),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbSkins)});
     this.barSubItemView.Name = "barSubItemView";
     this.barSubItemView.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // mbCode
     //
     this.mbCode.Caption = "اكواد";
     this.mbCode.Glyph = ((System.Drawing.Image)(resources.GetObject("mbCode.Glyph")));
     this.mbCode.Id = 5;
     this.mbCode.Name = "mbCode";
     this.mbCode.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbCode_ItemClick);
     //
     // mbData
     //
     this.mbData.Caption = "ادخال بيانات";
     this.mbData.Glyph = ((System.Drawing.Image)(resources.GetObject("mbData.Glyph")));
     this.mbData.Id = 6;
     this.mbData.Name = "mbData";
     this.mbData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbData_ItemClick);
     //
     // mbQuery
     //
     this.mbQuery.Caption = "استعلامات";
     this.mbQuery.Glyph = ((System.Drawing.Image)(resources.GetObject("mbQuery.Glyph")));
     this.mbQuery.Id = 7;
     this.mbQuery.Name = "mbQuery";
     this.mbQuery.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbQuery_ItemClick);
     //
     // mbReport
     //
     this.mbReport.Caption = "تقارير";
     this.mbReport.Glyph = global::Employee.Properties.Resources.Print;
     this.mbReport.Id = 8;
     this.mbReport.Name = "mbReport";
     this.mbReport.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbReport_ItemClick);
     //
     // mbPriv
     //
     this.mbPriv.Caption = "صلاحيات";
     this.mbPriv.Glyph = ((System.Drawing.Image)(resources.GetObject("mbPriv.Glyph")));
     this.mbPriv.Id = 9;
     this.mbPriv.Name = "mbPriv";
     this.mbPriv.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbPriv_ItemClick);
     //
     // mbResult
     //
     this.mbResult.Caption = "نتائج العمليات";
     this.mbResult.Glyph = global::Employee.Properties.Resources.info16;
     this.mbResult.Id = 20;
     this.mbResult.Name = "mbResult";
     this.mbResult.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbResult_ItemClick);
     //
     // mbSkins
     //
     this.mbSkins.Caption = "الاشكال";
     this.mbSkins.Glyph = global::Employee.Properties.Resources.Skins;
     this.mbSkins.Id = 21;
     this.mbSkins.Name = "mbSkins";
     this.mbSkins.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbSkins_ItemClick);
     //
     // barSubItemWindows
     //
     this.barSubItemWindows.Caption = "النوافذ";
     this.barSubItemWindows.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemWindows.Glyph")));
     this.barSubItemWindows.Id = 22;
     this.barSubItemWindows.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbcascade),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbtileVertical),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbtileHorizontal),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbcloseAll)});
     this.barSubItemWindows.Name = "barSubItemWindows";
     this.barSubItemWindows.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // mbcascade
     //
     this.mbcascade.Caption = "ترتيب النوافذ";
     this.mbcascade.Glyph = ((System.Drawing.Image)(resources.GetObject("mbcascade.Glyph")));
     this.mbcascade.Id = 23;
     this.mbcascade.Name = "mbcascade";
     this.mbcascade.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbcascade_ItemClick);
     //
     // mbtileVertical
     //
     this.mbtileVertical.Caption = "العناوين رأسي";
     this.mbtileVertical.Glyph = ((System.Drawing.Image)(resources.GetObject("mbtileVertical.Glyph")));
     this.mbtileVertical.Id = 24;
     this.mbtileVertical.Name = "mbtileVertical";
     this.mbtileVertical.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbtileVertical_ItemClick);
     //
     // mbtileHorizontal
     //
     this.mbtileHorizontal.Caption = "العناوين افقي";
     this.mbtileHorizontal.Glyph = ((System.Drawing.Image)(resources.GetObject("mbtileHorizontal.Glyph")));
     this.mbtileHorizontal.Id = 25;
     this.mbtileHorizontal.Name = "mbtileHorizontal";
     this.mbtileHorizontal.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbtileHorizontal_ItemClick);
     //
     // mbcloseAll
     //
     this.mbcloseAll.Caption = "اغلاق الكل";
     this.mbcloseAll.Glyph = ((System.Drawing.Image)(resources.GetObject("mbcloseAll.Glyph")));
     this.mbcloseAll.Id = 26;
     this.mbcloseAll.Name = "mbcloseAll";
     this.mbcloseAll.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbcloseAll_ItemClick);
     //
     // barSubItemHelp
     //
     this.barSubItemHelp.Caption = "مساعده";
     this.barSubItemHelp.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemHelp.Glyph")));
     this.barSubItemHelp.Id = 2;
     this.barSubItemHelp.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbIndex),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbAboutUs)});
     this.barSubItemHelp.Name = "barSubItemHelp";
     this.barSubItemHelp.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // mbIndex
     //
     this.mbIndex.Caption = "كتاب المساعده";
     this.mbIndex.Glyph = global::Employee.Properties.Resources.Index;
     this.mbIndex.Id = 11;
     this.mbIndex.Name = "mbIndex";
     //
     // mbAboutUs
     //
     this.mbAboutUs.Caption = "عن البرنامج";
     this.mbAboutUs.Glyph = global::Employee.Properties.Resources.About;
     this.mbAboutUs.Id = 10;
     this.mbAboutUs.Name = "mbAboutUs";
     this.mbAboutUs.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbAboutUs_ItemClick);
     //
     // barEditItemasase_code
     //
     this.barEditItemasase_code.Caption = "العام الدراسي";
     this.barEditItemasase_code.Edit = this.repositoryItemLookUpEditasase_code;
     this.barEditItemasase_code.Id = 18;
     this.barEditItemasase_code.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F12));
     this.barEditItemasase_code.Name = "barEditItemasase_code";
     this.barEditItemasase_code.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
     this.barEditItemasase_code.Width = 150;
     //
     // repositoryItemLookUpEditasase_code
     //
     this.repositoryItemLookUpEditasase_code.Appearance.Options.UseTextOptions = true;
     this.repositoryItemLookUpEditasase_code.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repositoryItemLookUpEditasase_code.AutoHeight = false;
     this.repositoryItemLookUpEditasase_code.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.OK)});
     this.repositoryItemLookUpEditasase_code.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("asase_year", "العام الدراسي", 50, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SCHOOL", "اسم المدرسه", 50, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center)});
     this.repositoryItemLookUpEditasase_code.DisplayMember = "asase_year";
     this.repositoryItemLookUpEditasase_code.DropDownRows = 10;
     this.repositoryItemLookUpEditasase_code.Name = "repositoryItemLookUpEditasase_code";
     this.repositoryItemLookUpEditasase_code.NullText = "اختار عام دراسي";
     this.repositoryItemLookUpEditasase_code.NullValuePrompt = "اختار عام دراسي";
     this.repositoryItemLookUpEditasase_code.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditasase_code.UseParentBackground = true;
     this.repositoryItemLookUpEditasase_code.ValueMember = "asase_code";
     this.repositoryItemLookUpEditasase_code.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemLookUpEditasase_code_ButtonClick);
     //
     // barDown
     //
     this.barDown.BarName = "Status bar";
     this.barDown.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.barDown.DockCol = 0;
     this.barDown.DockRow = 0;
     this.barDown.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.barDown.OptionsBar.AllowQuickCustomization = false;
     this.barDown.OptionsBar.DrawDragBorder = false;
     this.barDown.OptionsBar.MultiLine = true;
     this.barDown.OptionsBar.UseWholeRow = true;
     this.barDown.Text = "Status bar";
     //
     // 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(984, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 639);
     this.barDockControlBottom.Size = new System.Drawing.Size(984, 23);
     //
     // 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, 615);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(984, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 615);
     //
     // dockManagerMain
     //
     this.dockManagerMain.DockingOptions.ShowCaptionImage = true;
     this.dockManagerMain.DockMode = DevExpress.XtraBars.Docking.Helpers.DockMode.Standard;
     this.dockManagerMain.Form = this;
     this.dockManagerMain.MenuManager = this.barManagerMain;
     this.dockManagerMain.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.panelContainer3,
     this.panelContainer1,
     this.panelContainer2});
     this.dockManagerMain.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // panelContainer3
     //
     this.panelContainer3.ActiveChild = this.DPSkins;
     this.panelContainer3.Appearance.Options.UseTextOptions = true;
     this.panelContainer3.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
     this.panelContainer3.Controls.Add(this.DPSkins);
     this.panelContainer3.Controls.Add(this.DPResult);
     this.panelContainer3.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
     this.panelContainer3.FloatVertical = true;
     this.panelContainer3.ID = new System.Guid("32f22386-9be7-4e30-adad-02dbf53b351f");
     this.panelContainer3.Location = new System.Drawing.Point(0, 529);
     this.panelContainer3.Name = "panelContainer3";
     this.panelContainer3.OriginalSize = new System.Drawing.Size(198, 110);
     this.panelContainer3.Size = new System.Drawing.Size(984, 110);
     this.panelContainer3.Tabbed = true;
     this.panelContainer3.TabsScroll = true;
     this.panelContainer3.Text = "panelContainer3";
     //
     // DPSkins
     //
     this.DPSkins.Controls.Add(this.controlContainer6);
     this.DPSkins.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPSkins.FloatVertical = true;
     this.DPSkins.ID = new System.Guid("5d027091-716e-4480-919f-6381f5702c5a");
     this.DPSkins.Location = new System.Drawing.Point(4, 23);
     this.DPSkins.Name = "DPSkins";
     this.DPSkins.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPSkins.Size = new System.Drawing.Size(976, 56);
     this.DPSkins.TabsScroll = true;
     this.DPSkins.Text = "الاشكال";
     //
     // controlContainer6
     //
     this.controlContainer6.Controls.Add(this.galleryControlSkins);
     this.controlContainer6.Location = new System.Drawing.Point(0, 0);
     this.controlContainer6.Name = "controlContainer6";
     this.controlContainer6.Size = new System.Drawing.Size(976, 56);
     this.controlContainer6.TabIndex = 0;
     //
     // galleryControlSkins
     //
     this.galleryControlSkins.Controls.Add(this.galleryControlClient1);
     this.galleryControlSkins.DesignGalleryGroupIndex = 0;
     this.galleryControlSkins.DesignGalleryItemIndex = 0;
     this.galleryControlSkins.Dock = System.Windows.Forms.DockStyle.Fill;
     this.galleryControlSkins.Location = new System.Drawing.Point(0, 0);
     this.galleryControlSkins.Name = "galleryControlSkins";
     this.galleryControlSkins.Size = new System.Drawing.Size(976, 56);
     this.galleryControlSkins.TabIndex = 0;
     this.galleryControlSkins.Text = "الاشكال";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControlSkins;
     this.galleryControlClient1.Location = new System.Drawing.Point(2, 2);
     this.galleryControlClient1.Size = new System.Drawing.Size(955, 52);
     //
     // DPResult
     //
     this.DPResult.Controls.Add(this.controlContainer5);
     this.DPResult.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPResult.FloatVertical = true;
     this.DPResult.ID = new System.Guid("abdfe4d0-1d6a-4f6b-abc2-985fb9d484f3");
     this.DPResult.Location = new System.Drawing.Point(4, 23);
     this.DPResult.Name = "DPResult";
     this.DPResult.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPResult.Size = new System.Drawing.Size(976, 56);
     this.DPResult.Text = "نتائج العمليات";
     //
     // controlContainer5
     //
     this.controlContainer5.Controls.Add(this.Logging);
     this.controlContainer5.Location = new System.Drawing.Point(0, 0);
     this.controlContainer5.Name = "controlContainer5";
     this.controlContainer5.Size = new System.Drawing.Size(976, 56);
     this.controlContainer5.TabIndex = 0;
     //
     // Logging
     //
     this.Logging.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Logging.Location = new System.Drawing.Point(0, 0);
     this.Logging.Name = "Logging";
     this.Logging.ReadOnly = true;
     this.Logging.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.Logging.Size = new System.Drawing.Size(976, 56);
     this.Logging.TabIndex = 0;
     this.Logging.Text = "";
     this.Logging.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.Logging_MouseDoubleClick);
     //
     // panelContainer1
     //
     this.panelContainer1.ActiveChild = this.DPCode;
     this.panelContainer1.Appearance.Options.UseTextOptions = true;
     this.panelContainer1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
     this.panelContainer1.Controls.Add(this.DPCode);
     this.panelContainer1.Controls.Add(this.DPData);
     this.panelContainer1.Controls.Add(this.DPPriv);
     this.panelContainer1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.panelContainer1.FloatVertical = true;
     this.panelContainer1.ID = new System.Guid("f4ff1062-9a77-404f-9187-cec889fb9ba4");
     this.panelContainer1.Location = new System.Drawing.Point(0, 24);
     this.panelContainer1.Name = "panelContainer1";
     this.panelContainer1.OriginalSize = new System.Drawing.Size(200, 200);
     this.panelContainer1.Size = new System.Drawing.Size(200, 505);
     this.panelContainer1.Tabbed = true;
     this.panelContainer1.TabsScroll = true;
     this.panelContainer1.Text = "panelContainer1";
     //
     // DPCode
     //
     this.DPCode.Controls.Add(this.dockPanel1_Container);
     this.DPCode.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPCode.ID = new System.Guid("1cfd6550-8070-4cff-ad59-cba8d2680fa9");
     this.DPCode.Location = new System.Drawing.Point(4, 23);
     this.DPCode.Name = "DPCode";
     this.DPCode.OriginalSize = new System.Drawing.Size(192, 453);
     this.DPCode.Size = new System.Drawing.Size(192, 451);
     this.DPCode.TabsScroll = true;
     this.DPCode.TabText = "الاكواد";
     this.DPCode.Text = "الاكواد";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.navBarControlCode);
     this.dockPanel1_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(192, 451);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // navBarControlCode
     //
     this.navBarControlCode.ActiveGroup = this.navBarGroup1;
     this.navBarControlCode.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlCode.ExplorerBarShowGroupButtons = false;
     this.navBarControlCode.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup1});
     this.navBarControlCode.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemEmpCD_AsaseEmp,
     this.navBarItemEmpCD_EmpState,
     this.navBarItemEmpCD_JobDescription,
     this.navBarItemEmpCD_EmpJob,
     this.navBarItemEmpCD_Department,
     this.navBarItemEmpCD_Subject,
     this.navBarItemEmpCDQualification,
     this.navBarItemEmpCD_QualifiedPlace,
     this.navBarItemEmpCD_Specialization,
     this.navBarItemEmpCD_MaritalStatus,
     this.navBarItemEmpCD_Courses,
     this.navBarItemEmpCDPlaceTraining,
     this.navBarItemEmpCD_AgazaType,
     this.navBarItemEmpCDTakdeer,
     this.navBarItemEmpCD_EznType,
     this.navBarItemEmpCD_GzaaType,
     this.navBarItemEmpCD_GehaGazaa,
     this.navBarItemEmpCD_EmpTIME});
     this.navBarControlCode.LargeImages = this.imageCollection32;
     this.navBarControlCode.Location = new System.Drawing.Point(0, 0);
     this.navBarControlCode.Name = "navBarControlCode";
     this.navBarControlCode.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlCode.Size = new System.Drawing.Size(192, 451);
     this.navBarControlCode.SmallImages = this.imageCollection32;
     this.navBarControlCode.StoreDefaultPaintStyleName = true;
     this.navBarControlCode.TabIndex = 8;
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_AsaseEmp),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_EmpState),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_JobDescription),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_EmpJob),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_Department),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_Subject),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_QualifiedPlace),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCDQualification),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_Specialization),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_MaritalStatus),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_Courses),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCDPlaceTraining),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_AgazaType),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCDTakdeer),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_EznType),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_GzaaType),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_GehaGazaa),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_EmpTIME)});
     this.navBarGroup1.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.LargeImage")));
     this.navBarGroup1.Name = "navBarGroup1";
     this.navBarGroup1.NavigationPaneVisible = false;
     this.navBarGroup1.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.SmallImage")));
     //
     // navBarItemEmpCD_AsaseEmp
     //
     this.navBarItemEmpCD_AsaseEmp.Caption = "تحديد العام الدراسي";
     this.navBarItemEmpCD_AsaseEmp.LargeImageIndex = 7;
     this.navBarItemEmpCD_AsaseEmp.Name = "navBarItemEmpCD_AsaseEmp";
     this.navBarItemEmpCD_AsaseEmp.SmallImageIndex = 7;
     this.navBarItemEmpCD_AsaseEmp.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_AsaseEmp_LinkClicked);
     //
     // navBarItemEmpCD_EmpState
     //
     this.navBarItemEmpCD_EmpState.Caption = "الحاله الوظيفيه";
     this.navBarItemEmpCD_EmpState.LargeImageIndex = 8;
     this.navBarItemEmpCD_EmpState.Name = "navBarItemEmpCD_EmpState";
     this.navBarItemEmpCD_EmpState.SmallImageIndex = 8;
     this.navBarItemEmpCD_EmpState.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_EmpState_LinkClicked);
     //
     // navBarItemEmpCD_JobDescription
     //
     this.navBarItemEmpCD_JobDescription.Caption = "الوصف الوظيفي";
     this.navBarItemEmpCD_JobDescription.LargeImageIndex = 9;
     this.navBarItemEmpCD_JobDescription.Name = "navBarItemEmpCD_JobDescription";
     this.navBarItemEmpCD_JobDescription.SmallImageIndex = 9;
     this.navBarItemEmpCD_JobDescription.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_JobDescription_LinkClicked);
     //
     // navBarItemEmpCD_EmpJob
     //
     this.navBarItemEmpCD_EmpJob.Caption = "وظائف العاملين";
     this.navBarItemEmpCD_EmpJob.LargeImageIndex = 10;
     this.navBarItemEmpCD_EmpJob.Name = "navBarItemEmpCD_EmpJob";
     this.navBarItemEmpCD_EmpJob.SmallImageIndex = 10;
     this.navBarItemEmpCD_EmpJob.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_EmpJob_LinkClicked);
     //
     // navBarItemEmpCD_Department
     //
     this.navBarItemEmpCD_Department.Caption = "الاقسام";
     this.navBarItemEmpCD_Department.LargeImageIndex = 11;
     this.navBarItemEmpCD_Department.Name = "navBarItemEmpCD_Department";
     this.navBarItemEmpCD_Department.SmallImageIndex = 11;
     this.navBarItemEmpCD_Department.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_Department_LinkClicked);
     //
     // navBarItemEmpCD_Subject
     //
     this.navBarItemEmpCD_Subject.Caption = "المواد";
     this.navBarItemEmpCD_Subject.LargeImageIndex = 12;
     this.navBarItemEmpCD_Subject.Name = "navBarItemEmpCD_Subject";
     this.navBarItemEmpCD_Subject.SmallImageIndex = 12;
     this.navBarItemEmpCD_Subject.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_Subject_LinkClicked);
     //
     // navBarItemEmpCD_QualifiedPlace
     //
     this.navBarItemEmpCD_QualifiedPlace.Caption = "جهة المؤهل";
     this.navBarItemEmpCD_QualifiedPlace.LargeImageIndex = 13;
     this.navBarItemEmpCD_QualifiedPlace.Name = "navBarItemEmpCD_QualifiedPlace";
     this.navBarItemEmpCD_QualifiedPlace.SmallImageIndex = 13;
     this.navBarItemEmpCD_QualifiedPlace.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_QualifiedPlace_LinkClicked);
     //
     // navBarItemEmpCDQualification
     //
     this.navBarItemEmpCDQualification.Caption = "المؤهلات";
     this.navBarItemEmpCDQualification.LargeImageIndex = 14;
     this.navBarItemEmpCDQualification.Name = "navBarItemEmpCDQualification";
     this.navBarItemEmpCDQualification.SmallImageIndex = 14;
     this.navBarItemEmpCDQualification.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCDQualification_LinkClicked);
     //
     // navBarItemEmpCD_Specialization
     //
     this.navBarItemEmpCD_Specialization.Caption = "تخصص المؤهل";
     this.navBarItemEmpCD_Specialization.LargeImageIndex = 15;
     this.navBarItemEmpCD_Specialization.Name = "navBarItemEmpCD_Specialization";
     this.navBarItemEmpCD_Specialization.SmallImageIndex = 15;
     this.navBarItemEmpCD_Specialization.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_Specialization_LinkClicked);
     //
     // navBarItemEmpCD_MaritalStatus
     //
     this.navBarItemEmpCD_MaritalStatus.Caption = "الحالة الاجتماعية";
     this.navBarItemEmpCD_MaritalStatus.LargeImageIndex = 16;
     this.navBarItemEmpCD_MaritalStatus.Name = "navBarItemEmpCD_MaritalStatus";
     this.navBarItemEmpCD_MaritalStatus.SmallImageIndex = 16;
     this.navBarItemEmpCD_MaritalStatus.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_MaritalStatus_LinkClicked);
     //
     // navBarItemEmpCD_Courses
     //
     this.navBarItemEmpCD_Courses.Caption = "الدورات التدريبية";
     this.navBarItemEmpCD_Courses.LargeImageIndex = 17;
     this.navBarItemEmpCD_Courses.Name = "navBarItemEmpCD_Courses";
     this.navBarItemEmpCD_Courses.SmallImageIndex = 17;
     this.navBarItemEmpCD_Courses.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_Courses_LinkClicked);
     //
     // navBarItemEmpCDPlaceTraining
     //
     this.navBarItemEmpCDPlaceTraining.Caption = "جهات التدريب";
     this.navBarItemEmpCDPlaceTraining.LargeImageIndex = 18;
     this.navBarItemEmpCDPlaceTraining.Name = "navBarItemEmpCDPlaceTraining";
     this.navBarItemEmpCDPlaceTraining.SmallImageIndex = 18;
     this.navBarItemEmpCDPlaceTraining.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCDPlaceTraining_LinkClicked);
     //
     // navBarItemEmpCD_AgazaType
     //
     this.navBarItemEmpCD_AgazaType.Caption = "انواع الغياب";
     this.navBarItemEmpCD_AgazaType.LargeImageIndex = 19;
     this.navBarItemEmpCD_AgazaType.Name = "navBarItemEmpCD_AgazaType";
     this.navBarItemEmpCD_AgazaType.SmallImageIndex = 19;
     this.navBarItemEmpCD_AgazaType.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_AgazaType_LinkClicked);
     //
     // navBarItemEmpCDTakdeer
     //
     this.navBarItemEmpCDTakdeer.Caption = "اكواد التقديرات";
     this.navBarItemEmpCDTakdeer.LargeImageIndex = 21;
     this.navBarItemEmpCDTakdeer.Name = "navBarItemEmpCDTakdeer";
     this.navBarItemEmpCDTakdeer.SmallImageIndex = 21;
     this.navBarItemEmpCDTakdeer.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCDTakdeer_LinkClicked);
     //
     // navBarItemEmpCD_EznType
     //
     this.navBarItemEmpCD_EznType.Caption = "انواع الاذن";
     this.navBarItemEmpCD_EznType.LargeImageIndex = 22;
     this.navBarItemEmpCD_EznType.Name = "navBarItemEmpCD_EznType";
     this.navBarItemEmpCD_EznType.SmallImageIndex = 22;
     this.navBarItemEmpCD_EznType.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_EznType_LinkClicked);
     //
     // navBarItemEmpCD_GzaaType
     //
     this.navBarItemEmpCD_GzaaType.Caption = "انواع الجزاءات";
     this.navBarItemEmpCD_GzaaType.LargeImageIndex = 23;
     this.navBarItemEmpCD_GzaaType.Name = "navBarItemEmpCD_GzaaType";
     this.navBarItemEmpCD_GzaaType.SmallImageIndex = 23;
     this.navBarItemEmpCD_GzaaType.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_GzaaType_LinkClicked);
     //
     // navBarItemEmpCD_GehaGazaa
     //
     this.navBarItemEmpCD_GehaGazaa.Caption = "جهة الجزاء";
     this.navBarItemEmpCD_GehaGazaa.LargeImageIndex = 24;
     this.navBarItemEmpCD_GehaGazaa.Name = "navBarItemEmpCD_GehaGazaa";
     this.navBarItemEmpCD_GehaGazaa.SmallImageIndex = 24;
     this.navBarItemEmpCD_GehaGazaa.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_GehaGazaa_LinkClicked);
     //
     // navBarItemEmpCD_EmpTIME
     //
     this.navBarItemEmpCD_EmpTIME.Caption = "اوقات العاملين";
     this.navBarItemEmpCD_EmpTIME.LargeImageIndex = 33;
     this.navBarItemEmpCD_EmpTIME.Name = "navBarItemEmpCD_EmpTIME";
     this.navBarItemEmpCD_EmpTIME.SmallImageIndex = 33;
     this.navBarItemEmpCD_EmpTIME.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_EmpTIME_LinkClicked);
     //
     // imageCollection32
     //
     this.imageCollection32.ImageSize = new System.Drawing.Size(32, 32);
     this.imageCollection32.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection32.ImageStream")));
     this.imageCollection32.Images.SetKeyName(0, "Roles.png");
     this.imageCollection32.Images.SetKeyName(1, "Users.png");
     this.imageCollection32.Images.SetKeyName(2, "UserRoles.png");
     this.imageCollection32.Images.SetKeyName(3, "RoleDetial.png");
     this.imageCollection32.Images.SetKeyName(4, "Reports.png");
     this.imageCollection32.Images.SetKeyName(5, "DeployRpt.png");
     this.imageCollection32.Images.SetKeyName(6, "AppOptions.png");
     this.imageCollection32.Images.SetKeyName(7, "CD_AsaseEmp.png");
     this.imageCollection32.Images.SetKeyName(8, "CD_EmpState.png");
     this.imageCollection32.Images.SetKeyName(9, "CD_JobDescription.png");
     this.imageCollection32.Images.SetKeyName(10, "CD_EmpJob.png");
     this.imageCollection32.Images.SetKeyName(11, "CD_Department.png");
     this.imageCollection32.Images.SetKeyName(12, "CD_Subject.png");
     this.imageCollection32.Images.SetKeyName(13, "CD_QualifiedPlace.png");
     this.imageCollection32.Images.SetKeyName(14, "CDQualification.png");
     this.imageCollection32.Images.SetKeyName(15, "CD_Specialization.png");
     this.imageCollection32.Images.SetKeyName(16, "CD_MaritalStatus.png");
     this.imageCollection32.Images.SetKeyName(17, "CD_Courses.png");
     this.imageCollection32.Images.SetKeyName(18, "CDPlaceTraining.png");
     this.imageCollection32.Images.SetKeyName(19, "CD_AgazaType.png");
     this.imageCollection32.Images.SetKeyName(20, "TBL_Emp.png");
     this.imageCollection32.Images.SetKeyName(21, "CDTakdeer.png");
     this.imageCollection32.Images.SetKeyName(22, "CD_EznType.png");
     this.imageCollection32.Images.SetKeyName(23, "CD_GzaaType.png");
     this.imageCollection32.Images.SetKeyName(24, "CD_GehaGazaa.png");
     this.imageCollection32.Images.SetKeyName(25, "Emp_Moaahel.png");
     this.imageCollection32.Images.SetKeyName(26, "EMP_agazat.png");
     this.imageCollection32.Images.SetKeyName(27, "EMP_Later.png");
     this.imageCollection32.Images.SetKeyName(28, "EMP_ezn.png");
     this.imageCollection32.Images.SetKeyName(29, "EMP_gzaat.png");
     this.imageCollection32.Images.SetKeyName(30, "EMP_training.png");
     this.imageCollection32.Images.SetKeyName(31, "EMP_TAMEEN.png");
     this.imageCollection32.Images.SetKeyName(32, "EMP_report.png");
     this.imageCollection32.Images.SetKeyName(33, "CD_EmpTIME.png");
     //
     // DPData
     //
     this.DPData.Controls.Add(this.controlContainer1);
     this.DPData.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPData.ID = new System.Guid("5a92e67b-e3d2-4e9c-a354-47ff59337c78");
     this.DPData.Location = new System.Drawing.Point(4, 23);
     this.DPData.Name = "DPData";
     this.DPData.OriginalSize = new System.Drawing.Size(192, 453);
     this.DPData.Size = new System.Drawing.Size(192, 451);
     this.DPData.TabStop = false;
     this.DPData.TabText = "ادخال البيانات";
     this.DPData.Text = "ادخال البيانات";
     //
     // controlContainer1
     //
     this.controlContainer1.Controls.Add(this.navBarControlData);
     this.controlContainer1.Location = new System.Drawing.Point(0, 0);
     this.controlContainer1.Name = "controlContainer1";
     this.controlContainer1.Size = new System.Drawing.Size(192, 451);
     this.controlContainer1.TabIndex = 0;
     //
     // navBarControlData
     //
     this.navBarControlData.ActiveGroup = this.navBarGroup2;
     this.navBarControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlData.ExplorerBarShowGroupButtons = false;
     this.navBarControlData.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup2});
     this.navBarControlData.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemEmpTBL_Emp,
     this.navBarItemEmpEmp_Moaahel,
     this.navBarItemEmpEMP_agazat,
     this.navBarItemEmpEMP_Later,
     this.navBarItemEmpEMP_ezn,
     this.navBarItemEmpEMP_gzaat,
     this.navBarItemEmpEMP_training,
     this.navBarItemEmpEMP_TAMEEN,
     this.navBarItemEmpEMP_report});
     this.navBarControlData.LargeImages = this.imageCollection32;
     this.navBarControlData.Location = new System.Drawing.Point(0, 0);
     this.navBarControlData.Name = "navBarControlData";
     this.navBarControlData.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlData.Size = new System.Drawing.Size(192, 451);
     this.navBarControlData.SmallImages = this.imageCollection32;
     this.navBarControlData.StoreDefaultPaintStyleName = true;
     this.navBarControlData.TabIndex = 9;
     this.navBarControlData.Text = "navBarControl1";
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption = "";
     this.navBarGroup2.Expanded = true;
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpTBL_Emp),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEmp_Moaahel),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_agazat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_Later),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_ezn),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_gzaat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_training),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_TAMEEN),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_report)});
     this.navBarGroup2.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.LargeImage")));
     this.navBarGroup2.Name = "navBarGroup2";
     this.navBarGroup2.NavigationPaneVisible = false;
     this.navBarGroup2.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.SmallImage")));
     //
     // navBarItemEmpTBL_Emp
     //
     this.navBarItemEmpTBL_Emp.Caption = "بيانات العاملين";
     this.navBarItemEmpTBL_Emp.LargeImageIndex = 20;
     this.navBarItemEmpTBL_Emp.Name = "navBarItemEmpTBL_Emp";
     this.navBarItemEmpTBL_Emp.SmallImageIndex = 20;
     this.navBarItemEmpTBL_Emp.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemTBL_Emp_LinkClicked);
     //
     // navBarItemEmpEmp_Moaahel
     //
     this.navBarItemEmpEmp_Moaahel.Caption = "مؤهلات اثناء الخدمة";
     this.navBarItemEmpEmp_Moaahel.LargeImageIndex = 25;
     this.navBarItemEmpEmp_Moaahel.Name = "navBarItemEmpEmp_Moaahel";
     this.navBarItemEmpEmp_Moaahel.SmallImageIndex = 25;
     this.navBarItemEmpEmp_Moaahel.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEmp_Moaahel_LinkClicked);
     //
     // navBarItemEmpEMP_agazat
     //
     this.navBarItemEmpEMP_agazat.Caption = "الغياب والاجازات";
     this.navBarItemEmpEMP_agazat.LargeImageIndex = 26;
     this.navBarItemEmpEMP_agazat.Name = "navBarItemEmpEMP_agazat";
     this.navBarItemEmpEMP_agazat.SmallImageIndex = 26;
     this.navBarItemEmpEMP_agazat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_agazat_LinkClicked);
     //
     // navBarItemEmpEMP_Later
     //
     this.navBarItemEmpEMP_Later.Caption = "التأخير";
     this.navBarItemEmpEMP_Later.LargeImageIndex = 27;
     this.navBarItemEmpEMP_Later.Name = "navBarItemEmpEMP_Later";
     this.navBarItemEmpEMP_Later.SmallImageIndex = 27;
     this.navBarItemEmpEMP_Later.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_Later_LinkClicked);
     //
     // navBarItemEmpEMP_ezn
     //
     this.navBarItemEmpEMP_ezn.Caption = "اذونات الموظفين";
     this.navBarItemEmpEMP_ezn.LargeImageIndex = 28;
     this.navBarItemEmpEMP_ezn.Name = "navBarItemEmpEMP_ezn";
     this.navBarItemEmpEMP_ezn.SmallImageIndex = 28;
     this.navBarItemEmpEMP_ezn.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_ezn_LinkClicked);
     //
     // navBarItemEmpEMP_gzaat
     //
     this.navBarItemEmpEMP_gzaat.Caption = "الجزاءات";
     this.navBarItemEmpEMP_gzaat.LargeImageIndex = 29;
     this.navBarItemEmpEMP_gzaat.Name = "navBarItemEmpEMP_gzaat";
     this.navBarItemEmpEMP_gzaat.SmallImageIndex = 29;
     this.navBarItemEmpEMP_gzaat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_gzaat_LinkClicked);
     //
     // navBarItemEmpEMP_training
     //
     this.navBarItemEmpEMP_training.Caption = "البرامج التدريبية";
     this.navBarItemEmpEMP_training.LargeImageIndex = 30;
     this.navBarItemEmpEMP_training.Name = "navBarItemEmpEMP_training";
     this.navBarItemEmpEMP_training.SmallImageIndex = 30;
     this.navBarItemEmpEMP_training.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_training_LinkClicked);
     //
     // navBarItemEmpEMP_TAMEEN
     //
     this.navBarItemEmpEMP_TAMEEN.Caption = "التأمين الصحي";
     this.navBarItemEmpEMP_TAMEEN.LargeImageIndex = 31;
     this.navBarItemEmpEMP_TAMEEN.Name = "navBarItemEmpEMP_TAMEEN";
     this.navBarItemEmpEMP_TAMEEN.SmallImageIndex = 31;
     this.navBarItemEmpEMP_TAMEEN.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_TAMEEN_LinkClicked);
     //
     // navBarItemEmpEMP_report
     //
     this.navBarItemEmpEMP_report.Caption = "التقارير السنوية";
     this.navBarItemEmpEMP_report.LargeImageIndex = 32;
     this.navBarItemEmpEMP_report.Name = "navBarItemEmpEMP_report";
     this.navBarItemEmpEMP_report.SmallImageIndex = 32;
     this.navBarItemEmpEMP_report.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_report_LinkClicked);
     //
     // DPPriv
     //
     this.DPPriv.Controls.Add(this.controlContainer4);
     this.DPPriv.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPPriv.ID = new System.Guid("bb5d67bf-41ea-4082-a2e5-532afce242b2");
     this.DPPriv.Location = new System.Drawing.Point(4, 23);
     this.DPPriv.Name = "DPPriv";
     this.DPPriv.OriginalSize = new System.Drawing.Size(192, 453);
     this.DPPriv.Size = new System.Drawing.Size(192, 451);
     this.DPPriv.TabsScroll = true;
     this.DPPriv.TabText = "الصلاحيات";
     this.DPPriv.Text = "الصلاحيات";
     //
     // controlContainer4
     //
     this.controlContainer4.Controls.Add(this.navBarControlPriv);
     this.controlContainer4.Location = new System.Drawing.Point(0, 0);
     this.controlContainer4.Name = "controlContainer4";
     this.controlContainer4.Size = new System.Drawing.Size(192, 451);
     this.controlContainer4.TabIndex = 0;
     //
     // navBarControlPriv
     //
     this.navBarControlPriv.ActiveGroup = this.navBarGroup3;
     this.navBarControlPriv.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlPriv.ExplorerBarShowGroupButtons = false;
     this.navBarControlPriv.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup3});
     this.navBarControlPriv.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemEmpRoles,
     this.navBarItemEmpUsers,
     this.navBarItemEmpUserRoles,
     this.navBarItemEmpRoleDetial,
     this.navBarItemEmpAppOptions});
     this.navBarControlPriv.LargeImages = this.imageCollection32;
     this.navBarControlPriv.Location = new System.Drawing.Point(0, 0);
     this.navBarControlPriv.Name = "navBarControlPriv";
     this.navBarControlPriv.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlPriv.Size = new System.Drawing.Size(192, 451);
     this.navBarControlPriv.SmallImages = this.imageCollection32;
     this.navBarControlPriv.StoreDefaultPaintStyleName = true;
     this.navBarControlPriv.TabIndex = 9;
     this.navBarControlPriv.Text = "navBarControl1";
     //
     // navBarGroup3
     //
     this.navBarGroup3.Caption = "";
     this.navBarGroup3.Expanded = true;
     this.navBarGroup3.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpRoles),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpRoleDetial),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpUsers),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpUserRoles),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpAppOptions)});
     this.navBarGroup3.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.LargeImage")));
     this.navBarGroup3.Name = "navBarGroup3";
     this.navBarGroup3.NavigationPaneVisible = false;
     this.navBarGroup3.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.SmallImage")));
     //
     // navBarItemEmpRoles
     //
     this.navBarItemEmpRoles.Caption = "الصلاحيات";
     this.navBarItemEmpRoles.LargeImageIndex = 0;
     this.navBarItemEmpRoles.Name = "navBarItemEmpRoles";
     this.navBarItemEmpRoles.SmallImageIndex = 0;
     this.navBarItemEmpRoles.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEditorRoleFrm_LinkClicked);
     //
     // navBarItemEmpRoleDetial
     //
     this.navBarItemEmpRoleDetial.Caption = "تفاصيل الصلاحيات";
     this.navBarItemEmpRoleDetial.LargeImageIndex = 3;
     this.navBarItemEmpRoleDetial.Name = "navBarItemEmpRoleDetial";
     this.navBarItemEmpRoleDetial.SmallImageIndex = 3;
     this.navBarItemEmpRoleDetial.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemRoleDetial_LinkClicked);
     //
     // navBarItemEmpUsers
     //
     this.navBarItemEmpUsers.Caption = "المستخدمين";
     this.navBarItemEmpUsers.LargeImageIndex = 1;
     this.navBarItemEmpUsers.Name = "navBarItemEmpUsers";
     this.navBarItemEmpUsers.SmallImageIndex = 1;
     this.navBarItemEmpUsers.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemUsers_LinkClicked);
     //
     // navBarItemEmpUserRoles
     //
     this.navBarItemEmpUserRoles.Caption = "صلاحيات المستخدمين";
     this.navBarItemEmpUserRoles.LargeImageIndex = 2;
     this.navBarItemEmpUserRoles.Name = "navBarItemEmpUserRoles";
     this.navBarItemEmpUserRoles.SmallImageIndex = 2;
     this.navBarItemEmpUserRoles.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemUserRoles_LinkClicked);
     //
     // navBarItemEmpAppOptions
     //
     this.navBarItemEmpAppOptions.Caption = "خيارات البرنامج";
     this.navBarItemEmpAppOptions.LargeImageIndex = 6;
     this.navBarItemEmpAppOptions.Name = "navBarItemEmpAppOptions";
     this.navBarItemEmpAppOptions.SmallImageIndex = 6;
     this.navBarItemEmpAppOptions.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemAppOptions_LinkClicked);
     //
     // panelContainer2
     //
     this.panelContainer2.ActiveChild = this.DPReport;
     this.panelContainer2.Appearance.Options.UseTextOptions = true;
     this.panelContainer2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
     this.panelContainer2.Controls.Add(this.DPQuery);
     this.panelContainer2.Controls.Add(this.DPReport);
     this.panelContainer2.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
     this.panelContainer2.FloatVertical = true;
     this.panelContainer2.ID = new System.Guid("80c30b21-965f-4a80-99d9-68f5819e7c1a");
     this.panelContainer2.Location = new System.Drawing.Point(784, 24);
     this.panelContainer2.Name = "panelContainer2";
     this.panelContainer2.OriginalSize = new System.Drawing.Size(200, 200);
     this.panelContainer2.Size = new System.Drawing.Size(200, 505);
     this.panelContainer2.Tabbed = true;
     this.panelContainer2.TabsScroll = true;
     this.panelContainer2.Text = "panelContainer2";
     //
     // DPReport
     //
     this.DPReport.Controls.Add(this.controlContainer3);
     this.DPReport.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPReport.ID = new System.Guid("f2617492-8043-4778-ba8c-8e62a8a6d465");
     this.DPReport.Location = new System.Drawing.Point(4, 23);
     this.DPReport.Name = "DPReport";
     this.DPReport.OriginalSize = new System.Drawing.Size(192, 453);
     this.DPReport.Size = new System.Drawing.Size(192, 451);
     this.DPReport.TabsScroll = true;
     this.DPReport.TabText = "تقارير";
     this.DPReport.Text = "تقارير";
     //
     // controlContainer3
     //
     this.controlContainer3.Controls.Add(this.navBarControlReport);
     this.controlContainer3.Location = new System.Drawing.Point(0, 0);
     this.controlContainer3.Name = "controlContainer3";
     this.controlContainer3.Size = new System.Drawing.Size(192, 451);
     this.controlContainer3.TabIndex = 0;
     //
     // navBarControlReport
     //
     this.navBarControlReport.ActiveGroup = this.navBarGroup4;
     this.navBarControlReport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlReport.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup4,
     this.navBarGroup7,
     this.navBarGroup8,
     this.navBarGroup9});
     this.navBarControlReport.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemEmpDeployRpt,
     this.navBarItemEmpXRepEmpAddress,
     this.navBarItemEmpXRepEmpagazat,
     this.navBarItemEmpXRepEmpAll,
     this.navBarItemEmpXRepEmpDetail});
     this.navBarControlReport.LargeImages = this.imageCollection32;
     this.navBarControlReport.Location = new System.Drawing.Point(0, 0);
     this.navBarControlReport.Name = "navBarControlReport";
     this.navBarControlReport.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlReport.Size = new System.Drawing.Size(192, 451);
     this.navBarControlReport.SmallImages = this.imageCollection32;
     this.navBarControlReport.TabIndex = 9;
     this.navBarControlReport.Text = "navBarControl1";
     this.navBarControlReport.View = new DevExpress.XtraNavBar.ViewInfo.StandardSkinExplorerBarViewInfoRegistrator("DevExpress Style");
     //
     // navBarGroup4
     //
     this.navBarGroup4.Caption = "تقارير 1";
     this.navBarGroup4.Expanded = true;
     this.navBarGroup4.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpXRepEmpAddress),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpXRepEmpagazat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpXRepEmpAll),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpXRepEmpDetail)});
     this.navBarGroup4.LargeImage = global::Employee.Properties.Resources.Print;
     this.navBarGroup4.Name = "navBarGroup4";
     this.navBarGroup4.NavigationPaneVisible = false;
     this.navBarGroup4.SmallImage = global::Employee.Properties.Resources.Print;
     //
     // navBarItemEmpXRepEmpAddress
     //
     this.navBarItemEmpXRepEmpAddress.Caption = "سجل العناوين";
     this.navBarItemEmpXRepEmpAddress.LargeImageIndex = 4;
     this.navBarItemEmpXRepEmpAddress.Name = "navBarItemEmpXRepEmpAddress";
     this.navBarItemEmpXRepEmpAddress.SmallImageIndex = 4;
     this.navBarItemEmpXRepEmpAddress.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEmpXRepEmpAddress_LinkClicked);
     //
     // navBarItemEmpXRepEmpagazat
     //
     this.navBarItemEmpXRepEmpagazat.Caption = "غياب العاملين";
     this.navBarItemEmpXRepEmpagazat.LargeImageIndex = 4;
     this.navBarItemEmpXRepEmpagazat.Name = "navBarItemEmpXRepEmpagazat";
     this.navBarItemEmpXRepEmpagazat.SmallImageIndex = 4;
     this.navBarItemEmpXRepEmpagazat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEmpXRepEmpagazat_LinkClicked);
     //
     // navBarItemEmpXRepEmpAll
     //
     this.navBarItemEmpXRepEmpAll.Caption = "سجل شئون العاملين";
     this.navBarItemEmpXRepEmpAll.LargeImageIndex = 4;
     this.navBarItemEmpXRepEmpAll.Name = "navBarItemEmpXRepEmpAll";
     this.navBarItemEmpXRepEmpAll.SmallImageIndex = 4;
     this.navBarItemEmpXRepEmpAll.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEmpXRepEmpAll_LinkClicked);
     //
     // navBarGroup7
     //
     this.navBarGroup7.Caption = "تقارير 2";
     this.navBarGroup7.LargeImage = global::Employee.Properties.Resources.Print;
     this.navBarGroup7.Name = "navBarGroup7";
     this.navBarGroup7.SmallImage = global::Employee.Properties.Resources.Print;
     //
     // navBarGroup8
     //
     this.navBarGroup8.Caption = "تقارير 3";
     this.navBarGroup8.LargeImage = global::Employee.Properties.Resources.Print;
     this.navBarGroup8.Name = "navBarGroup8";
     this.navBarGroup8.SmallImage = global::Employee.Properties.Resources.Print;
     //
     // navBarGroup9
     //
     this.navBarGroup9.Caption = "تقارير 4";
     this.navBarGroup9.LargeImage = global::Employee.Properties.Resources.Print;
     this.navBarGroup9.Name = "navBarGroup9";
     this.navBarGroup9.SmallImage = global::Employee.Properties.Resources.Print;
     //
     // navBarItemEmpDeployRpt
     //
     this.navBarItemEmpDeployRpt.Caption = "تنصيب التقارير";
     this.navBarItemEmpDeployRpt.LargeImageIndex = 5;
     this.navBarItemEmpDeployRpt.Name = "navBarItemEmpDeployRpt";
     this.navBarItemEmpDeployRpt.SmallImageIndex = 5;
     this.navBarItemEmpDeployRpt.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemDeployRpt_LinkClicked);
     //
     // DPQuery
     //
     this.DPQuery.Controls.Add(this.controlContainer2);
     this.DPQuery.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPQuery.ID = new System.Guid("d8711011-1b74-442f-bb9b-8102c8bf9f50");
     this.DPQuery.Location = new System.Drawing.Point(4, 23);
     this.DPQuery.Name = "DPQuery";
     this.DPQuery.OriginalSize = new System.Drawing.Size(192, 453);
     this.DPQuery.Size = new System.Drawing.Size(192, 451);
     this.DPQuery.TabsScroll = true;
     this.DPQuery.Text = "استعلامات";
     //
     // controlContainer2
     //
     this.controlContainer2.Controls.Add(this.navBarControlQry);
     this.controlContainer2.Location = new System.Drawing.Point(0, 0);
     this.controlContainer2.Name = "controlContainer2";
     this.controlContainer2.Size = new System.Drawing.Size(192, 451);
     this.controlContainer2.TabIndex = 0;
     //
     // navBarControlQry
     //
     this.navBarControlQry.ActiveGroup = this.navBarGroup5;
     this.navBarControlQry.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlQry.ExplorerBarShowGroupButtons = false;
     this.navBarControlQry.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup5});
     this.navBarControlQry.LargeImages = this.imageCollection32;
     this.navBarControlQry.Location = new System.Drawing.Point(0, 0);
     this.navBarControlQry.Name = "navBarControlQry";
     this.navBarControlQry.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlQry.Size = new System.Drawing.Size(192, 451);
     this.navBarControlQry.SmallImages = this.imageCollection32;
     this.navBarControlQry.StoreDefaultPaintStyleName = true;
     this.navBarControlQry.TabIndex = 9;
     this.navBarControlQry.Text = "navBarControl1";
     //
     // navBarGroup5
     //
     this.navBarGroup5.Caption = "";
     this.navBarGroup5.Expanded = true;
     this.navBarGroup5.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup5.LargeImage")));
     this.navBarGroup5.Name = "navBarGroup5";
     this.navBarGroup5.NavigationPaneVisible = false;
     this.navBarGroup5.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup5.SmallImage")));
     //
     // barEditItem1
     //
     this.barEditItem1.Edit = null;
     this.barEditItem1.Id = 17;
     this.barEditItem1.Name = "barEditItem1";
     //
     // repositoryItemComboBoxSkins
     //
     this.repositoryItemComboBoxSkins.AutoHeight = false;
     this.repositoryItemComboBoxSkins.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBoxSkins.Name = "repositoryItemComboBoxSkins";
     //
     // navBarItemEmpXRepEmpDetail
     //
     this.navBarItemEmpXRepEmpDetail.Caption = "بيان حاله";
     this.navBarItemEmpXRepEmpDetail.LargeImageIndex = 4;
     this.navBarItemEmpXRepEmpDetail.Name = "navBarItemEmpXRepEmpDetail";
     this.navBarItemEmpXRepEmpDetail.SmallImageIndex = 4;
     this.navBarItemEmpXRepEmpDetail.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEmpXRepEmpDetail_LinkClicked);
     //
     // MainFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(984, 662);
     this.Controls.Add(this.panelContainer2);
     this.Controls.Add(this.panelContainer1);
     this.Controls.Add(this.panelContainer3);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "MainFrm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Employee";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFrm_FormClosing);
     this.Load += new System.EventHandler(this.MainFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManagerMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditasase_code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).EndInit();
     this.panelContainer3.ResumeLayout(false);
     this.DPSkins.ResumeLayout(false);
     this.controlContainer6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.galleryControlSkins)).EndInit();
     this.galleryControlSkins.ResumeLayout(false);
     this.DPResult.ResumeLayout(false);
     this.controlContainer5.ResumeLayout(false);
     this.panelContainer1.ResumeLayout(false);
     this.DPCode.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).EndInit();
     this.DPData.ResumeLayout(false);
     this.controlContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlData)).EndInit();
     this.DPPriv.ResumeLayout(false);
     this.controlContainer4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlPriv)).EndInit();
     this.panelContainer2.ResumeLayout(false);
     this.DPReport.ResumeLayout(false);
     this.controlContainer3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlReport)).EndInit();
     this.DPQuery.ResumeLayout(false);
     this.controlContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlQry)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBoxSkins)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmPromotionItem));
     this.gridViewMd_ItemPromotion = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_CategoryID = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_GroupID = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlMd_ItemPromotion = new DevExpress.XtraGrid.GridControl();
     this.lk_PromotionCode = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.lk_CategoryIDs = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.lk_Code = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.grpMDClass = new DevExpress.XtraEditors.GroupControl();
     this.grpMDItemPromotion = new DevExpress.XtraEditors.GroupControl();
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_ItemPromotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GroupID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_ItemPromotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PromotionCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryIDs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDClass)).BeginInit();
     this.grpMDClass.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDItemPromotion)).BeginInit();
     this.grpMDItemPromotion.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridViewMd_ItemPromotion
     //
     this.gridViewMd_ItemPromotion.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                     this.gridColumn3,
                                                                                                     this.gridColumn4,
                                                                                                     this.gridColumn1,
                                                                                                     this.gridColumn2});
     this.gridViewMd_ItemPromotion.GridControl = this.gridControlMd_ItemPromotion;
     this.gridViewMd_ItemPromotion.Name = "gridViewMd_ItemPromotion";
     this.gridViewMd_ItemPromotion.OptionsBehavior.Editable = false;
     this.gridViewMd_ItemPromotion.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMd_ItemPromotion.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_ItemPromotion.OptionsCustomization.AllowSort = false;
     this.gridViewMd_ItemPromotion.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_ItemPromotion.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewMd_ItemPromotion_CellValueChanged);
     this.gridViewMd_ItemPromotion.DoubleClick += new System.EventHandler(this.gridViewMd_ItemPromotion_DoubleClick);
     this.gridViewMd_ItemPromotion.LostFocus += new System.EventHandler(this.gridViewMd_ItemPromotion_LostFocus);
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Promotion Code";
     this.gridColumn3.FieldName = "strPromotionCode";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Category Type";
     this.gridColumn4.ColumnEdit = this.lk_CategoryID;
     this.gridColumn4.FieldName = "nCategoryTypeID";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     //
     // lk_CategoryID
     //
     this.lk_CategoryID.AutoHeight = false;
     this.lk_CategoryID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CategoryID.Items.AddRange(new object[] {
                                                        new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item or Product", 1, -1),
                                                        new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Package", 2, -1),
                                                        new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Package Group", 3, -1),
                                                        new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Credit Package", 4, -1)});
     this.lk_CategoryID.Name = "lk_CategoryID";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Group";
     this.gridColumn1.ColumnEdit = this.lk_GroupID;
     this.gridColumn1.FieldName = "nGroupID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 2;
     //
     // lk_GroupID
     //
     this.lk_GroupID.AutoHeight = false;
     this.lk_GroupID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_GroupID.Items.AddRange(new object[] {
                                                     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item", 0, -1),
                                                     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Group", 1, -1)});
     this.lk_GroupID.Name = "lk_GroupID";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Code";
     this.gridColumn2.FieldName = "strCode";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 3;
     //
     // gridControlMd_ItemPromotion
     //
     this.gridControlMd_ItemPromotion.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMd_ItemPromotion.EmbeddedNavigator
     //
     this.gridControlMd_ItemPromotion.EmbeddedNavigator.Name = "";
     this.gridControlMd_ItemPromotion.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_ItemPromotion.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_ItemPromotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_ItemPromotion.MainView = this.gridViewMd_ItemPromotion;
     this.gridControlMd_ItemPromotion.Name = "gridControlMd_ItemPromotion";
     this.gridControlMd_ItemPromotion.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                          this.lk_PromotionCode,
                                                                                                                          this.lk_CategoryIDs,
                                                                                                                          this.lk_CategoryID,
                                                                                                                          this.lk_GroupID,
                                                                                                                          this.lk_Code});
     this.gridControlMd_ItemPromotion.Size = new System.Drawing.Size(976, 444);
     this.gridControlMd_ItemPromotion.TabIndex = 126;
     this.gridControlMd_ItemPromotion.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                this.gridViewMd_ItemPromotion});
     //
     // lk_PromotionCode
     //
     this.lk_PromotionCode.AutoHeight = false;
     this.lk_PromotionCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_PromotionCode.Name = "lk_PromotionCode";
     //
     // lk_CategoryIDs
     //
     this.lk_CategoryIDs.AutoHeight = false;
     this.lk_CategoryIDs.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CategoryIDs.Name = "lk_CategoryIDs";
     //
     // lk_Code
     //
     this.lk_Code.AutoHeight = false;
     this.lk_Code.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Code.Name = "lk_Code";
     //
     // grpMDClass
     //
     this.grpMDClass.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDClass.Appearance.Options.UseBackColor = true;
     this.grpMDClass.Controls.Add(this.grpMDItemPromotion);
     this.grpMDClass.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDClass.Location = new System.Drawing.Point(-5, -26);
     this.grpMDClass.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDClass.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDClass.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDClass.Name = "grpMDClass";
     this.grpMDClass.Size = new System.Drawing.Size(1021, 560);
     this.grpMDClass.TabIndex = 34;
     this.grpMDClass.Text = "Class";
     //
     // grpMDItemPromotion
     //
     this.grpMDItemPromotion.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDItemPromotion.Appearance.Options.UseBackColor = true;
     this.grpMDItemPromotion.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.grpMDItemPromotion.AppearanceCaption.Options.UseFont = true;
     this.grpMDItemPromotion.Controls.Add(this.btn_Del);
     this.grpMDItemPromotion.Controls.Add(this.btn_Add);
     this.grpMDItemPromotion.Controls.Add(this.groupControl2);
     this.grpMDItemPromotion.Controls.Add(this.btn_Search);
     this.grpMDItemPromotion.Controls.Add(this.txtSearch);
     this.grpMDItemPromotion.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDItemPromotion.Location = new System.Drawing.Point(8, 24);
     this.grpMDItemPromotion.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDItemPromotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDItemPromotion.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDItemPromotion.Name = "grpMDItemPromotion";
     this.grpMDItemPromotion.Size = new System.Drawing.Size(1000, 504);
     this.grpMDItemPromotion.TabIndex = 138;
     this.grpMDItemPromotion.Text = "Item Promotion";
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Del.Appearance.Options.UseFont = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList = this.imageList1;
     this.btn_Del.Location = new System.Drawing.Point(48, 24);
     this.btn_Del.Name = "btn_Del";
     this.btn_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex = 131;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add.Appearance.Options.UseFont = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList = this.imageList1;
     this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location = new System.Drawing.Point(8, 24);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex = 132;
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl2.Controls.Add(this.gridControlMd_ItemPromotion);
     this.groupControl2.Location = new System.Drawing.Point(8, 48);
     this.groupControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.LookAndFeel.UseWindowsXPTheme = false;
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(976, 448);
     this.groupControl2.TabIndex = 128;
     this.groupControl2.Text = "Promotion Item";
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(912, 24);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex = 137;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.Location = new System.Drawing.Point(720, 24);
     this.txtSearch.Name = "txtSearch";
     //
     // txtSearch.Properties
     //
     this.txtSearch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont = true;
     this.txtSearch.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size = new System.Drawing.Size(176, 20);
     this.txtSearch.TabIndex = 136;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // frmPromotionItem
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(1000, 509);
     this.Controls.Add(this.grpMDClass);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmPromotionItem";
     this.Text = "Promotion Item";
     this.Load += new System.EventHandler(this.frmPromotionItem_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_ItemPromotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GroupID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_ItemPromotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PromotionCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryIDs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDClass)).EndInit();
     this.grpMDClass.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDItemPromotion)).EndInit();
     this.grpMDItemPromotion.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InvoiceForm));
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     this.boxSizedList = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.layoutControl3 = new DevExpress.XtraLayout.LayoutControl();
     this.lblPicklistPrintedDate = new DevExpress.XtraEditors.LabelControl();
     this.lblPicklistConfirmedBy = new DevExpress.XtraEditors.LabelControl();
     this.lblAppDate = new DevExpress.XtraEditors.LabelControl();
     this.lblIssueStatus = new DevExpress.XtraEditors.LabelControl();
     this.lblIssueTypes = new DevExpress.XtraEditors.LabelControl();
     this.lblissuedDate = new DevExpress.XtraEditors.LabelControl();
     this.lblPaymentType = new DevExpress.XtraEditors.LabelControl();
     this.lblApprovedBy = new DevExpress.XtraEditors.LabelControl();
     this.lblIssuedBy = new DevExpress.XtraEditors.LabelControl();
     this.lblRefNo = new DevExpress.XtraEditors.LabelControl();
     this.lblApprovedDate = new DevExpress.XtraEditors.LabelControl();
     this.lblInstitutionType = new DevExpress.XtraEditors.LabelControl();
     this.lblRegion = new DevExpress.XtraEditors.LabelControl();
     this.lblZone = new DevExpress.XtraEditors.LabelControl();
     this.lblWoreda = new DevExpress.XtraEditors.LabelControl();
     this.lblOwnership = new DevExpress.XtraEditors.LabelControl();
     this.lblMode = new DevExpress.XtraEditors.LabelControl();
     this.chkIncludeInsurance = new DevExpress.XtraEditors.CheckEdit();
     this.btnReturnToApprovalStep = new DevExpress.XtraEditors.SimpleButton();
     this.txtFacilityNameFilter = new DevExpress.XtraEditors.TextEdit();
     this.gridOutstandingPickLists = new DevExpress.XtraGrid.GridControl();
     this.gridOutstandingPickListView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn48 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.btnConfirmIssue1 = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancelIssue = new DevExpress.XtraEditors.SimpleButton();
     this.txtConfirmOrderNumber = new DevExpress.XtraEditors.TextEdit();
     this.txtConfirmApprovedBy = new DevExpress.XtraEditors.TextEdit();
     this.txtConfirmFromStore = new DevExpress.XtraEditors.TextEdit();
     this.txtConfirmRequestedBy = new DevExpress.XtraEditors.TextEdit();
     this.dtIssuedDate = new CalendarLib.DateTimePickerEx();
     this.txtRemarks = new DevExpress.XtraEditors.MemoEdit();
     this.txtIssueRefNo = new DevExpress.XtraEditors.TextEdit();
     this.gridOutstandingPicklistDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewConfirmation = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn76 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSKUPicked = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.colBUPicked = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn47 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn60 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn62 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.txtIssuedBy = new DevExpress.XtraEditors.TextEdit();
     this.lkMode = new DevExpress.XtraEditors.LookUpEdit();
     this.lkPaymentType = new DevExpress.XtraEditors.LookUpEdit();
     this.layoutControlItem18 = new DevExpress.XtraLayout.LayoutControlItem();
     this.tabbedControlGroup1 = new DevExpress.XtraLayout.TabbedControlGroup();
     this.layoutControlGroup11 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem26 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem25 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem20 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem21 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem27 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem22 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup7 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup12 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.HeaderSection = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem23 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem30 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem31 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem32 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem28 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem29 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup13 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem19 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem42 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem43 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutSupplimentaryOrder = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcOutstandingPicklists = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem50 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup5 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu();
     this.dxValidationProvider1 = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider();
     this.emptySpaceItem15 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup8 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup9 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup10 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem10 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem22 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem23 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem();
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink();
     this.printOrder = new DevExpress.XtraPrinting.PrintableComponentLink();
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl3)).BeginInit();
     this.layoutControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkIncludeInsurance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFacilityNameFilter.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPickLists)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPickListView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmOrderNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmApprovedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmFromStore.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmRequestedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIssueRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPicklistDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewConfirmation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIssuedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkMode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPaymentType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabbedControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderSection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem42)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem43)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutSupplimentaryOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcOutstandingPicklists)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem50)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     this.SuspendLayout();
     //
     // boxSizedList
     //
     this.boxSizedList.AutoHeight = false;
     this.boxSizedList.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.boxSizedList.DisplayMember = "Name";
     this.boxSizedList.Name = "boxSizedList";
     this.boxSizedList.ValueMember = "ID";
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // repositoryItemDateEdit3
     //
     this.repositoryItemDateEdit3.AutoHeight = false;
     this.repositoryItemDateEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit3.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemDateEdit3.EditFormat.FormatString = "mm-DD-YYYY";
     this.repositoryItemDateEdit3.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit3.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.DisplayText;
     this.repositoryItemDateEdit3.Name = "repositoryItemDateEdit3";
     //
     // repositoryItemButtonEdit4
     //
     this.repositoryItemButtonEdit4.AutoHeight = false;
     this.repositoryItemButtonEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemButtonEdit4.Name = "repositoryItemButtonEdit4";
     this.repositoryItemButtonEdit4.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // layoutControl3
     //
     this.layoutControl3.AllowCustomizationMenu = false;
     this.layoutControl3.Controls.Add(this.lblPicklistPrintedDate);
     this.layoutControl3.Controls.Add(this.lblPicklistConfirmedBy);
     this.layoutControl3.Controls.Add(this.lblAppDate);
     this.layoutControl3.Controls.Add(this.lblIssueStatus);
     this.layoutControl3.Controls.Add(this.lblIssueTypes);
     this.layoutControl3.Controls.Add(this.lblissuedDate);
     this.layoutControl3.Controls.Add(this.lblPaymentType);
     this.layoutControl3.Controls.Add(this.lblApprovedBy);
     this.layoutControl3.Controls.Add(this.lblIssuedBy);
     this.layoutControl3.Controls.Add(this.lblRefNo);
     this.layoutControl3.Controls.Add(this.lblApprovedDate);
     this.layoutControl3.Controls.Add(this.lblInstitutionType);
     this.layoutControl3.Controls.Add(this.lblRegion);
     this.layoutControl3.Controls.Add(this.lblZone);
     this.layoutControl3.Controls.Add(this.lblWoreda);
     this.layoutControl3.Controls.Add(this.lblOwnership);
     this.layoutControl3.Controls.Add(this.lblMode);
     this.layoutControl3.Controls.Add(this.chkIncludeInsurance);
     this.layoutControl3.Controls.Add(this.btnReturnToApprovalStep);
     this.layoutControl3.Controls.Add(this.txtFacilityNameFilter);
     this.layoutControl3.Controls.Add(this.gridOutstandingPickLists);
     this.layoutControl3.Controls.Add(this.simpleButton1);
     this.layoutControl3.Controls.Add(this.btnConfirmIssue1);
     this.layoutControl3.Controls.Add(this.btnCancelIssue);
     this.layoutControl3.Controls.Add(this.txtConfirmOrderNumber);
     this.layoutControl3.Controls.Add(this.txtConfirmApprovedBy);
     this.layoutControl3.Controls.Add(this.txtConfirmFromStore);
     this.layoutControl3.Controls.Add(this.txtConfirmRequestedBy);
     this.layoutControl3.Controls.Add(this.dtIssuedDate);
     this.layoutControl3.Controls.Add(this.txtRemarks);
     this.layoutControl3.Controls.Add(this.txtIssueRefNo);
     this.layoutControl3.Controls.Add(this.gridOutstandingPicklistDetail);
     this.layoutControl3.Controls.Add(this.txtIssuedBy);
     this.layoutControl3.Controls.Add(this.lkMode);
     this.layoutControl3.Controls.Add(this.lkPaymentType);
     this.layoutControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl3.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem18,
     this.tabbedControlGroup1,
     this.layoutControlItem26,
     this.layoutControlItem25,
     this.layoutControlItem20,
     this.layoutControlItem17,
     this.layoutControlItem21,
     this.layoutControlItem27,
     this.layoutControlItem22,
     this.layoutControlItem1,
     this.layoutControlItem12,
     this.layoutControlItem15});
     this.layoutControl3.Location = new System.Drawing.Point(0, 0);
     this.layoutControl3.Margin = new System.Windows.Forms.Padding(0);
     this.layoutControl3.Name = "layoutControl3";
     this.layoutControl3.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(330, 260, 250, 350);
     this.layoutControl3.Root = this.layoutControlGroup7;
     this.layoutControl3.Size = new System.Drawing.Size(1123, 575);
     this.layoutControl3.TabIndex = 37;
     this.layoutControl3.Text = "layoutControl3";
     //
     // lblPicklistPrintedDate
     //
     this.lblPicklistPrintedDate.Location = new System.Drawing.Point(823, 104);
     this.lblPicklistPrintedDate.Name = "lblPicklistPrintedDate";
     this.lblPicklistPrintedDate.Size = new System.Drawing.Size(91, 16);
     this.lblPicklistPrintedDate.StyleController = this.layoutControl3;
     this.lblPicklistPrintedDate.TabIndex = 63;
     //
     // lblPicklistConfirmedBy
     //
     this.lblPicklistConfirmedBy.Location = new System.Drawing.Point(823, 124);
     this.lblPicklistConfirmedBy.Name = "lblPicklistConfirmedBy";
     this.lblPicklistConfirmedBy.Size = new System.Drawing.Size(91, 16);
     this.lblPicklistConfirmedBy.StyleController = this.layoutControl3;
     this.lblPicklistConfirmedBy.TabIndex = 62;
     //
     // lblAppDate
     //
     this.lblAppDate.Location = new System.Drawing.Point(622, 104);
     this.lblAppDate.Name = "lblAppDate";
     this.lblAppDate.Size = new System.Drawing.Size(91, 16);
     this.lblAppDate.StyleController = this.layoutControl3;
     this.lblAppDate.TabIndex = 61;
     //
     // lblIssueStatus
     //
     this.lblIssueStatus.Location = new System.Drawing.Point(977, 104);
     this.lblIssueStatus.Name = "lblIssueStatus";
     this.lblIssueStatus.Size = new System.Drawing.Size(135, 16);
     this.lblIssueStatus.StyleController = this.layoutControl3;
     this.lblIssueStatus.TabIndex = 60;
     //
     // lblIssueTypes
     //
     this.lblIssueTypes.Location = new System.Drawing.Point(977, 124);
     this.lblIssueTypes.Name = "lblIssueTypes";
     this.lblIssueTypes.Size = new System.Drawing.Size(135, 16);
     this.lblIssueTypes.StyleController = this.layoutControl3;
     this.lblIssueTypes.TabIndex = 59;
     //
     // lblissuedDate
     //
     this.lblissuedDate.Location = new System.Drawing.Point(424, 104);
     this.lblissuedDate.Name = "lblissuedDate";
     this.lblissuedDate.Size = new System.Drawing.Size(87, 16);
     this.lblissuedDate.StyleController = this.layoutControl3;
     this.lblissuedDate.TabIndex = 58;
     //
     // lblPaymentType
     //
     this.lblPaymentType.Location = new System.Drawing.Point(384, 50);
     this.lblPaymentType.Name = "lblPaymentType";
     this.lblPaymentType.Size = new System.Drawing.Size(139, 16);
     this.lblPaymentType.StyleController = this.layoutControl3;
     this.lblPaymentType.TabIndex = 57;
     //
     // lblApprovedBy
     //
     this.lblApprovedBy.Location = new System.Drawing.Point(622, 124);
     this.lblApprovedBy.Name = "lblApprovedBy";
     this.lblApprovedBy.Size = new System.Drawing.Size(91, 16);
     this.lblApprovedBy.StyleController = this.layoutControl3;
     this.lblApprovedBy.TabIndex = 56;
     //
     // lblIssuedBy
     //
     this.lblIssuedBy.Location = new System.Drawing.Point(424, 124);
     this.lblIssuedBy.Name = "lblIssuedBy";
     this.lblIssuedBy.Size = new System.Drawing.Size(87, 16);
     this.lblIssuedBy.StyleController = this.layoutControl3;
     this.lblIssuedBy.TabIndex = 55;
     //
     // lblRefNo
     //
     this.lblRefNo.Location = new System.Drawing.Point(594, 50);
     this.lblRefNo.Name = "lblRefNo";
     this.lblRefNo.Size = new System.Drawing.Size(132, 16);
     this.lblRefNo.StyleController = this.layoutControl3;
     this.lblRefNo.TabIndex = 54;
     //
     // lblApprovedDate
     //
     this.lblApprovedDate.Location = new System.Drawing.Point(854, 104);
     this.lblApprovedDate.Name = "lblApprovedDate";
     this.lblApprovedDate.Size = new System.Drawing.Size(58, 16);
     this.lblApprovedDate.StyleController = this.layoutControl3;
     this.lblApprovedDate.TabIndex = 53;
     //
     // lblInstitutionType
     //
     this.lblInstitutionType.Location = new System.Drawing.Point(795, 50);
     this.lblInstitutionType.Name = "lblInstitutionType";
     this.lblInstitutionType.Size = new System.Drawing.Size(317, 16);
     this.lblInstitutionType.StyleController = this.layoutControl3;
     this.lblInstitutionType.TabIndex = 52;
     //
     // lblRegion
     //
     this.lblRegion.Location = new System.Drawing.Point(795, 70);
     this.lblRegion.Name = "lblRegion";
     this.lblRegion.Size = new System.Drawing.Size(317, 16);
     this.lblRegion.StyleController = this.layoutControl3;
     this.lblRegion.TabIndex = 51;
     //
     // lblZone
     //
     this.lblZone.Location = new System.Drawing.Point(594, 70);
     this.lblZone.Name = "lblZone";
     this.lblZone.Size = new System.Drawing.Size(132, 16);
     this.lblZone.StyleController = this.layoutControl3;
     this.lblZone.TabIndex = 50;
     //
     // lblWoreda
     //
     this.lblWoreda.Location = new System.Drawing.Point(384, 70);
     this.lblWoreda.Name = "lblWoreda";
     this.lblWoreda.Size = new System.Drawing.Size(139, 16);
     this.lblWoreda.StyleController = this.layoutControl3;
     this.lblWoreda.TabIndex = 49;
     //
     // lblOwnership
     //
     this.lblOwnership.Location = new System.Drawing.Point(594, 30);
     this.lblOwnership.Name = "lblOwnership";
     this.lblOwnership.Size = new System.Drawing.Size(518, 16);
     this.lblOwnership.StyleController = this.layoutControl3;
     this.lblOwnership.TabIndex = 48;
     //
     // lblMode
     //
     this.lblMode.Location = new System.Drawing.Point(384, 30);
     this.lblMode.Name = "lblMode";
     this.lblMode.Size = new System.Drawing.Size(139, 16);
     this.lblMode.StyleController = this.layoutControl3;
     this.lblMode.TabIndex = 47;
     //
     // chkIncludeInsurance
     //
     this.chkIncludeInsurance.Location = new System.Drawing.Point(318, 151);
     this.chkIncludeInsurance.Name = "chkIncludeInsurance";
     this.chkIncludeInsurance.Properties.Caption = "Include Insurance";
     this.chkIncludeInsurance.Size = new System.Drawing.Size(801, 19);
     this.chkIncludeInsurance.StyleController = this.layoutControl3;
     this.chkIncludeInsurance.TabIndex = 45;
     //
     // btnReturnToApprovalStep
     //
     this.btnReturnToApprovalStep.Image = global::HCMIS.Desktop.Properties.Resources.Undo;
     this.btnReturnToApprovalStep.Location = new System.Drawing.Point(685, 549);
     this.btnReturnToApprovalStep.Name = "btnReturnToApprovalStep";
     this.btnReturnToApprovalStep.Size = new System.Drawing.Size(142, 22);
     this.btnReturnToApprovalStep.StyleController = this.layoutControl3;
     this.btnReturnToApprovalStep.TabIndex = 39;
     this.btnReturnToApprovalStep.Text = "Return to SDO";
     this.btnReturnToApprovalStep.Click += new System.EventHandler(this.btnReturnToApprovalStep_Click);
     //
     // txtFacilityNameFilter
     //
     this.txtFacilityNameFilter.Location = new System.Drawing.Point(50, 62);
     this.txtFacilityNameFilter.Name = "txtFacilityNameFilter";
     this.txtFacilityNameFilter.Size = new System.Drawing.Size(243, 20);
     this.txtFacilityNameFilter.StyleController = this.layoutControl3;
     this.txtFacilityNameFilter.TabIndex = 44;
     this.txtFacilityNameFilter.EditValueChanged += new System.EventHandler(this.txtFacilityNameFilter_EditValueChanged);
     //
     // gridOutstandingPickLists
     //
     this.gridOutstandingPickLists.Location = new System.Drawing.Point(5, 98);
     this.gridOutstandingPickLists.MainView = this.gridOutstandingPickListView;
     this.gridOutstandingPickLists.Name = "gridOutstandingPickLists";
     this.gridOutstandingPickLists.Size = new System.Drawing.Size(300, 448);
     this.gridOutstandingPickLists.TabIndex = 0;
     this.gridOutstandingPickLists.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridOutstandingPickListView});
     //
     // gridOutstandingPickListView
     //
     this.gridOutstandingPickListView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn48,
     this.gridColumn49,
     this.gridColumn46});
     this.gridOutstandingPickListView.GridControl = this.gridOutstandingPickLists;
     this.gridOutstandingPickListView.GroupCount = 1;
     this.gridOutstandingPickListView.Name = "gridOutstandingPickListView";
     this.gridOutstandingPickListView.OptionsBehavior.Editable = false;
     this.gridOutstandingPickListView.OptionsCustomization.AllowColumnMoving = false;
     this.gridOutstandingPickListView.OptionsCustomization.AllowColumnResizing = false;
     this.gridOutstandingPickListView.OptionsCustomization.AllowSort = false;
     this.gridOutstandingPickListView.OptionsMenu.EnableColumnMenu = false;
     this.gridOutstandingPickListView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridOutstandingPickListView.OptionsSelection.UseIndicatorForSelection = false;
     this.gridOutstandingPickListView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridOutstandingPickListView.OptionsView.ShowGroupPanel = false;
     this.gridOutstandingPickListView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn46, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridOutstandingPickListView.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.OnOutstandingPicklistSelected);
     //
     // gridColumn48
     //
     this.gridColumn48.Caption = "Referance Number";
     this.gridColumn48.FieldName = "RefNo";
     this.gridColumn48.Name = "gridColumn48";
     this.gridColumn48.OptionsColumn.AllowEdit = false;
     this.gridColumn48.OptionsColumn.AllowFocus = false;
     this.gridColumn48.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn48.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsColumn.AllowMove = false;
     this.gridColumn48.OptionsColumn.AllowShowHide = false;
     this.gridColumn48.OptionsColumn.AllowSize = false;
     this.gridColumn48.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn48.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn48.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn48.OptionsFilter.AllowFilter = false;
     this.gridColumn48.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn48.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.Visible = true;
     this.gridColumn48.VisibleIndex = 0;
     //
     // gridColumn49
     //
     this.gridColumn49.Caption = "Requested By";
     this.gridColumn49.FieldName = "RequestedBy";
     this.gridColumn49.Name = "gridColumn49";
     this.gridColumn49.OptionsColumn.AllowEdit = false;
     this.gridColumn49.OptionsColumn.AllowFocus = false;
     this.gridColumn49.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn49.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsColumn.AllowMove = false;
     this.gridColumn49.OptionsColumn.AllowShowHide = false;
     this.gridColumn49.OptionsColumn.AllowSize = false;
     this.gridColumn49.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn49.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn49.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn49.OptionsFilter.AllowFilter = false;
     this.gridColumn49.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn49.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.Visible = true;
     this.gridColumn49.VisibleIndex = 1;
     this.gridColumn49.Width = 159;
     //
     // gridColumn46
     //
     this.gridColumn46.Caption = "Route";
     this.gridColumn46.FieldName = "RouteName";
     this.gridColumn46.Name = "gridColumn46";
     this.gridColumn46.OptionsColumn.AllowEdit = false;
     this.gridColumn46.OptionsColumn.AllowFocus = false;
     this.gridColumn46.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn46.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsColumn.AllowMove = false;
     this.gridColumn46.OptionsColumn.AllowShowHide = false;
     this.gridColumn46.OptionsColumn.AllowSize = false;
     this.gridColumn46.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn46.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn46.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn46.OptionsFilter.AllowFilter = false;
     this.gridColumn46.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn46.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.Visible = true;
     this.gridColumn46.VisibleIndex = 2;
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(539, 549);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(142, 22);
     this.simpleButton1.StyleController = this.layoutControl3;
     this.simpleButton1.TabIndex = 43;
     this.simpleButton1.Text = "Supplimentary PickList";
     //
     // btnConfirmIssue1
     //
     this.btnConfirmIssue1.Image = ((System.Drawing.Image)(resources.GetObject("btnConfirmIssue1.Image")));
     this.btnConfirmIssue1.Location = new System.Drawing.Point(831, 549);
     this.btnConfirmIssue1.Name = "btnConfirmIssue1";
     this.btnConfirmIssue1.Size = new System.Drawing.Size(142, 22);
     this.btnConfirmIssue1.StyleController = this.layoutControl3;
     this.btnConfirmIssue1.TabIndex = 42;
     this.btnConfirmIssue1.Text = "Confirm Issue";
     this.btnConfirmIssue1.Click += new System.EventHandler(this.btnConfirmIssue_Click);
     //
     // btnCancelIssue
     //
     this.btnCancelIssue.Image = ((System.Drawing.Image)(resources.GetObject("btnCancelIssue.Image")));
     this.btnCancelIssue.Location = new System.Drawing.Point(977, 549);
     this.btnCancelIssue.Name = "btnCancelIssue";
     this.btnCancelIssue.Size = new System.Drawing.Size(142, 22);
     this.btnCancelIssue.StyleController = this.layoutControl3;
     this.btnCancelIssue.TabIndex = 41;
     this.btnCancelIssue.Text = "Cancel";
     this.btnCancelIssue.Click += new System.EventHandler(this.btnCancelIssue_Click);
     //
     // txtConfirmOrderNumber
     //
     this.txtConfirmOrderNumber.Enabled = false;
     this.txtConfirmOrderNumber.Location = new System.Drawing.Point(378, 119);
     this.txtConfirmOrderNumber.Name = "txtConfirmOrderNumber";
     this.txtConfirmOrderNumber.Size = new System.Drawing.Size(217, 20);
     this.txtConfirmOrderNumber.StyleController = this.layoutControl3;
     this.txtConfirmOrderNumber.TabIndex = 40;
     //
     // txtConfirmApprovedBy
     //
     this.txtConfirmApprovedBy.Enabled = false;
     this.txtConfirmApprovedBy.Location = new System.Drawing.Point(938, 100);
     this.txtConfirmApprovedBy.Name = "txtConfirmApprovedBy";
     this.txtConfirmApprovedBy.Size = new System.Drawing.Size(50, 20);
     this.txtConfirmApprovedBy.StyleController = this.layoutControl3;
     this.txtConfirmApprovedBy.TabIndex = 39;
     //
     // txtConfirmFromStore
     //
     this.txtConfirmFromStore.Enabled = false;
     this.txtConfirmFromStore.Location = new System.Drawing.Point(527, 54);
     this.txtConfirmFromStore.Name = "txtConfirmFromStore";
     this.txtConfirmFromStore.Size = new System.Drawing.Size(201, 20);
     this.txtConfirmFromStore.StyleController = this.layoutControl3;
     this.txtConfirmFromStore.TabIndex = 38;
     //
     // txtConfirmRequestedBy
     //
     this.txtConfirmRequestedBy.Enabled = false;
     this.txtConfirmRequestedBy.Location = new System.Drawing.Point(378, 167);
     this.txtConfirmRequestedBy.Name = "txtConfirmRequestedBy";
     this.txtConfirmRequestedBy.Size = new System.Drawing.Size(217, 20);
     this.txtConfirmRequestedBy.StyleController = this.layoutControl3;
     this.txtConfirmRequestedBy.TabIndex = 37;
     //
     // dtIssuedDate
     //
     this.dtIssuedDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.dtIssuedDate.CalendarFont = new System.Drawing.Font("Nyala", 13F);
     this.dtIssuedDate.CalendarForeColor = System.Drawing.Color.Black;
     this.dtIssuedDate.DayOfWeekCharacters = 1;
     this.dtIssuedDate.Enabled = false;
     this.dtIssuedDate.ForeColor = System.Drawing.Color.Black;
     this.dtIssuedDate.Location = new System.Drawing.Point(590, 104);
     this.dtIssuedDate.MinDateTime = new System.DateTime(2002, 1, 12, 0, 0, 0, 0);
     this.dtIssuedDate.Name = "dtIssuedDate";
     this.dtIssuedDate.PopUpFontSize = 10F;
     this.dtIssuedDate.Size = new System.Drawing.Size(120, 36);
     this.dtIssuedDate.TabIndex = 28;
     this.dtIssuedDate.Value = new System.DateTime(2012, 1, 12, 0, 0, 0, 0);
     //
     // txtRemarks
     //
     this.txtRemarks.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.txtRemarks.Location = new System.Drawing.Point(343, 447);
     this.txtRemarks.Name = "txtRemarks";
     this.txtRemarks.Size = new System.Drawing.Size(235, 124);
     this.txtRemarks.StyleController = this.layoutControl3;
     this.txtRemarks.TabIndex = 32;
     //
     // txtIssueRefNo
     //
     this.txtIssueRefNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtIssueRefNo.Enabled = false;
     this.txtIssueRefNo.Location = new System.Drawing.Point(378, 100);
     this.txtIssueRefNo.Name = "txtIssueRefNo";
     this.txtIssueRefNo.Size = new System.Drawing.Size(50, 20);
     this.txtIssueRefNo.StyleController = this.layoutControl3;
     this.txtIssueRefNo.TabIndex = 34;
     //
     // gridOutstandingPicklistDetail
     //
     this.gridOutstandingPicklistDetail.Location = new System.Drawing.Point(318, 174);
     this.gridOutstandingPicklistDetail.MainView = this.gridViewConfirmation;
     this.gridOutstandingPicklistDetail.Margin = new System.Windows.Forms.Padding(0);
     this.gridOutstandingPicklistDetail.Name = "gridOutstandingPicklistDetail";
     this.gridOutstandingPicklistDetail.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemMemoEdit3,
     this.repositoryItemTextEdit2});
     this.gridOutstandingPicklistDetail.Size = new System.Drawing.Size(801, 371);
     this.gridOutstandingPicklistDetail.TabIndex = 13;
     this.gridOutstandingPicklistDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewConfirmation});
     this.gridOutstandingPicklistDetail.DoubleClick += new System.EventHandler(this.gridOutstandingPicklistDetail_DoubleClick);
     //
     // gridViewConfirmation
     //
     this.gridViewConfirmation.Appearance.GroupFooter.BackColor = System.Drawing.Color.White;
     this.gridViewConfirmation.Appearance.GroupFooter.BackColor2 = System.Drawing.Color.White;
     this.gridViewConfirmation.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.gridViewConfirmation.Appearance.GroupFooter.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.gridViewConfirmation.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewConfirmation.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewConfirmation.Appearance.GroupFooter.Options.UseTextOptions = true;
     this.gridViewConfirmation.Appearance.GroupFooter.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewConfirmation.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.gridViewConfirmation.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.gridViewConfirmation.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gridViewConfirmation.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewConfirmation.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewConfirmation.Appearance.GroupRow.Options.UseForeColor = true;
     this.gridViewConfirmation.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn76,
     this.gridColumn22,
     this.gridColumn23,
     this.gridColumn35,
     this.gridColumn36,
     this.gridColumn37,
     this.gridColumn38,
     this.gridColumn39,
     this.gridColumn40,
     this.colSKUPicked,
     this.colBUPicked,
     this.gridColumn47,
     this.colCost,
     this.gridColumn60,
     this.gridColumn62,
     this.gridColumn50});
     this.gridViewConfirmation.GridControl = this.gridOutstandingPicklistDetail;
     this.gridViewConfirmation.GroupCount = 1;
     this.gridViewConfirmation.Name = "gridViewConfirmation";
     this.gridViewConfirmation.OptionsBehavior.AutoExpandAllGroups = true;
     this.gridViewConfirmation.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewConfirmation.OptionsCustomization.AllowColumnResizing = false;
     this.gridViewConfirmation.OptionsDetail.AllowExpandEmptyDetails = true;
     this.gridViewConfirmation.OptionsMenu.EnableColumnMenu = false;
     this.gridViewConfirmation.OptionsView.AllowCellMerge = true;
     this.gridViewConfirmation.OptionsView.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.Hidden;
     this.gridViewConfirmation.OptionsView.RowAutoHeight = true;
     this.gridViewConfirmation.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewConfirmation.OptionsView.ShowFooter = true;
     this.gridViewConfirmation.OptionsView.ShowGroupPanel = false;
     this.gridViewConfirmation.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn22, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewConfirmation.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView2_CellValueChanged);
     //
     // gridColumn76
     //
     this.gridColumn76.Caption = "Unit";
     this.gridColumn76.FieldName = "Unit";
     this.gridColumn76.Name = "gridColumn76";
     this.gridColumn76.OptionsColumn.AllowEdit = false;
     this.gridColumn76.OptionsColumn.AllowFocus = false;
     this.gridColumn76.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn76.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.OptionsColumn.AllowMove = false;
     this.gridColumn76.OptionsColumn.AllowShowHide = false;
     this.gridColumn76.OptionsColumn.AllowSize = false;
     this.gridColumn76.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn76.OptionsFilter.AllowFilter = false;
     this.gridColumn76.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn76.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.Visible = true;
     this.gridColumn76.VisibleIndex = 4;
     //
     // gridColumn22
     //
     this.gridColumn22.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn22.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn22.Caption = "Item";
     this.gridColumn22.ColumnEdit = this.repositoryItemMemoEdit3;
     this.gridColumn22.FieldName = "FullItemName";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.OptionsColumn.AllowEdit = false;
     this.gridColumn22.OptionsColumn.AllowFocus = false;
     this.gridColumn22.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.AllowMove = false;
     this.gridColumn22.OptionsColumn.AllowShowHide = false;
     this.gridColumn22.OptionsColumn.AllowSize = false;
     this.gridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn22.OptionsFilter.AllowFilter = false;
     this.gridColumn22.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn22.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.Width = 84;
     //
     // repositoryItemMemoEdit3
     //
     this.repositoryItemMemoEdit3.Name = "repositoryItemMemoEdit3";
     //
     // gridColumn23
     //
     this.gridColumn23.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn23.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn23.Caption = "Manufacturer";
     this.gridColumn23.FieldName = "ManufacturerName";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.OptionsColumn.AllowEdit = false;
     this.gridColumn23.OptionsColumn.AllowFocus = false;
     this.gridColumn23.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn23.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsColumn.AllowMove = false;
     this.gridColumn23.OptionsColumn.AllowShowHide = false;
     this.gridColumn23.OptionsColumn.AllowSize = false;
     this.gridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn23.OptionsFilter.AllowFilter = false;
     this.gridColumn23.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn23.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 0;
     this.gridColumn23.Width = 103;
     //
     // gridColumn35
     //
     this.gridColumn35.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn35.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn35.Caption = "Pack Size";
     this.gridColumn35.FieldName = "BoxSizeDisplay";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.OptionsColumn.AllowEdit = false;
     this.gridColumn35.OptionsColumn.AllowFocus = false;
     this.gridColumn35.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn35.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsColumn.AllowMove = false;
     this.gridColumn35.OptionsColumn.AllowShowHide = false;
     this.gridColumn35.OptionsColumn.AllowSize = false;
     this.gridColumn35.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn35.OptionsFilter.AllowFilter = false;
     this.gridColumn35.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn35.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.Width = 120;
     //
     // gridColumn36
     //
     this.gridColumn36.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn36.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn36.Caption = "Packs To Pick";
     this.gridColumn36.DisplayFormat.FormatString = "#,###.##";
     this.gridColumn36.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn36.FieldName = "SKUTOPICK";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.OptionsColumn.AllowEdit = false;
     this.gridColumn36.OptionsColumn.AllowFocus = false;
     this.gridColumn36.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn36.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsColumn.AllowMove = false;
     this.gridColumn36.OptionsColumn.AllowShowHide = false;
     this.gridColumn36.OptionsColumn.AllowSize = false;
     this.gridColumn36.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn36.OptionsFilter.AllowFilter = false;
     this.gridColumn36.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn36.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.Visible = true;
     this.gridColumn36.VisibleIndex = 5;
     this.gridColumn36.Width = 101;
     //
     // gridColumn37
     //
     this.gridColumn37.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn37.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn37.Caption = "Batch";
     this.gridColumn37.FieldName = "BatchNumber";
     this.gridColumn37.Name = "gridColumn37";
     this.gridColumn37.OptionsColumn.AllowEdit = false;
     this.gridColumn37.OptionsColumn.AllowFocus = false;
     this.gridColumn37.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn37.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsColumn.AllowMove = false;
     this.gridColumn37.OptionsColumn.AllowShowHide = false;
     this.gridColumn37.OptionsColumn.AllowSize = false;
     this.gridColumn37.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn37.OptionsFilter.AllowFilter = false;
     this.gridColumn37.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn37.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.Visible = true;
     this.gridColumn37.VisibleIndex = 1;
     this.gridColumn37.Width = 67;
     //
     // gridColumn38
     //
     this.gridColumn38.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn38.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn38.Caption = "Expiry Date";
     this.gridColumn38.ColumnEdit = this.repositoryItemDateEdit3;
     this.gridColumn38.DisplayFormat.FormatString = "MMM/d/yyyy";
     this.gridColumn38.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn38.FieldName = "ExpireDate";
     this.gridColumn38.Name = "gridColumn38";
     this.gridColumn38.OptionsColumn.AllowEdit = false;
     this.gridColumn38.OptionsColumn.AllowFocus = false;
     this.gridColumn38.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn38.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsColumn.AllowMove = false;
     this.gridColumn38.OptionsColumn.AllowShowHide = false;
     this.gridColumn38.OptionsColumn.AllowSize = false;
     this.gridColumn38.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn38.OptionsFilter.AllowFilter = false;
     this.gridColumn38.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn38.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.Visible = true;
     this.gridColumn38.VisibleIndex = 2;
     this.gridColumn38.Width = 99;
     //
     // gridColumn39
     //
     this.gridColumn39.ColumnEdit = this.repositoryItemButtonEdit4;
     this.gridColumn39.Name = "gridColumn39";
     this.gridColumn39.OptionsColumn.AllowEdit = false;
     this.gridColumn39.OptionsColumn.AllowFocus = false;
     this.gridColumn39.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn39.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsColumn.AllowMove = false;
     this.gridColumn39.OptionsColumn.AllowShowHide = false;
     this.gridColumn39.OptionsColumn.AllowSize = false;
     this.gridColumn39.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn39.OptionsFilter.AllowFilter = false;
     this.gridColumn39.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn39.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.gridColumn39.Width = 25;
     //
     // gridColumn40
     //
     this.gridColumn40.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn40.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn40.Caption = "Volume";
     this.gridColumn40.FieldName = "Volume";
     this.gridColumn40.Name = "gridColumn40";
     this.gridColumn40.OptionsColumn.AllowEdit = false;
     this.gridColumn40.OptionsColumn.AllowFocus = false;
     this.gridColumn40.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn40.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsColumn.AllowMove = false;
     this.gridColumn40.OptionsColumn.AllowShowHide = false;
     this.gridColumn40.OptionsColumn.AllowSize = false;
     this.gridColumn40.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn40.OptionsFilter.AllowFilter = false;
     this.gridColumn40.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn40.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     //
     // colSKUPicked
     //
     this.colSKUPicked.Caption = "Packs Picked";
     this.colSKUPicked.ColumnEdit = this.repositoryItemTextEdit2;
     this.colSKUPicked.DisplayFormat.FormatString = "#,###";
     this.colSKUPicked.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colSKUPicked.FieldName = "SKUPICKED";
     this.colSKUPicked.Name = "colSKUPicked";
     this.colSKUPicked.OptionsColumn.AllowEdit = false;
     this.colSKUPicked.OptionsColumn.AllowFocus = false;
     this.colSKUPicked.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.OptionsColumn.AllowIncrementalSearch = false;
     this.colSKUPicked.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.OptionsColumn.AllowMove = false;
     this.colSKUPicked.OptionsColumn.AllowShowHide = false;
     this.colSKUPicked.OptionsColumn.AllowSize = false;
     this.colSKUPicked.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.OptionsFilter.AllowAutoFilter = false;
     this.colSKUPicked.OptionsFilter.AllowFilter = false;
     this.colSKUPicked.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colSKUPicked.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.Width = 78;
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     //
     // colBUPicked
     //
     this.colBUPicked.Caption = "Qty picked in BU";
     this.colBUPicked.DisplayFormat.FormatString = "#,###";
     this.colBUPicked.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colBUPicked.FieldName = "BUPICKED";
     this.colBUPicked.GroupFormat.FormatString = "#,###";
     this.colBUPicked.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colBUPicked.Name = "colBUPicked";
     this.colBUPicked.OptionsColumn.AllowEdit = false;
     this.colBUPicked.OptionsColumn.AllowFocus = false;
     this.colBUPicked.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsColumn.AllowIncrementalSearch = false;
     this.colBUPicked.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsColumn.AllowMove = false;
     this.colBUPicked.OptionsColumn.AllowShowHide = false;
     this.colBUPicked.OptionsColumn.AllowSize = false;
     this.colBUPicked.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsFilter.AllowAutoFilter = false;
     this.colBUPicked.OptionsFilter.AllowFilter = false;
     this.colBUPicked.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colBUPicked.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum)});
     this.colBUPicked.Width = 102;
     //
     // gridColumn47
     //
     this.gridColumn47.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn47.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn47.Caption = "Location";
     this.gridColumn47.FieldName = "PalletLocation";
     this.gridColumn47.Name = "gridColumn47";
     this.gridColumn47.OptionsColumn.AllowEdit = false;
     this.gridColumn47.OptionsColumn.AllowFocus = false;
     this.gridColumn47.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn47.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsColumn.AllowMove = false;
     this.gridColumn47.OptionsColumn.AllowShowHide = false;
     this.gridColumn47.OptionsColumn.AllowSize = false;
     this.gridColumn47.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn47.OptionsFilter.AllowFilter = false;
     this.gridColumn47.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn47.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.Visible = true;
     this.gridColumn47.VisibleIndex = 3;
     this.gridColumn47.Width = 100;
     //
     // colCost
     //
     this.colCost.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.colCost.AppearanceCell.Options.UseBackColor = true;
     this.colCost.Caption = "Price";
     this.colCost.DisplayFormat.FormatString = "#,##0.#0";
     this.colCost.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colCost.FieldName = "Cost";
     this.colCost.GroupFormat.FormatString = "#,###.##";
     this.colCost.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colCost.Name = "colCost";
     this.colCost.OptionsColumn.AllowEdit = false;
     this.colCost.OptionsColumn.AllowFocus = false;
     this.colCost.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsColumn.AllowIncrementalSearch = false;
     this.colCost.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsColumn.AllowMove = false;
     this.colCost.OptionsColumn.AllowShowHide = false;
     this.colCost.OptionsColumn.AllowSize = false;
     this.colCost.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsFilter.AllowAutoFilter = false;
     this.colCost.OptionsFilter.AllowFilter = false;
     this.colCost.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colCost.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Cost", "{0:#,###.##}")});
     this.colCost.Visible = true;
     this.colCost.VisibleIndex = 7;
     this.colCost.Width = 85;
     //
     // gridColumn60
     //
     this.gridColumn60.Caption = "Units";
     this.gridColumn60.FieldName = "SKUBU";
     this.gridColumn60.Name = "gridColumn60";
     this.gridColumn60.OptionsColumn.AllowEdit = false;
     this.gridColumn60.OptionsColumn.AllowFocus = false;
     this.gridColumn60.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn60.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn60.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn60.OptionsColumn.AllowMove = false;
     this.gridColumn60.OptionsColumn.AllowShowHide = false;
     this.gridColumn60.OptionsColumn.AllowSize = false;
     this.gridColumn60.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn60.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn60.OptionsFilter.AllowFilter = false;
     this.gridColumn60.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn60.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn60.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn60.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColumn62
     //
     this.gridColumn62.Caption = "Unit Price";
     this.gridColumn62.DisplayFormat.FormatString = "#,##0.#0";
     this.gridColumn62.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn62.FieldName = "UnitPrice";
     this.gridColumn62.Name = "gridColumn62";
     this.gridColumn62.OptionsColumn.AllowEdit = false;
     this.gridColumn62.OptionsColumn.AllowFocus = false;
     this.gridColumn62.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn62.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.OptionsColumn.AllowMove = false;
     this.gridColumn62.OptionsColumn.AllowShowHide = false;
     this.gridColumn62.OptionsColumn.AllowSize = false;
     this.gridColumn62.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn62.OptionsFilter.AllowFilter = false;
     this.gridColumn62.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn62.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.Visible = true;
     this.gridColumn62.VisibleIndex = 6;
     //
     // gridColumn50
     //
     this.gridColumn50.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn50.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn50.Caption = "Packs to Pick";
     this.gridColumn50.FieldName = "Packs";
     this.gridColumn50.Name = "gridColumn50";
     this.gridColumn50.OptionsColumn.AllowEdit = false;
     this.gridColumn50.OptionsColumn.AllowFocus = false;
     this.gridColumn50.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn50.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.OptionsColumn.AllowMove = false;
     this.gridColumn50.OptionsColumn.AllowShowHide = false;
     this.gridColumn50.OptionsColumn.AllowSize = false;
     this.gridColumn50.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn50.OptionsFilter.AllowFilter = false;
     this.gridColumn50.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn50.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.Width = 77;
     //
     // txtIssuedBy
     //
     this.txtIssuedBy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.txtIssuedBy.Enabled = false;
     this.txtIssuedBy.Location = new System.Drawing.Point(609, 124);
     this.txtIssuedBy.Name = "txtIssuedBy";
     this.txtIssuedBy.Size = new System.Drawing.Size(53, 20);
     this.txtIssuedBy.StyleController = this.layoutControl3;
     this.txtIssuedBy.TabIndex = 31;
     //
     // lkMode
     //
     this.lkMode.EditValue = "Select Mode";
     this.lkMode.Location = new System.Drawing.Point(50, 36);
     this.lkMode.Name = "lkMode";
     this.lkMode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkMode.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TypeName", "Name")});
     this.lkMode.Properties.DisplayMember = "TypeName";
     this.lkMode.Properties.PopupSizeable = false;
     this.lkMode.Properties.ShowFooter = false;
     this.lkMode.Properties.ShowHeader = false;
     this.lkMode.Properties.ValueMember = "ID";
     this.lkMode.Size = new System.Drawing.Size(243, 20);
     this.lkMode.StyleController = this.layoutControl3;
     this.lkMode.TabIndex = 46;
     this.lkMode.EditValueChanged += new System.EventHandler(this.lkMode_EditValueChanged);
     //
     // lkPaymentType
     //
     this.lkPaymentType.EditValue = "Select Payment Type";
     this.lkPaymentType.Enabled = false;
     this.lkPaymentType.Location = new System.Drawing.Point(867, 30);
     this.lkPaymentType.Margin = new System.Windows.Forms.Padding(0);
     this.lkPaymentType.Name = "lkPaymentType";
     this.lkPaymentType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkPaymentType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkPaymentType.Properties.DisplayMember = "Name";
     this.lkPaymentType.Properties.PopupSizeable = false;
     this.lkPaymentType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lkPaymentType.Properties.ValueMember = "ID";
     this.lkPaymentType.Size = new System.Drawing.Size(127, 20);
     this.lkPaymentType.StyleController = this.layoutControl3;
     this.lkPaymentType.TabIndex = 38;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.dxValidationProvider1.SetValidationRule(this.lkPaymentType, conditionValidationRule1);
     this.lkPaymentType.EditValueChanged += new System.EventHandler(this.lkPaymentType_EditValueChanged);
     this.lkPaymentType.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.cboCashCredit_EditValueChanging);
     //
     // layoutControlItem18
     //
     this.layoutControlItem18.CustomizationFormText = "layoutControlItem18";
     this.layoutControlItem18.Location = new System.Drawing.Point(387, 72);
     this.layoutControlItem18.Name = "layoutControlItem18";
     this.layoutControlItem18.Size = new System.Drawing.Size(330, 24);
     this.layoutControlItem18.Text = "layoutControlItem18";
     this.layoutControlItem18.TextSize = new System.Drawing.Size(100, 0);
     this.layoutControlItem18.TextToControlDistance = 0;
     this.layoutControlItem18.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // tabbedControlGroup1
     //
     this.tabbedControlGroup1.CustomizationFormText = "tabbedControlGroup1";
     this.tabbedControlGroup1.Location = new System.Drawing.Point(421, 241);
     this.tabbedControlGroup1.Name = "tabbedControlGroup1";
     this.tabbedControlGroup1.SelectedTabPage = this.layoutControlGroup11;
     this.tabbedControlGroup1.SelectedTabPageIndex = 0;
     this.tabbedControlGroup1.Size = new System.Drawing.Size(148, 132);
     this.tabbedControlGroup1.TabPages.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup11});
     this.tabbedControlGroup1.Text = "tabbedControlGroup1";
     //
     // layoutControlGroup11
     //
     this.layoutControlGroup11.CustomizationFormText = "layoutControlGroup11";
     this.layoutControlGroup11.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup11.Name = "layoutControlGroup11";
     this.layoutControlGroup11.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup11.Size = new System.Drawing.Size(124, 86);
     this.layoutControlGroup11.Text = "layoutControlGroup11";
     //
     // layoutControlItem26
     //
     this.layoutControlItem26.Control = this.txtConfirmFromStore;
     this.layoutControlItem26.CustomizationFormText = "layoutControlItem26";
     this.layoutControlItem26.Location = new System.Drawing.Point(189, 50);
     this.layoutControlItem26.Name = "layoutControlItem26";
     this.layoutControlItem26.Size = new System.Drawing.Size(310, 24);
     this.layoutControlItem26.Text = "From Store";
     this.layoutControlItem26.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem26.TextToControlDistance = 5;
     //
     // layoutControlItem25
     //
     this.layoutControlItem25.Control = this.txtConfirmRequestedBy;
     this.layoutControlItem25.CustomizationFormText = "layoutControlItem25";
     this.layoutControlItem25.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem25.Name = "layoutControlItem25";
     this.layoutControlItem25.Size = new System.Drawing.Size(326, 24);
     this.layoutControlItem25.Text = "Requested By";
     this.layoutControlItem25.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem25.TextToControlDistance = 5;
     //
     // layoutControlItem20
     //
     this.layoutControlItem20.Control = this.txtConfirmOrderNumber;
     this.layoutControlItem20.CustomizationFormText = "Order Number";
     this.layoutControlItem20.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem20.Name = "layoutControlItem20";
     this.layoutControlItem20.Size = new System.Drawing.Size(326, 24);
     this.layoutControlItem20.Text = "Order Number";
     this.layoutControlItem20.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem20.TextToControlDistance = 5;
     //
     // layoutControlItem17
     //
     this.layoutControlItem17.Control = this.txtIssueRefNo;
     this.layoutControlItem17.CustomizationFormText = "Ref. No";
     this.layoutControlItem17.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem17.Name = "layoutControlItem17";
     this.layoutControlItem17.Size = new System.Drawing.Size(159, 24);
     this.layoutControlItem17.Text = "Ref. No:";
     this.layoutControlItem17.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem17.TextToControlDistance = 5;
     //
     // layoutControlItem21
     //
     this.layoutControlItem21.Control = this.txtIssuedBy;
     this.layoutControlItem21.CustomizationFormText = "Issued By";
     this.layoutControlItem21.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem21.Name = "layoutControlItem21";
     this.layoutControlItem21.Size = new System.Drawing.Size(144, 24);
     this.layoutControlItem21.Text = "Issued By";
     this.layoutControlItem21.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem21.TextToControlDistance = 5;
     //
     // layoutControlItem27
     //
     this.layoutControlItem27.Control = this.txtConfirmApprovedBy;
     this.layoutControlItem27.CustomizationFormText = "Approved By";
     this.layoutControlItem27.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem27.Name = "layoutControlItem27";
     this.layoutControlItem27.Size = new System.Drawing.Size(158, 24);
     this.layoutControlItem27.Text = "Approved By";
     this.layoutControlItem27.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem27.TextToControlDistance = 5;
     //
     // layoutControlItem22
     //
     this.layoutControlItem22.Control = this.txtRemarks;
     this.layoutControlItem22.CustomizationFormText = "Remarks";
     this.layoutControlItem22.Location = new System.Drawing.Point(257, 443);
     this.layoutControlItem22.Name = "layoutControlItem22";
     this.layoutControlItem22.Size = new System.Drawing.Size(321, 128);
     this.layoutControlItem22.Text = "Remarks";
     this.layoutControlItem22.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem22.TextToControlDistance = 5;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.lkPaymentType;
     this.layoutControlItem1.CustomizationFormText = "Payment Type";
     this.layoutControlItem1.Location = new System.Drawing.Point(468, 0);
     this.layoutControlItem1.MinSize = new System.Drawing.Size(128, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(205, 24);
     this.layoutControlItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem1.Text = "Payment Type";
     this.layoutControlItem1.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(69, 13);
     this.layoutControlItem1.TextToControlDistance = 5;
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem12.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem12.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem12.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem12.Control = this.lblApprovedDate;
     this.layoutControlItem12.CustomizationFormText = "Approved Date:";
     this.layoutControlItem12.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem12.MaxSize = new System.Drawing.Size(188, 20);
     this.layoutControlItem12.MinSize = new System.Drawing.Size(188, 20);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Size = new System.Drawing.Size(188, 20);
     this.layoutControlItem12.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem12.Text = "Approved Date:";
     this.layoutControlItem12.TextSize = new System.Drawing.Size(121, 13);
     this.layoutControlItem12.TextToControlDistance = 5;
     //
     // layoutControlItem15
     //
     this.layoutControlItem15.Control = this.dtIssuedDate;
     this.layoutControlItem15.CustomizationFormText = "Issued Date";
     this.layoutControlItem15.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem15.MinSize = new System.Drawing.Size(186, 24);
     this.layoutControlItem15.Name = "layoutControlItem15";
     this.layoutControlItem15.Size = new System.Drawing.Size(187, 40);
     this.layoutControlItem15.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem15.Text = "Issued Date";
     this.layoutControlItem15.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem15.TextSize = new System.Drawing.Size(58, 13);
     this.layoutControlItem15.TextToControlDistance = 5;
     //
     // layoutControlGroup7
     //
     this.layoutControlGroup7.CustomizationFormText = "layoutControlGroup7";
     this.layoutControlGroup7.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup7.GroupBordersVisible = false;
     this.layoutControlGroup7.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup12,
     this.layoutControlGroup13,
     this.layoutControlItem42,
     this.layoutControlItem43,
     this.layoutSupplimentaryOrder,
     this.lcOutstandingPicklists,
     this.layoutControlItem3,
     this.emptySpaceItem2,
     this.emptySpaceItem3});
     this.layoutControlGroup7.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup7.Name = "Root";
     this.layoutControlGroup7.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup7.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutControlGroup7.Size = new System.Drawing.Size(1123, 575);
     this.layoutControlGroup7.Text = "Root";
     this.layoutControlGroup7.TextVisible = false;
     //
     // layoutControlGroup12
     //
     this.layoutControlGroup12.CustomizationFormText = "Order Headers";
     this.layoutControlGroup12.GroupBordersVisible = false;
     this.layoutControlGroup12.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.HeaderSection,
     this.layoutControlGroup2,
     this.layoutControlGroup3,
     this.layoutControlGroup4,
     this.layoutControlGroup1});
     this.layoutControlGroup12.Location = new System.Drawing.Point(314, 0);
     this.layoutControlGroup12.Name = "layoutControlGroup12";
     this.layoutControlGroup12.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup12.Size = new System.Drawing.Size(805, 147);
     this.layoutControlGroup12.Text = "Order Headers";
     //
     // HeaderSection
     //
     this.HeaderSection.AppearanceGroup.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.HeaderSection.AppearanceGroup.Options.UseFont = true;
     this.HeaderSection.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.HeaderSection.AppearanceItemCaption.Options.UseFont = true;
     this.HeaderSection.CustomizationFormText = " ";
     this.HeaderSection.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem6,
     this.layoutControlItem7,
     this.layoutControlItem8,
     this.layoutControlItem9,
     this.layoutControlItem10,
     this.layoutControlItem23,
     this.layoutControlItem11,
     this.layoutControlItem13});
     this.HeaderSection.Location = new System.Drawing.Point(0, 0);
     this.HeaderSection.Name = "HeaderSection";
     this.HeaderSection.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.HeaderSection.Size = new System.Drawing.Size(805, 93);
     this.HeaderSection.Text = " ";
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem6.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem6.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem6.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem6.Control = this.lblMode;
     this.layoutControlItem6.CustomizationFormText = "Mode:";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem6.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem6.MinSize = new System.Drawing.Size(51, 20);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(202, 20);
     this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem6.Text = "Mode:";
     this.layoutControlItem6.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem6.TextSize = new System.Drawing.Size(34, 13);
     this.layoutControlItem6.TextToControlDistance = 25;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem7.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem7.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem7.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem7.Control = this.lblOwnership;
     this.layoutControlItem7.CustomizationFormText = "Ownership Type:";
     this.layoutControlItem7.Location = new System.Drawing.Point(202, 0);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(64, 17);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(589, 20);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.Text = "Ownership:";
     this.layoutControlItem7.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(62, 13);
     this.layoutControlItem7.TextToControlDistance = 5;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem8.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem8.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem8.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem8.Control = this.lblWoreda;
     this.layoutControlItem8.CustomizationFormText = "Woreda:";
     this.layoutControlItem8.Location = new System.Drawing.Point(0, 40);
     this.layoutControlItem8.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem8.MinSize = new System.Drawing.Size(51, 20);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(202, 20);
     this.layoutControlItem8.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem8.Text = "Woreda:";
     this.layoutControlItem8.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem8.TextSize = new System.Drawing.Size(47, 13);
     this.layoutControlItem8.TextToControlDistance = 12;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem9.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem9.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem9.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem9.Control = this.lblZone;
     this.layoutControlItem9.CustomizationFormText = "Zone:";
     this.layoutControlItem9.Location = new System.Drawing.Point(202, 40);
     this.layoutControlItem9.MinSize = new System.Drawing.Size(78, 17);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(203, 20);
     this.layoutControlItem9.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem9.Text = "Zone:";
     this.layoutControlItem9.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem9.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem9.TextToControlDistance = 36;
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem10.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem10.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem10.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem10.Control = this.lblRegion;
     this.layoutControlItem10.CustomizationFormText = "Region:";
     this.layoutControlItem10.Location = new System.Drawing.Point(405, 40);
     this.layoutControlItem10.MinSize = new System.Drawing.Size(66, 17);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(386, 20);
     this.layoutControlItem10.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem10.Text = "Region:";
     this.layoutControlItem10.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem10.TextSize = new System.Drawing.Size(42, 13);
     this.layoutControlItem10.TextToControlDistance = 23;
     //
     // layoutControlItem23
     //
     this.layoutControlItem23.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem23.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem23.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem23.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem23.Control = this.lblPaymentType;
     this.layoutControlItem23.CustomizationFormText = "Payment Type:";
     this.layoutControlItem23.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem23.MinSize = new System.Drawing.Size(82, 17);
     this.layoutControlItem23.Name = "layoutControlItem23";
     this.layoutControlItem23.Size = new System.Drawing.Size(202, 20);
     this.layoutControlItem23.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem23.Text = "Payment:";
     this.layoutControlItem23.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem23.TextSize = new System.Drawing.Size(54, 13);
     this.layoutControlItem23.TextToControlDistance = 5;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem11.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem11.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem11.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem11.Control = this.lblInstitutionType;
     this.layoutControlItem11.CustomizationFormText = "Type:";
     this.layoutControlItem11.Location = new System.Drawing.Point(405, 20);
     this.layoutControlItem11.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem11.MinSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(386, 20);
     this.layoutControlItem11.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem11.Text = "Inst. Type:";
     this.layoutControlItem11.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem11.TextSize = new System.Drawing.Size(60, 13);
     this.layoutControlItem11.TextToControlDistance = 5;
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem13.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem13.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem13.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem13.Control = this.lblRefNo;
     this.layoutControlItem13.CustomizationFormText = "Ref. No:";
     this.layoutControlItem13.Location = new System.Drawing.Point(202, 20);
     this.layoutControlItem13.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem13.MinSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(203, 20);
     this.layoutControlItem13.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem13.Text = "Ref. No:";
     this.layoutControlItem13.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem13.TextSize = new System.Drawing.Size(42, 13);
     this.layoutControlItem13.TextToControlDistance = 25;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem24,
     this.layoutControlItem14});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 93);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup2.Size = new System.Drawing.Size(204, 54);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // layoutControlItem24
     //
     this.layoutControlItem24.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem24.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem24.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem24.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem24.Control = this.lblissuedDate;
     this.layoutControlItem24.CustomizationFormText = "Issued Date:";
     this.layoutControlItem24.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem24.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem24.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem24.Name = "layoutControlItem24";
     this.layoutControlItem24.Size = new System.Drawing.Size(190, 20);
     this.layoutControlItem24.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem24.Text = "Requested Date:";
     this.layoutControlItem24.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem24.TextSize = new System.Drawing.Size(94, 13);
     this.layoutControlItem24.TextToControlDistance = 5;
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem14.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem14.Control = this.lblIssuedBy;
     this.layoutControlItem14.CustomizationFormText = "Issued By:";
     this.layoutControlItem14.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem14.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem14.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(190, 20);
     this.layoutControlItem14.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem14.Text = "Requested By:";
     this.layoutControlItem14.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem14.TextSize = new System.Drawing.Size(81, 13);
     this.layoutControlItem14.TextToControlDistance = 18;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem16,
     this.layoutControlItem30});
     this.layoutControlGroup3.Location = new System.Drawing.Point(204, 93);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup3.Size = new System.Drawing.Size(202, 54);
     this.layoutControlGroup3.Text = "layoutControlGroup3";
     this.layoutControlGroup3.TextVisible = false;
     //
     // layoutControlItem16
     //
     this.layoutControlItem16.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem16.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem16.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem16.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem16.Control = this.lblApprovedBy;
     this.layoutControlItem16.CustomizationFormText = "Approved By:";
     this.layoutControlItem16.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem16.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem16.MinSize = new System.Drawing.Size(86, 20);
     this.layoutControlItem16.Name = "layoutControlItem16";
     this.layoutControlItem16.Size = new System.Drawing.Size(188, 20);
     this.layoutControlItem16.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem16.Text = "Approved By:";
     this.layoutControlItem16.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem16.TextSize = new System.Drawing.Size(75, 13);
     this.layoutControlItem16.TextToControlDistance = 18;
     //
     // layoutControlItem30
     //
     this.layoutControlItem30.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem30.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem30.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem30.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem30.Control = this.lblAppDate;
     this.layoutControlItem30.CustomizationFormText = "Approved Date:";
     this.layoutControlItem30.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem30.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem30.Name = "layoutControlItem30";
     this.layoutControlItem30.Size = new System.Drawing.Size(188, 20);
     this.layoutControlItem30.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem30.Text = "Approved Date:";
     this.layoutControlItem30.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem30.TextSize = new System.Drawing.Size(88, 13);
     this.layoutControlItem30.TextToControlDistance = 5;
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "layoutControlGroup4";
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem31,
     this.layoutControlItem32});
     this.layoutControlGroup4.Location = new System.Drawing.Point(406, 93);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup4.Size = new System.Drawing.Size(201, 54);
     this.layoutControlGroup4.Text = "layoutControlGroup4";
     this.layoutControlGroup4.TextVisible = false;
     //
     // layoutControlItem31
     //
     this.layoutControlItem31.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem31.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem31.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem31.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem31.Control = this.lblPicklistConfirmedBy;
     this.layoutControlItem31.CustomizationFormText = "Picklist Confirmed By:";
     this.layoutControlItem31.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem31.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem31.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem31.Name = "layoutControlItem31";
     this.layoutControlItem31.Size = new System.Drawing.Size(187, 20);
     this.layoutControlItem31.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem31.Text = "Picklisted By:";
     this.layoutControlItem31.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem31.TextSize = new System.Drawing.Size(74, 13);
     this.layoutControlItem31.TextToControlDistance = 18;
     //
     // layoutControlItem32
     //
     this.layoutControlItem32.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem32.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem32.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem32.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem32.Control = this.lblPicklistPrintedDate;
     this.layoutControlItem32.CustomizationFormText = "Picklisted Date:";
     this.layoutControlItem32.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem32.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem32.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem32.Name = "layoutControlItem32";
     this.layoutControlItem32.Size = new System.Drawing.Size(187, 20);
     this.layoutControlItem32.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem32.Text = "Picklisted Date:";
     this.layoutControlItem32.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem32.TextSize = new System.Drawing.Size(87, 13);
     this.layoutControlItem32.TextToControlDistance = 5;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem28,
     this.layoutControlItem29});
     this.layoutControlGroup1.Location = new System.Drawing.Point(607, 93);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup1.Size = new System.Drawing.Size(198, 54);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem28
     //
     this.layoutControlItem28.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem28.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem28.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem28.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem28.Control = this.lblIssueTypes;
     this.layoutControlItem28.CustomizationFormText = "Issue Type:";
     this.layoutControlItem28.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem28.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem28.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem28.Name = "layoutControlItem28";
     this.layoutControlItem28.Size = new System.Drawing.Size(184, 20);
     this.layoutControlItem28.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem28.Text = "Type:";
     this.layoutControlItem28.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem28.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem28.TextToControlDistance = 14;
     //
     // layoutControlItem29
     //
     this.layoutControlItem29.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem29.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem29.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem29.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem29.Control = this.lblIssueStatus;
     this.layoutControlItem29.CustomizationFormText = "Issue Status:";
     this.layoutControlItem29.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem29.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem29.Name = "layoutControlItem29";
     this.layoutControlItem29.Size = new System.Drawing.Size(184, 20);
     this.layoutControlItem29.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem29.Text = "Status:";
     this.layoutControlItem29.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem29.TextSize = new System.Drawing.Size(40, 13);
     this.layoutControlItem29.TextToControlDistance = 5;
     //
     // layoutControlGroup13
     //
     this.layoutControlGroup13.CustomizationFormText = "Pick List Confirmation";
     this.layoutControlGroup13.GroupBordersVisible = false;
     this.layoutControlGroup13.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem19,
     this.layoutControlItem4});
     this.layoutControlGroup13.Location = new System.Drawing.Point(314, 147);
     this.layoutControlGroup13.Name = "layoutControlGroup13";
     this.layoutControlGroup13.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup13.Size = new System.Drawing.Size(805, 398);
     this.layoutControlGroup13.Text = "Pick List Confirmation";
     //
     // layoutControlItem19
     //
     this.layoutControlItem19.Control = this.gridOutstandingPicklistDetail;
     this.layoutControlItem19.CustomizationFormText = "layoutControlItem19";
     this.layoutControlItem19.Location = new System.Drawing.Point(0, 23);
     this.layoutControlItem19.Name = "layoutControlItem19";
     this.layoutControlItem19.Size = new System.Drawing.Size(805, 375);
     this.layoutControlItem19.Text = "layoutControlItem19";
     this.layoutControlItem19.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem19.TextToControlDistance = 0;
     this.layoutControlItem19.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.chkIncludeInsurance;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(805, 23);
     this.layoutControlItem4.Text = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible = false;
     //
     // layoutControlItem42
     //
     this.layoutControlItem42.Control = this.btnCancelIssue;
     this.layoutControlItem42.CustomizationFormText = "layoutControlItem42";
     this.layoutControlItem42.Location = new System.Drawing.Point(973, 545);
     this.layoutControlItem42.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem42.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem42.Name = "layoutControlItem42";
     this.layoutControlItem42.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem42.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem42.Text = "layoutControlItem42";
     this.layoutControlItem42.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem42.TextToControlDistance = 0;
     this.layoutControlItem42.TextVisible = false;
     //
     // layoutControlItem43
     //
     this.layoutControlItem43.Control = this.btnConfirmIssue1;
     this.layoutControlItem43.CustomizationFormText = "layoutControlItem43";
     this.layoutControlItem43.Location = new System.Drawing.Point(827, 545);
     this.layoutControlItem43.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem43.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem43.Name = "layoutControlItem43";
     this.layoutControlItem43.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem43.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem43.Text = "layoutControlItem43";
     this.layoutControlItem43.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem43.TextToControlDistance = 0;
     this.layoutControlItem43.TextVisible = false;
     //
     // layoutSupplimentaryOrder
     //
     this.layoutSupplimentaryOrder.Control = this.simpleButton1;
     this.layoutSupplimentaryOrder.CustomizationFormText = "layoutSupplimentaryOrder";
     this.layoutSupplimentaryOrder.Location = new System.Drawing.Point(535, 545);
     this.layoutSupplimentaryOrder.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutSupplimentaryOrder.MinSize = new System.Drawing.Size(146, 26);
     this.layoutSupplimentaryOrder.Name = "layoutSupplimentaryOrder";
     this.layoutSupplimentaryOrder.Size = new System.Drawing.Size(146, 26);
     this.layoutSupplimentaryOrder.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutSupplimentaryOrder.Text = "layoutSupplimentaryOrder";
     this.layoutSupplimentaryOrder.TextSize = new System.Drawing.Size(0, 0);
     this.layoutSupplimentaryOrder.TextToControlDistance = 0;
     this.layoutSupplimentaryOrder.TextVisible = false;
     this.layoutSupplimentaryOrder.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // lcOutstandingPicklists
     //
     this.lcOutstandingPicklists.CustomizationFormText = "Outstanding Pick Lists";
     this.lcOutstandingPicklists.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem50,
     this.layoutControlGroup5,
     this.emptySpaceItem1});
     this.lcOutstandingPicklists.Location = new System.Drawing.Point(0, 0);
     this.lcOutstandingPicklists.Name = "lcOutstandingPicklists";
     this.lcOutstandingPicklists.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.lcOutstandingPicklists.Size = new System.Drawing.Size(306, 571);
     this.lcOutstandingPicklists.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.lcOutstandingPicklists.Text = "Outstanding Pick Lists";
     this.lcOutstandingPicklists.TextLocation = DevExpress.Utils.Locations.Left;
     this.lcOutstandingPicklists.TextVisible = false;
     //
     // layoutControlItem50
     //
     this.layoutControlItem50.Control = this.gridOutstandingPickLists;
     this.layoutControlItem50.CustomizationFormText = "layoutControlItem50";
     this.layoutControlItem50.Location = new System.Drawing.Point(0, 93);
     this.layoutControlItem50.MaxSize = new System.Drawing.Size(304, 0);
     this.layoutControlItem50.MinSize = new System.Drawing.Size(304, 24);
     this.layoutControlItem50.Name = "layoutControlItem50";
     this.layoutControlItem50.Size = new System.Drawing.Size(304, 452);
     this.layoutControlItem50.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem50.Text = "layoutControlItem50";
     this.layoutControlItem50.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem50.TextToControlDistance = 0;
     this.layoutControlItem50.TextVisible = false;
     //
     // layoutControlGroup5
     //
     this.layoutControlGroup5.CustomizationFormText = "Filter";
     this.layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem2,
     this.layoutControlItem5});
     this.layoutControlGroup5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup5.Name = "layoutControlGroup5";
     this.layoutControlGroup5.Size = new System.Drawing.Size(304, 93);
     this.layoutControlGroup5.Text = "Filter";
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.txtFacilityNameFilter;
     this.layoutControlItem2.ControlAlignment = System.Drawing.ContentAlignment.BottomLeft;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(300, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(236, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(280, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Filter:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(28, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.lkMode;
     this.layoutControlItem5.CustomizationFormText = "Mode";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem5.MinSize = new System.Drawing.Size(85, 20);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(280, 26);
     this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem5.Text = "Mode:";
     this.layoutControlItem5.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem5.TextToControlDistance = 3;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 545);
     this.emptySpaceItem1.MaxSize = new System.Drawing.Size(0, 24);
     this.emptySpaceItem1.MinSize = new System.Drawing.Size(104, 24);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(304, 24);
     this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnReturnToApprovalStep;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(681, 545);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible = false;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(314, 545);
     this.emptySpaceItem2.MaxSize = new System.Drawing.Size(0, 26);
     this.emptySpaceItem2.MinSize = new System.Drawing.Size(10, 26);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(221, 26);
     this.emptySpaceItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(306, 0);
     this.emptySpaceItem3.MaxSize = new System.Drawing.Size(8, 0);
     this.emptySpaceItem3.MinSize = new System.Drawing.Size(8, 10);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(8, 571);
     this.emptySpaceItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // popupMenu1
     //
     this.popupMenu1.Name = "popupMenu1";
     //
     // emptySpaceItem15
     //
     this.emptySpaceItem15.AllowHotTrack = false;
     this.emptySpaceItem15.CustomizationFormText = "emptySpaceItem15";
     this.emptySpaceItem15.Location = new System.Drawing.Point(0, 116);
     this.emptySpaceItem15.Name = "emptySpaceItem15";
     this.emptySpaceItem15.Size = new System.Drawing.Size(717, 10);
     this.emptySpaceItem15.Text = "emptySpaceItem15";
     this.emptySpaceItem15.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup8
     //
     this.layoutControlGroup8.CustomizationFormText = "layoutControlGroup8";
     this.layoutControlGroup8.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup8.Name = "layoutControlGroup8";
     this.layoutControlGroup8.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup8.Size = new System.Drawing.Size(717, 116);
     this.layoutControlGroup8.Text = "layoutControlGroup8";
     //
     // layoutControlGroup9
     //
     this.layoutControlGroup9.CustomizationFormText = "layoutControlGroup9";
     this.layoutControlGroup9.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup9.Name = "layoutControlGroup9";
     this.layoutControlGroup9.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup9.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup9.Text = "layoutControlGroup9";
     //
     // layoutControlGroup10
     //
     this.layoutControlGroup10.CustomizationFormText = "layoutControlGroup10";
     this.layoutControlGroup10.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup10.Name = "layoutControlGroup10";
     this.layoutControlGroup10.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup10.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup10.Text = "layoutControlGroup10";
     //
     // emptySpaceItem10
     //
     this.emptySpaceItem10.AllowHotTrack = false;
     this.emptySpaceItem10.CustomizationFormText = "emptySpaceItem10";
     this.emptySpaceItem10.Location = new System.Drawing.Point(0, 0);
     this.emptySpaceItem10.Name = "emptySpaceItem10";
     this.emptySpaceItem10.Size = new System.Drawing.Size(693, 10);
     this.emptySpaceItem10.Text = "emptySpaceItem10";
     this.emptySpaceItem10.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem22
     //
     this.emptySpaceItem22.AllowHotTrack = false;
     this.emptySpaceItem22.CustomizationFormText = "emptySpaceItem22";
     this.emptySpaceItem22.Location = new System.Drawing.Point(85, 0);
     this.emptySpaceItem22.Name = "emptySpaceItem22";
     this.emptySpaceItem22.Size = new System.Drawing.Size(119, 479);
     this.emptySpaceItem22.Text = "emptySpaceItem22";
     this.emptySpaceItem22.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem23
     //
     this.emptySpaceItem23.AllowHotTrack = false;
     this.emptySpaceItem23.CustomizationFormText = "emptySpaceItem23";
     this.emptySpaceItem23.Location = new System.Drawing.Point(1179, 24);
     this.emptySpaceItem23.Name = "emptySpaceItem23";
     this.emptySpaceItem23.Size = new System.Drawing.Size(10, 455);
     this.emptySpaceItem23.Text = "emptySpaceItem23";
     this.emptySpaceItem23.TextSize = new System.Drawing.Size(0, 0);
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
     this.printableComponentLink1,
     this.printOrder});
     //
     // printableComponentLink1
     //
     this.printableComponentLink1.Landscape = true;
     this.printableComponentLink1.Margins = new System.Drawing.Printing.Margins(20, 20, 20, 20);
     this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(null, new DevExpress.XtraPrinting.PageFooterArea(new string[] {
         "[Time Printed]",
         "[Date Printed]",
         "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))), DevExpress.XtraPrinting.BrickAlignment.Near));
     this.printableComponentLink1.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printableComponentLink1.PrintingSystemBase = this.printingSystem1;
     this.printableComponentLink1.RtfReportHeader = resources.GetString("printableComponentLink1.RtfReportHeader");
     //
     // printOrder
     //
     this.printOrder.Landscape = true;
     this.printOrder.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printOrder.PrintingSystemBase = this.printingSystem1;
     //
     // InvoiceForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1123, 575);
     this.Controls.Add(this.layoutControl3);
     this.Name = "InvoiceForm";
     this.Text = "Order";
     this.Load += new System.EventHandler(this.OrderForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl3)).EndInit();
     this.layoutControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chkIncludeInsurance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFacilityNameFilter.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPickLists)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPickListView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmOrderNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmApprovedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmFromStore.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmRequestedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIssueRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPicklistDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewConfirmation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIssuedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkMode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPaymentType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabbedControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderSection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem42)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem43)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutSupplimentaryOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcOutstandingPicklists)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem50)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 45
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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmUserRights));
     this.grpMDUserRight = new DevExpress.XtraEditors.GroupControl();
     this.TabControlMd_UserRightLevel = new DevExpress.XtraTab.XtraTabControl();
     this.TabPageBranchRight = new DevExpress.XtraTab.XtraTabPage();
     this.btnPcReset = new DevExpress.XtraEditors.SimpleButton();
     this.btnPcSearch = new DevExpress.XtraEditors.SimpleButton();
     this.ddlMember = new DevExpress.XtraEditors.TextEdit();
     this.label5 = new System.Windows.Forms.Label();
     this.btnBranch_Add = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btnBranch_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_UserBranchRight = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_BRight = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnBRight1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_EmployeeID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnBRight2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_BranchID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.TabPageRight = new DevExpress.XtraTab.XtraTabPage();
     this.btnRightCode_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnRightCode_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_RightCode = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_RightCode = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnRightCode1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnRightCode2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnRightCode3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cmbRightType = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.TabPageRightLevel = new DevExpress.XtraTab.XtraTabPage();
     this.btnRightLevel_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnRightLevel_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_RightLevel = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_RightLevel = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnMdRL1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdRL2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdRL3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdRL4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_RightLevelEmployeeID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.TabPageRightLevelEntries = new DevExpress.XtraTab.XtraTabPage();
     this.btnRLEntries_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnRLEntries_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_RightLevelEntries = new DevExpress.XtraGrid.GridControl();
     this.gridViewRightLevelEntries = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnRLE1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_RightsLevel = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnRLE2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Rights = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDUserRight)).BeginInit();
     this.grpMDUserRight.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TabControlMd_UserRightLevel)).BeginInit();
     this.TabControlMd_UserRightLevel.SuspendLayout();
     this.TabPageBranchRight.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlMember.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_UserBranchRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_BRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_EmployeeID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchID)).BeginInit();
     this.TabPageRight.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_RightCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_RightCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbRightType)).BeginInit();
     this.TabPageRightLevel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_RightLevel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_RightLevel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RightLevelEmployeeID)).BeginInit();
     this.TabPageRightLevelEntries.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_RightLevelEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRightLevelEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RightsLevel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Rights)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDUserRight
     //
     this.grpMDUserRight.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDUserRight.Appearance.Options.UseBackColor = true;
     this.grpMDUserRight.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.grpMDUserRight.AppearanceCaption.Options.UseFont = true;
     this.grpMDUserRight.Controls.Add(this.TabControlMd_UserRightLevel);
     this.grpMDUserRight.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDUserRight.Location = new System.Drawing.Point(8, 0);
     this.grpMDUserRight.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDUserRight.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDUserRight.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDUserRight.Name = "grpMDUserRight";
     this.grpMDUserRight.Size = new System.Drawing.Size(960, 528);
     this.grpMDUserRight.TabIndex = 91;
     this.grpMDUserRight.Text = "User Rights";
     //
     // TabControlMd_UserRightLevel
     //
     this.TabControlMd_UserRightLevel.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.TabControlMd_UserRightLevel.AppearancePage.Header.Options.UseFont = true;
     this.TabControlMd_UserRightLevel.Dock = System.Windows.Forms.DockStyle.Top;
     this.TabControlMd_UserRightLevel.Location = new System.Drawing.Point(2, 20);
     this.TabControlMd_UserRightLevel.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.TabControlMd_UserRightLevel.LookAndFeel.UseDefaultLookAndFeel = false;
     this.TabControlMd_UserRightLevel.Name = "TabControlMd_UserRightLevel";
     this.TabControlMd_UserRightLevel.SelectedTabPage = this.TabPageBranchRight;
     this.TabControlMd_UserRightLevel.Size = new System.Drawing.Size(956, 506);
     this.TabControlMd_UserRightLevel.TabIndex = 21;
     this.TabControlMd_UserRightLevel.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                                 this.TabPageBranchRight,
                                                                                                 this.TabPageRight,
                                                                                                 this.TabPageRightLevel,
                                                                                                 this.TabPageRightLevelEntries});
     this.TabControlMd_UserRightLevel.Text = "xtraTabControl2";
     //
     // TabPageBranchRight
     //
     this.TabPageBranchRight.Controls.Add(this.btnPcReset);
     this.TabPageBranchRight.Controls.Add(this.btnPcSearch);
     this.TabPageBranchRight.Controls.Add(this.ddlMember);
     this.TabPageBranchRight.Controls.Add(this.label5);
     this.TabPageBranchRight.Controls.Add(this.btnBranch_Add);
     this.TabPageBranchRight.Controls.Add(this.btnBranch_Del);
     this.TabPageBranchRight.Controls.Add(this.groupControl1);
     this.TabPageBranchRight.Name = "TabPageBranchRight";
     this.TabPageBranchRight.Size = new System.Drawing.Size(950, 477);
     this.TabPageBranchRight.Text = "Branch Right";
     //
     // btnPcReset
     //
     this.btnPcReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPcReset.Appearance.Options.UseFont = true;
     this.btnPcReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPcReset.Location = new System.Drawing.Point(392, 8);
     this.btnPcReset.Name = "btnPcReset";
     this.btnPcReset.Size = new System.Drawing.Size(72, 20);
     this.btnPcReset.TabIndex = 179;
     this.btnPcReset.Text = "Reset";
     this.btnPcReset.Click += new System.EventHandler(this.btnPcReset_Click);
     //
     // btnPcSearch
     //
     this.btnPcSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPcSearch.Appearance.Options.UseFont = true;
     this.btnPcSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPcSearch.Location = new System.Drawing.Point(312, 8);
     this.btnPcSearch.Name = "btnPcSearch";
     this.btnPcSearch.Size = new System.Drawing.Size(72, 20);
     this.btnPcSearch.TabIndex = 178;
     this.btnPcSearch.Text = "Search";
     this.btnPcSearch.Click += new System.EventHandler(this.btnPcSearch_Click);
     //
     // ddlMember
     //
     this.ddlMember.EditValue = "";
     this.ddlMember.Location = new System.Drawing.Point(184, 8);
     this.ddlMember.Name = "ddlMember";
     this.ddlMember.Size = new System.Drawing.Size(120, 20);
     this.ddlMember.TabIndex = 177;
     this.ddlMember.ToolTip = "Use Search Member Tools For Input ";
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location = new System.Drawing.Point(104, 8);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(80, 22);
     this.label5.TabIndex = 175;
     this.label5.Text = "Employee ID";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnBranch_Add
     //
     this.btnBranch_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnBranch_Add.Appearance.Options.UseFont = true;
     this.btnBranch_Add.Appearance.Options.UseTextOptions = true;
     this.btnBranch_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnBranch_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnBranch_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnBranch_Add.ImageIndex = 0;
     this.btnBranch_Add.ImageList = this.imageList1;
     this.btnBranch_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnBranch_Add.Location = new System.Drawing.Point(8, 8);
     this.btnBranch_Add.Name = "btnBranch_Add";
     this.btnBranch_Add.Size = new System.Drawing.Size(38, 20);
     this.btnBranch_Add.TabIndex = 136;
     this.btnBranch_Add.Click += new System.EventHandler(this.btnBranch_Add_Click);
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // btnBranch_Del
     //
     this.btnBranch_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnBranch_Del.Appearance.Options.UseFont = true;
     this.btnBranch_Del.Appearance.Options.UseTextOptions = true;
     this.btnBranch_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnBranch_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnBranch_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnBranch_Del.ImageIndex = 1;
     this.btnBranch_Del.ImageList = this.imageList1;
     this.btnBranch_Del.Location = new System.Drawing.Point(56, 8);
     this.btnBranch_Del.Name = "btnBranch_Del";
     this.btnBranch_Del.Size = new System.Drawing.Size(38, 20);
     this.btnBranch_Del.TabIndex = 135;
     this.btnBranch_Del.Click += new System.EventHandler(this.btnBranch_Del_Click);
     //
     // groupControl1
     //
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.gridControlMd_UserBranchRight);
     this.groupControl1.Location = new System.Drawing.Point(0, 32);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(944, 456);
     this.groupControl1.TabIndex = 0;
     //
     // gridControlMd_UserBranchRight
     //
     this.gridControlMd_UserBranchRight.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMd_UserBranchRight.EmbeddedNavigator
     //
     this.gridControlMd_UserBranchRight.EmbeddedNavigator.Name = "";
     this.gridControlMd_UserBranchRight.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_UserBranchRight.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_UserBranchRight.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_UserBranchRight.MainView = this.gridViewMd_BRight;
     this.gridControlMd_UserBranchRight.Name = "gridControlMd_UserBranchRight";
     this.gridControlMd_UserBranchRight.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                            this.lk_EmployeeID,
                                                                                                                            this.lk_BranchID});
     this.gridControlMd_UserBranchRight.Size = new System.Drawing.Size(944, 434);
     this.gridControlMd_UserBranchRight.TabIndex = 21;
     this.gridControlMd_UserBranchRight.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                  this.gridViewMd_BRight});
     //
     // gridViewMd_BRight
     //
     this.gridViewMd_BRight.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.gridColumnBRight1,
                                                                                              this.gridColumnBRight2});
     this.gridViewMd_BRight.GridControl = this.gridControlMd_UserBranchRight;
     this.gridViewMd_BRight.Name = "gridViewMd_BRight";
     this.gridViewMd_BRight.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_BRight.OptionsCustomization.AllowSort = false;
     this.gridViewMd_BRight.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_BRight.LostFocus += new System.EventHandler(this.gridViewMd_BRight_LostFocus);
     //
     // gridColumnBRight1
     //
     this.gridColumnBRight1.Caption = "Employee Name";
     this.gridColumnBRight1.ColumnEdit = this.lk_EmployeeID;
     this.gridColumnBRight1.FieldName = "nEmployeeID";
     this.gridColumnBRight1.Name = "gridColumnBRight1";
     this.gridColumnBRight1.Visible = true;
     this.gridColumnBRight1.VisibleIndex = 0;
     this.gridColumnBRight1.Width = 106;
     //
     // lk_EmployeeID
     //
     this.lk_EmployeeID.AutoHeight = false;
     this.lk_EmployeeID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_EmployeeID.Name = "lk_EmployeeID";
     //
     // gridColumnBRight2
     //
     this.gridColumnBRight2.Caption = "Branch Access";
     this.gridColumnBRight2.ColumnEdit = this.lk_BranchID;
     this.gridColumnBRight2.FieldName = "strBranchCode";
     this.gridColumnBRight2.Name = "gridColumnBRight2";
     this.gridColumnBRight2.Visible = true;
     this.gridColumnBRight2.VisibleIndex = 1;
     this.gridColumnBRight2.Width = 820;
     //
     // lk_BranchID
     //
     this.lk_BranchID.AutoHeight = false;
     this.lk_BranchID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                              new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_BranchID.Name = "lk_BranchID";
     //
     // TabPageRight
     //
     this.TabPageRight.Controls.Add(this.btnRightCode_Add);
     this.TabPageRight.Controls.Add(this.btnRightCode_Del);
     this.TabPageRight.Controls.Add(this.groupControl2);
     this.TabPageRight.Name = "TabPageRight";
     this.TabPageRight.Size = new System.Drawing.Size(950, 477);
     this.TabPageRight.Text = "Right Code";
     //
     // btnRightCode_Add
     //
     this.btnRightCode_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnRightCode_Add.Appearance.Options.UseFont = true;
     this.btnRightCode_Add.Appearance.Options.UseTextOptions = true;
     this.btnRightCode_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnRightCode_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnRightCode_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnRightCode_Add.ImageIndex = 0;
     this.btnRightCode_Add.ImageList = this.imageList1;
     this.btnRightCode_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnRightCode_Add.Location = new System.Drawing.Point(8, 0);
     this.btnRightCode_Add.Name = "btnRightCode_Add";
     this.btnRightCode_Add.Size = new System.Drawing.Size(38, 20);
     this.btnRightCode_Add.TabIndex = 138;
     this.btnRightCode_Add.Click += new System.EventHandler(this.btnRightCode_Add_Click);
     //
     // btnRightCode_Del
     //
     this.btnRightCode_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnRightCode_Del.Appearance.Options.UseFont = true;
     this.btnRightCode_Del.Appearance.Options.UseTextOptions = true;
     this.btnRightCode_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnRightCode_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnRightCode_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnRightCode_Del.ImageIndex = 1;
     this.btnRightCode_Del.ImageList = this.imageList1;
     this.btnRightCode_Del.Location = new System.Drawing.Point(48, 0);
     this.btnRightCode_Del.Name = "btnRightCode_Del";
     this.btnRightCode_Del.Size = new System.Drawing.Size(38, 20);
     this.btnRightCode_Del.TabIndex = 137;
     this.btnRightCode_Del.Click += new System.EventHandler(this.btnRightCode_Del_Click);
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.gridControlMd_RightCode);
     this.groupControl2.Location = new System.Drawing.Point(8, 16);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(944, 456);
     this.groupControl2.TabIndex = 8;
     //
     // gridControlMd_RightCode
     //
     this.gridControlMd_RightCode.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMd_RightCode.EmbeddedNavigator
     //
     this.gridControlMd_RightCode.EmbeddedNavigator.Name = "";
     this.gridControlMd_RightCode.Location = new System.Drawing.Point(4, 18);
     this.gridControlMd_RightCode.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_RightCode.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_RightCode.MainView = this.gridViewMd_RightCode;
     this.gridControlMd_RightCode.Name = "gridControlMd_RightCode";
     this.gridControlMd_RightCode.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                      this.cmbRightType});
     this.gridControlMd_RightCode.Size = new System.Drawing.Size(936, 434);
     this.gridControlMd_RightCode.TabIndex = 1;
     this.gridControlMd_RightCode.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                            this.gridViewMd_RightCode});
     //
     // gridViewMd_RightCode
     //
     this.gridViewMd_RightCode.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumnRightCode1,
                                                                                                 this.gridColumnRightCode2,
                                                                                                 this.gridColumnRightCode3});
     this.gridViewMd_RightCode.GridControl = this.gridControlMd_RightCode;
     this.gridViewMd_RightCode.Name = "gridViewMd_RightCode";
     this.gridViewMd_RightCode.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_RightCode.OptionsCustomization.AllowSort = false;
     this.gridViewMd_RightCode.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_RightCode.LostFocus += new System.EventHandler(this.gridViewMd_RightCode_LostFocus);
     //
     // gridColumnRightCode1
     //
     this.gridColumnRightCode1.Caption = "Right Code";
     this.gridColumnRightCode1.FieldName = "nRightsID";
     this.gridColumnRightCode1.Name = "gridColumnRightCode1";
     this.gridColumnRightCode1.Visible = true;
     this.gridColumnRightCode1.VisibleIndex = 0;
     this.gridColumnRightCode1.Width = 136;
     //
     // gridColumnRightCode2
     //
     this.gridColumnRightCode2.Caption = "Description";
     this.gridColumnRightCode2.FieldName = "strDescription";
     this.gridColumnRightCode2.MinWidth = 40;
     this.gridColumnRightCode2.Name = "gridColumnRightCode2";
     this.gridColumnRightCode2.Visible = true;
     this.gridColumnRightCode2.VisibleIndex = 1;
     this.gridColumnRightCode2.Width = 119;
     //
     // gridColumnRightCode3
     //
     this.gridColumnRightCode3.Caption = "Right Type";
     this.gridColumnRightCode3.ColumnEdit = this.cmbRightType;
     this.gridColumnRightCode3.FieldName = "nRightsTypeID";
     this.gridColumnRightCode3.Name = "gridColumnRightCode3";
     this.gridColumnRightCode3.Visible = true;
     this.gridColumnRightCode3.VisibleIndex = 2;
     this.gridColumnRightCode3.Width = 671;
     //
     // cmbRightType
     //
     this.cmbRightType.AutoHeight = false;
     this.cmbRightType.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbRightType.Items.AddRange(new object[] {
                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Login", 0, -1),
                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Transaction", 1, -1),
                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Report", 2, -1)});
     this.cmbRightType.Name = "cmbRightType";
     //
     // TabPageRightLevel
     //
     this.TabPageRightLevel.Controls.Add(this.btnRightLevel_Add);
     this.TabPageRightLevel.Controls.Add(this.btnRightLevel_Del);
     this.TabPageRightLevel.Controls.Add(this.groupControl3);
     this.TabPageRightLevel.Name = "TabPageRightLevel";
     this.TabPageRightLevel.Size = new System.Drawing.Size(950, 477);
     this.TabPageRightLevel.Text = "Right Level";
     //
     // btnRightLevel_Add
     //
     this.btnRightLevel_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnRightLevel_Add.Appearance.Options.UseFont = true;
     this.btnRightLevel_Add.Appearance.Options.UseTextOptions = true;
     this.btnRightLevel_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnRightLevel_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnRightLevel_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnRightLevel_Add.ImageIndex = 0;
     this.btnRightLevel_Add.ImageList = this.imageList1;
     this.btnRightLevel_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnRightLevel_Add.Location = new System.Drawing.Point(8, 0);
     this.btnRightLevel_Add.Name = "btnRightLevel_Add";
     this.btnRightLevel_Add.Size = new System.Drawing.Size(38, 20);
     this.btnRightLevel_Add.TabIndex = 138;
     this.btnRightLevel_Add.Click += new System.EventHandler(this.btnRightLevel_Add_Click);
     //
     // btnRightLevel_Del
     //
     this.btnRightLevel_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnRightLevel_Del.Appearance.Options.UseFont = true;
     this.btnRightLevel_Del.Appearance.Options.UseTextOptions = true;
     this.btnRightLevel_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnRightLevel_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnRightLevel_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnRightLevel_Del.ImageIndex = 1;
     this.btnRightLevel_Del.ImageList = this.imageList1;
     this.btnRightLevel_Del.Location = new System.Drawing.Point(48, 0);
     this.btnRightLevel_Del.Name = "btnRightLevel_Del";
     this.btnRightLevel_Del.Size = new System.Drawing.Size(38, 20);
     this.btnRightLevel_Del.TabIndex = 137;
     this.btnRightLevel_Del.Click += new System.EventHandler(this.btnRightLevel_Del_Click);
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.gridControlMd_RightLevel);
     this.groupControl3.Location = new System.Drawing.Point(8, 16);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(944, 448);
     this.groupControl3.TabIndex = 1;
     //
     // gridControlMd_RightLevel
     //
     this.gridControlMd_RightLevel.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMd_RightLevel.EmbeddedNavigator
     //
     this.gridControlMd_RightLevel.EmbeddedNavigator.Name = "";
     this.gridControlMd_RightLevel.Location = new System.Drawing.Point(4, 18);
     this.gridControlMd_RightLevel.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_RightLevel.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_RightLevel.MainView = this.gridViewMd_RightLevel;
     this.gridControlMd_RightLevel.Name = "gridControlMd_RightLevel";
     this.gridControlMd_RightLevel.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                       this.lk_RightLevelEmployeeID});
     this.gridControlMd_RightLevel.Size = new System.Drawing.Size(936, 426);
     this.gridControlMd_RightLevel.TabIndex = 1;
     this.gridControlMd_RightLevel.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                             this.gridViewMd_RightLevel});
     //
     // gridViewMd_RightLevel
     //
     this.gridViewMd_RightLevel.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                  this.gridColumnMdRL1,
                                                                                                  this.gridColumnMdRL2,
                                                                                                  this.gridColumnMdRL3,
                                                                                                  this.gridColumnMdRL4});
     this.gridViewMd_RightLevel.GridControl = this.gridControlMd_RightLevel;
     this.gridViewMd_RightLevel.Name = "gridViewMd_RightLevel";
     this.gridViewMd_RightLevel.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_RightLevel.OptionsCustomization.AllowSort = false;
     this.gridViewMd_RightLevel.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_RightLevel.LostFocus += new System.EventHandler(this.gridViewMd_RightLevel_LostFocus);
     //
     // gridColumnMdRL1
     //
     this.gridColumnMdRL1.Caption = "Right Level ID";
     this.gridColumnMdRL1.FieldName = "nRightsLevelID";
     this.gridColumnMdRL1.Name = "gridColumnMdRL1";
     this.gridColumnMdRL1.Visible = true;
     this.gridColumnMdRL1.VisibleIndex = 0;
     this.gridColumnMdRL1.Width = 121;
     //
     // gridColumnMdRL2
     //
     this.gridColumnMdRL2.Caption = "Description";
     this.gridColumnMdRL2.FieldName = "strDescription";
     this.gridColumnMdRL2.Name = "gridColumnMdRL2";
     this.gridColumnMdRL2.Visible = true;
     this.gridColumnMdRL2.VisibleIndex = 1;
     this.gridColumnMdRL2.Width = 546;
     //
     // gridColumnMdRL3
     //
     this.gridColumnMdRL3.Caption = "Modified On";
     this.gridColumnMdRL3.FieldName = "dtLastEditDate";
     this.gridColumnMdRL3.Name = "gridColumnMdRL3";
     this.gridColumnMdRL3.Visible = true;
     this.gridColumnMdRL3.VisibleIndex = 2;
     this.gridColumnMdRL3.Width = 101;
     //
     // gridColumnMdRL4
     //
     this.gridColumnMdRL4.Caption = "Modified By";
     this.gridColumnMdRL4.ColumnEdit = this.lk_RightLevelEmployeeID;
     this.gridColumnMdRL4.FieldName = "nEmployeeID";
     this.gridColumnMdRL4.Name = "gridColumnMdRL4";
     this.gridColumnMdRL4.Visible = true;
     this.gridColumnMdRL4.VisibleIndex = 3;
     this.gridColumnMdRL4.Width = 158;
     //
     // lk_RightLevelEmployeeID
     //
     this.lk_RightLevelEmployeeID.AutoHeight = false;
     this.lk_RightLevelEmployeeID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_RightLevelEmployeeID.Name = "lk_RightLevelEmployeeID";
     //
     // TabPageRightLevelEntries
     //
     this.TabPageRightLevelEntries.Controls.Add(this.btnRLEntries_Add);
     this.TabPageRightLevelEntries.Controls.Add(this.btnRLEntries_Del);
     this.TabPageRightLevelEntries.Controls.Add(this.groupControl4);
     this.TabPageRightLevelEntries.Name = "TabPageRightLevelEntries";
     this.TabPageRightLevelEntries.Size = new System.Drawing.Size(950, 477);
     this.TabPageRightLevelEntries.Text = "Right Level Entries";
     //
     // btnRLEntries_Add
     //
     this.btnRLEntries_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnRLEntries_Add.Appearance.Options.UseFont = true;
     this.btnRLEntries_Add.Appearance.Options.UseTextOptions = true;
     this.btnRLEntries_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnRLEntries_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnRLEntries_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnRLEntries_Add.ImageIndex = 0;
     this.btnRLEntries_Add.ImageList = this.imageList1;
     this.btnRLEntries_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnRLEntries_Add.Location = new System.Drawing.Point(8, 0);
     this.btnRLEntries_Add.Name = "btnRLEntries_Add";
     this.btnRLEntries_Add.Size = new System.Drawing.Size(38, 20);
     this.btnRLEntries_Add.TabIndex = 138;
     this.btnRLEntries_Add.Click += new System.EventHandler(this.btnRLEntries_Add_Click);
     //
     // btnRLEntries_Del
     //
     this.btnRLEntries_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnRLEntries_Del.Appearance.Options.UseFont = true;
     this.btnRLEntries_Del.Appearance.Options.UseTextOptions = true;
     this.btnRLEntries_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnRLEntries_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnRLEntries_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnRLEntries_Del.ImageIndex = 1;
     this.btnRLEntries_Del.ImageList = this.imageList1;
     this.btnRLEntries_Del.Location = new System.Drawing.Point(48, 0);
     this.btnRLEntries_Del.Name = "btnRLEntries_Del";
     this.btnRLEntries_Del.Size = new System.Drawing.Size(38, 20);
     this.btnRLEntries_Del.TabIndex = 137;
     this.btnRLEntries_Del.Click += new System.EventHandler(this.btnRLEntries_Del_Click);
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.gridControlMd_RightLevelEntries);
     this.groupControl4.Location = new System.Drawing.Point(8, 16);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(952, 456);
     this.groupControl4.TabIndex = 9;
     //
     // gridControlMd_RightLevelEntries
     //
     this.gridControlMd_RightLevelEntries.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMd_RightLevelEntries.EmbeddedNavigator
     //
     this.gridControlMd_RightLevelEntries.EmbeddedNavigator.Name = "";
     this.gridControlMd_RightLevelEntries.Location = new System.Drawing.Point(4, 18);
     this.gridControlMd_RightLevelEntries.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_RightLevelEntries.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_RightLevelEntries.MainView = this.gridViewRightLevelEntries;
     this.gridControlMd_RightLevelEntries.Name = "gridControlMd_RightLevelEntries";
     this.gridControlMd_RightLevelEntries.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                              this.lk_RightsLevel,
                                                                                                                              this.lk_Rights});
     this.gridControlMd_RightLevelEntries.Size = new System.Drawing.Size(944, 442);
     this.gridControlMd_RightLevelEntries.TabIndex = 1;
     this.gridControlMd_RightLevelEntries.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                    this.gridViewRightLevelEntries});
     //
     // gridViewRightLevelEntries
     //
     this.gridViewRightLevelEntries.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                      this.gridColumnRLE1,
                                                                                                      this.gridColumnRLE2});
     this.gridViewRightLevelEntries.GridControl = this.gridControlMd_RightLevelEntries;
     this.gridViewRightLevelEntries.Name = "gridViewRightLevelEntries";
     this.gridViewRightLevelEntries.OptionsCustomization.AllowFilter = false;
     this.gridViewRightLevelEntries.OptionsCustomization.AllowSort = false;
     this.gridViewRightLevelEntries.OptionsView.ShowGroupPanel = false;
     this.gridViewRightLevelEntries.LostFocus += new System.EventHandler(this.gridViewRightLevelEntries_LostFocus);
     //
     // gridColumnRLE1
     //
     this.gridColumnRLE1.Caption = "Right Level ID";
     this.gridColumnRLE1.ColumnEdit = this.lk_RightsLevel;
     this.gridColumnRLE1.FieldName = "nRightsLevelID";
     this.gridColumnRLE1.Name = "gridColumnRLE1";
     this.gridColumnRLE1.Visible = true;
     this.gridColumnRLE1.VisibleIndex = 0;
     this.gridColumnRLE1.Width = 126;
     //
     // lk_RightsLevel
     //
     this.lk_RightsLevel.AutoHeight = false;
     this.lk_RightsLevel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_RightsLevel.Name = "lk_RightsLevel";
     //
     // gridColumnRLE2
     //
     this.gridColumnRLE2.Caption = "Right ID";
     this.gridColumnRLE2.ColumnEdit = this.lk_Rights;
     this.gridColumnRLE2.FieldName = "nRightsID";
     this.gridColumnRLE2.Name = "gridColumnRLE2";
     this.gridColumnRLE2.Visible = true;
     this.gridColumnRLE2.VisibleIndex = 1;
     this.gridColumnRLE2.Width = 800;
     //
     // lk_Rights
     //
     this.lk_Rights.AutoHeight = false;
     this.lk_Rights.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Rights.Name = "lk_Rights";
     //
     // frmUserRights
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(982, 533);
     this.Controls.Add(this.grpMDUserRight);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmUserRights";
     this.Text = "frmUserRights";
     this.Load += new System.EventHandler(this.frmUserRights_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDUserRight)).EndInit();
     this.grpMDUserRight.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.TabControlMd_UserRightLevel)).EndInit();
     this.TabControlMd_UserRightLevel.ResumeLayout(false);
     this.TabPageBranchRight.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ddlMember.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_UserBranchRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_BRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_EmployeeID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchID)).EndInit();
     this.TabPageRight.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_RightCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_RightCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbRightType)).EndInit();
     this.TabPageRightLevel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_RightLevel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_RightLevel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RightLevelEmployeeID)).EndInit();
     this.TabPageRightLevelEntries.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_RightLevelEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRightLevelEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RightsLevel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Rights)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.LSMS = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colmostahk = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmremark = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfM = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.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.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMS)).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();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlData.DataSource = this.LSMS;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.EmbeddedNavigator.TextStringFormat = "صف {0} من {1}";
     this.gridControlData.Location = new System.Drawing.Point(0, 53);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemDateEditDMY,
     this.repositoryItemMemoExEdit1,
     this.repositoryItemLookUpEdituserin});
     this.gridControlData.Size = new System.Drawing.Size(734, 404);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // LSMS
     //
     this.LSMS.ElementType = typeof(RetirementCenter.DataSources.Linq.vTblMemberMadunea);
     this.LSMS.KeyExpression = "MaduniaAuto";
     //
     // 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.colmostahk,
     this.colmremark,
     this.coldatein,
     this.colDofatSarfM,
     this.colRealName,
     this.colMMashatName,
     this.colsarfnumber,
     this.colSyndicate,
     this.colSubCommitte,
     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;
     //
     // colmostahk
     //
     this.colmostahk.AppearanceCell.Options.UseTextOptions = true;
     this.colmostahk.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostahk.AppearanceHeader.Options.UseTextOptions = true;
     this.colmostahk.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostahk.Caption = "مستحق";
     this.colmostahk.FieldName = "mostahk";
     this.colmostahk.Name = "colmostahk";
     this.colmostahk.Visible = true;
     this.colmostahk.VisibleIndex = 3;
     //
     // colmremark
     //
     this.colmremark.AppearanceCell.Options.UseTextOptions = true;
     this.colmremark.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmremark.AppearanceHeader.Options.UseTextOptions = true;
     this.colmremark.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmremark.Caption = "ملاحظات";
     this.colmremark.FieldName = "mremark";
     this.colmremark.Name = "colmremark";
     this.colmremark.Visible = true;
     this.colmremark.VisibleIndex = 7;
     //
     // 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 = 8;
     //
     // colDofatSarfM
     //
     this.colDofatSarfM.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfM.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfM.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfM.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfM.Caption = "الدفعة";
     this.colDofatSarfM.FieldName = "DofatSarfM";
     this.colDofatSarfM.Name = "colDofatSarfM";
     this.colDofatSarfM.Visible = true;
     this.colDofatSarfM.VisibleIndex = 2;
     //
     // 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 = 9;
     //
     // colMMashatName
     //
     this.colMMashatName.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.Caption = "الاسم";
     this.colMMashatName.FieldName = "MMashatName";
     this.colMMashatName.Name = "colMMashatName";
     this.colMMashatName.Visible = true;
     this.colMMashatName.VisibleIndex = 1;
     //
     // colsarfnumber
     //
     this.colsarfnumber.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.Caption = "رقم الصرف";
     this.colsarfnumber.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 4;
     //
     // 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 = 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 = 6;
     //
     // 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.btnPrintExport);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(734, 47);
     this.panelControl1.TabIndex = 4;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrintExport.Location = new System.Drawing.Point(588, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // 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;
     //
     // Qry86Frm
     //
     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 = "Qry86Frm";
     this.Text = "مديونية الاعضاء";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Qry06Frm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.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.ResumeLayout(false);
 }
Ejemplo n.º 47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormReception));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     this.gcShowColumns = new DevExpress.XtraEditors.GroupControl();
     this.checkEdit10 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit9 = new DevExpress.XtraEditors.CheckEdit();
     this.panel7 = new System.Windows.Forms.Panel();
     this.paDelete = new System.Windows.Forms.Panel();
     this.tbResidue = new DevExpress.XtraEditors.SpinEdit();
     this.tbAmortization = new DevExpress.XtraEditors.SpinEdit();
     this.panel5 = new System.Windows.Forms.Panel();
     this.tbTotalIgv = new DevExpress.XtraEditors.SpinEdit();
     this.tbTotalAmount = new DevExpress.XtraEditors.SpinEdit();
     this.tbSubTotalAmount = new DevExpress.XtraEditors.SpinEdit();
     this.label7 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.panel6 = new System.Windows.Forms.Panel();
     this.gcReception = new DevExpress.XtraGrid.GridControl();
     this.gvReception = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcRec_idrecep_sample_detail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_OrderSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Description = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDescription = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcRec_Idmr_detail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Type_Sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Procedence = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProcedence = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcRec_Code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Cod_interno = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_NameSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Flag_envelope_sealed = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repEnvelope_sealed = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gcRec_CantKg = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Reject = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Counter_Sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Days = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Cost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repSelect = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gcDyn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_interno = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Date = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Hour = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_matrix = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_campo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_NameSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Ubigeo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_UTM = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Num_bottle_plastic = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Num_bottle_glass = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Volumen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repResult = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repSendReport = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repLink = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repDesLink = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.repSample = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.tbFax = new DevExpress.XtraEditors.TextEdit();
     this.tbClientPhone = new DevExpress.XtraEditors.TextEdit();
     this.tbClientRuc = new DevExpress.XtraEditors.TextEdit();
     this.tbClientDomicile = new DevExpress.XtraEditors.TextEdit();
     this.label9 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.cbCompany = new LimsProject.MyLookUpEdit();
     this.xtraTabPage6 = new DevExpress.XtraTab.XtraTabPage();
     this.gcContact = new DevExpress.XtraGrid.GridControl();
     this.gvContact = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcCon_Idrecep_company_person = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idperson = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idcompany = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idrecep_sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Allname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Mail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Person_type = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repPerson_type = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcCon_Phone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repPhone = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gcCon_Cellphone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repCellPhone = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repNum = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.ckDispatchFax = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchPerson = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchTransport = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchCurier = new DevExpress.XtraEditors.CheckEdit();
     this.expandablePanel1 = new DevComponents.DotNetBar.ExpandablePanel();
     this.tabOptionRight = new DevExpress.XtraTab.XtraTabControl();
     this.tpRightMethods = new DevExpress.XtraTab.XtraTabPage();
     this.lookUpEdit3 = new DevExpress.XtraEditors.LookUpEdit();
     this.gcMethods = new DevExpress.XtraGrid.GridControl();
     this.gvMethods = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcMet_Cod_template_method = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Cod_element = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Abbreviation = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Name_type_analisys = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Title = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_TypeAnalisys = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Button = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAddColumn = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcMet_Cost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Unit1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Unit_Name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Idelement = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Idtemplate_method = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Analisys_time = new DevExpress.XtraGrid.Columns.GridColumn();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.tpRightReports = new DevExpress.XtraTab.XtraTabPage();
     this.gcReport = new DevExpress.XtraGrid.GridControl();
     this.gvReport = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcRep_idrecep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_order_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_cod_recep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_report_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repStatusReport = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcRep_type_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_Option = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repReportOption = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcRep_Str_cod_recep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_Date_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDateReport = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repTimeReport = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.repTypeReport = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btMakePartialReport = new DevExpress.XtraEditors.SimpleButton();
     this.btMakeFinalReport = new DevExpress.XtraEditors.SimpleButton();
     this.tpRightAttach = new DevExpress.XtraTab.XtraTabPage();
     this.gcAttachFile = new DevExpress.XtraGrid.GridControl();
     this.gvAttachFile = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcAtt_Iddocument_recep = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Idrecep_sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_FileName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAttach_file = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcAtt_Attach_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAttach_status = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcAtt_Buttons = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repButtons = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcAtt_SourcePath = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Order_file = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Idrecep_sample_attach = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btNewFile = new DevExpress.XtraEditors.SimpleButton();
     this.tpRightProgram = new DevExpress.XtraTab.XtraTabPage();
     this.gcProgram = new DevExpress.XtraGrid.GridControl();
     this.gvProgram = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcProg_Idrecep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Order_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Cod_recep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Program_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProgramStatus = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProgramButton = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcProg_Date_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDateProgram = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gcProg_Time_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repTimeProgram = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.gcProg_Str_cod_recep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.btProgramSelection = new DevExpress.XtraEditors.SimpleButton();
     this.btPrintTicket = new System.Windows.Forms.Button();
     this.btDesignPrint = new System.Windows.Forms.Button();
     this.deReception = new DevExpress.XtraEditors.DateEdit();
     this.label12 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.deResult = new DevExpress.XtraEditors.DateEdit();
     this.xtraTabControl2 = new DevExpress.XtraTab.XtraTabControl();
     this.tabDateRegRecep = new DevExpress.XtraTab.XtraTabPage();
     this.tbNumDays = new DevExpress.XtraEditors.SpinEdit();
     this.deHourResult = new DevExpress.XtraEditors.TimeEdit();
     this.deHourReception = new DevExpress.XtraEditors.TimeEdit();
     this.label27 = new System.Windows.Forms.Label();
     this.lookUpEdit1 = new DevExpress.XtraEditors.LookUpEdit();
     this.textEdit3 = new DevExpress.XtraEditors.TextEdit();
     this.btReportClient = new System.Windows.Forms.Button();
     this.txIdrecep_sample = new DevExpress.XtraEditors.TextEdit();
     this.label25 = new System.Windows.Forms.Label();
     this.cbTypeSample = new LimsProject.MyLookUpEdit();
     this.label26 = new System.Windows.Forms.Label();
     this.ofdRecepFileAttach = new System.Windows.Forms.OpenFileDialog();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.label14 = new System.Windows.Forms.Label();
     this.tbAdministrativeExpense = new DevExpress.XtraEditors.SpinEdit();
     this.tbCod_recep_sample = new DevExpress.XtraEditors.TextEdit();
     this.ucSignReception = new LimsProject.UcSign();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.panel9 = new System.Windows.Forms.Panel();
     this.panel11 = new System.Windows.Forms.Panel();
     this.paTypeSample = new System.Windows.Forms.Panel();
     this.paCodRegisterRecep = new System.Windows.Forms.Panel();
     this.ucTitleRegisterRecep = new LimsProject.UcTitle();
     this.ucToolStrip1 = new LimsProject.UcToolStrip();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.ucGenerarA = new LimsProject.UcGenerar();
     this.ucGenerarDesde = new LimsProject.UcGenerar();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl3 = new DevExpress.XtraTab.XtraTabControl();
     this.tpMuestras = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
     this.tpAnexos = new DevExpress.XtraTab.XtraTabPage();
     this.checkEdit8 = new DevExpress.XtraEditors.CheckEdit();
     this.memoEdit1 = new DevExpress.XtraEditors.MemoEdit();
     this.checkEdit7 = new DevExpress.XtraEditors.CheckEdit();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.timeEdit1 = new DevExpress.XtraEditors.TimeEdit();
     this.label17 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.checkEdit6 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit5 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.textEdit5 = new DevExpress.XtraEditors.TextEdit();
     this.label21 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.tpReject = new DevExpress.XtraTab.XtraTabPage();
     this.memoEdit2 = new DevExpress.XtraEditors.MemoEdit();
     this.label20 = new System.Windows.Forms.Label();
     this.gcRejection = new DevExpress.XtraGrid.GridControl();
     this.bandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gcRej_Code = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_NameSample = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Date = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Hora = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Obs = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gcRej_C1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.tpDecree = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl4 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.gridDecretos = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcDec_Idmetodo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repMetodo = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Parametro = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Unidad_medida = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repUnidadMedida = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Result = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Criterio = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repCriterio = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Valor1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Valor2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Conclusion = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
     this.memoEdit3 = new DevExpress.XtraEditors.MemoEdit();
     this.label23 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.textEdit4 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit6 = new DevExpress.XtraEditors.TextEdit();
     this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
     this.memoEdit4 = new DevExpress.XtraEditors.MemoEdit();
     this.label22 = new System.Windows.Forms.Label();
     this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
     this.xtraTabPage7 = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.lookUpEdit2 = new DevExpress.XtraEditors.LookUpEdit();
     this.label31 = new System.Windows.Forms.Label();
     this.paTitleSearch.SuspendLayout();
     this.paTopBasicButtons.SuspendLayout();
     this.paTopSearch.SuspendLayout();
     this.paBottomSearch.SuspendLayout();
     this.panel1.SuspendLayout();
     this.paSearchGen.SuspendLayout();
     this.panel2.SuspendLayout();
     this.paInferior.SuspendLayout();
     this.paTitulo.SuspendLayout();
     this.paCentral.SuspendLayout();
     this.paSuperior.SuspendLayout();
     this.thePanelTab1.SuspendLayout();
     this.tpDatos.SuspendLayout();
     this.paSupBotones.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcShowColumns)).BeginInit();
     this.gcShowColumns.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).BeginInit();
     this.panel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbResidue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmortization.Properties)).BeginInit();
     this.panel5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalIgv.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSubTotalAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcReception)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReception)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDescription)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repEnvelope_sealed)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSelect)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repResult)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSendReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repLink)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDesLink)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSample)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbFax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientPhone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientRuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientDomicile.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).BeginInit();
     this.xtraTabPage6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPerson_type)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPhone)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCellPhone)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNum)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchFax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchPerson.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchTransport.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchCurier.Properties)).BeginInit();
     this.expandablePanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabOptionRight)).BeginInit();
     this.tabOptionRight.SuspendLayout();
     this.tpRightMethods.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcMethods)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMethods)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAddColumn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     this.tpRightReports.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repStatusReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repReportOption)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTypeReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.tpRightAttach.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcAttachFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAttachFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_file)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_status)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repButtons)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.tpRightProgram.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramButton)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deReception.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deResult.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).BeginInit();
     this.xtraTabControl2.SuspendLayout();
     this.tabDateRegRecep.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbNumDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourResult.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourReception.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txIdrecep_sample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAdministrativeExpense.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCod_recep_sample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.panel9.SuspendLayout();
     this.panel11.SuspendLayout();
     this.paTypeSample.SuspendLayout();
     this.paCodRegisterRecep.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl3)).BeginInit();
     this.xtraTabControl3.SuspendLayout();
     this.tpMuestras.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
     this.panelControl7.SuspendLayout();
     this.tpAnexos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).BeginInit();
     this.tpReject.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcRejection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).BeginInit();
     this.tpDecree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl4)).BeginInit();
     this.xtraTabControl4.SuspendLayout();
     this.xtraTabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDecretos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repMetodo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repUnidadMedida)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCriterio)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
     this.panelControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
     this.panelControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.Images.SetKeyName(0, "save.png");
     this.imageList1.Images.SetKeyName(1, "nuevo.png");
     this.imageList1.Images.SetKeyName(2, "eliminar.png");
     this.imageList1.Images.SetKeyName(3, "buscar.png");
     this.imageList1.Images.SetKeyName(4, "salir.png");
     this.imageList1.Images.SetKeyName(5, "cancelar.png");
     this.imageList1.Images.SetKeyName(6, "ok.png");
     this.imageList1.Images.SetKeyName(7, "deshacer.png");
     this.imageList1.Images.SetKeyName(8, "editar.png");
     this.imageList1.Images.SetKeyName(9, "uncheck16x16.png");
     this.imageList1.Images.SetKeyName(10, "check16x16.png");
     this.imageList1.Images.SetKeyName(11, "stock-copy.png");
     this.imageList1.Images.SetKeyName(12, "copy_blusky.png");
     this.imageList1.Images.SetKeyName(13, "copy_price.png");
     //
     // paTitleSearch
     //
     this.paTitleSearch.Size = new System.Drawing.Size(526, 37);
     //
     // label1
     //
     this.label1.Size = new System.Drawing.Size(443, 37);
     this.label1.Text = "Recepción de Muestras - Búsqueda";
     //
     // txtBuscar
     //
     this.txtBuscar.Location = new System.Drawing.Point(774, 56);
     this.txtBuscar.Size = new System.Drawing.Size(40, 21);
     this.txtBuscar.Visible = false;
     //
     // cbCampo
     //
     this.cbCampo.Location = new System.Drawing.Point(872, 56);
     this.cbCampo.Size = new System.Drawing.Size(35, 21);
     this.cbCampo.Visible = false;
     //
     // paTopBasicButtons
     //
     this.paTopBasicButtons.Controls.Add(this.ucGenerarDesde);
     this.paTopBasicButtons.Controls.Add(this.ucGenerarA);
     this.paTopBasicButtons.Controls.Add(this.ucSignReception);
     this.paTopBasicButtons.Size = new System.Drawing.Size(714, 46);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btEliminar2, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btNuevo2, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btGuardar, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucSignReception, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucGenerarA, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucGenerarDesde, 0);
     //
     // btSalir2
     //
     this.btSalir2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btSalir2.FlatAppearance.BorderSize = 0;
     this.btSalir2.Location = new System.Drawing.Point(10, 5);
     this.btSalir2.TabStop = false;
     //
     // btGuardar
     //
     this.btGuardar.Enabled = false;
     this.btGuardar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btGuardar.FlatAppearance.BorderSize = 0;
     this.btGuardar.Location = new System.Drawing.Point(138, 4);
     this.btGuardar.Size = new System.Drawing.Size(62, 25);
     this.btGuardar.Text = "&Firmar";
     this.btGuardar.Visible = false;
     //
     // btNuevo2
     //
     this.btNuevo2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btNuevo2.FlatAppearance.BorderSize = 0;
     this.btNuevo2.Location = new System.Drawing.Point(151, 10);
     this.btNuevo2.Visible = false;
     //
     // btEliminar2
     //
     this.btEliminar2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEliminar2.FlatAppearance.BorderSize = 0;
     this.btEliminar2.Location = new System.Drawing.Point(138, 21);
     this.btEliminar2.Visible = false;
     //
     // paTopSearch
     //
     this.paTopSearch.Size = new System.Drawing.Size(526, 53);
     //
     // paBottomSearch
     //
     this.paBottomSearch.Location = new System.Drawing.Point(3, 201);
     this.paBottomSearch.Size = new System.Drawing.Size(526, 43);
     this.paBottomSearch.Visible = false;
     //
     // btBuscar
     //
     this.btBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btBuscar.FlatAppearance.BorderSize = 0;
     this.btBuscar.Location = new System.Drawing.Point(12, 2);
     //
     // btEditar
     //
     this.btEditar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEditar.FlatAppearance.BorderSize = 0;
     //
     // btCancel
     //
     this.btCancel.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btCancel.FlatAppearance.BorderSize = 0;
     //
     // btOk
     //
     this.btOk.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btOk.FlatAppearance.BorderSize = 0;
     //
     // panel1
     //
     this.panel1.Location = new System.Drawing.Point(927, 0);
     this.panel1.Size = new System.Drawing.Size(72, 46);
     //
     // btFiltroBuscar
     //
     this.btFiltroBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btFiltroBuscar.FlatAppearance.BorderSize = 0;
     this.btFiltroBuscar.Location = new System.Drawing.Point(495, 17);
     //
     // paSearchGen
     //
     this.paSearchGen.Location = new System.Drawing.Point(5, 2);
     this.paSearchGen.Size = new System.Drawing.Size(930, 49);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(823, 58);
     this.label3.Visible = false;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(656, 52);
     this.label2.Visible = false;
     //
     // paMiddleFind
     //
     this.paMiddleFind.Location = new System.Drawing.Point(3, 93);
     this.paMiddleFind.Size = new System.Drawing.Size(526, 108);
     //
     // panel2
     //
     this.panel2.Dock = System.Windows.Forms.DockStyle.None;
     this.panel2.Size = new System.Drawing.Size(74, 21);
     //
     // paInferior
     //
     this.paInferior.Controls.Add(this.btReportClient);
     this.paInferior.Controls.Add(this.btDesignPrint);
     this.paInferior.Controls.Add(this.btPrintTicket);
     this.paInferior.Location = new System.Drawing.Point(3, 559);
     this.paInferior.Size = new System.Drawing.Size(999, 46);
     this.paInferior.Controls.SetChildIndex(this.panel1, 0);
     this.paInferior.Controls.SetChildIndex(this.paTopBasicButtons, 0);
     this.paInferior.Controls.SetChildIndex(this.btPrintTicket, 0);
     this.paInferior.Controls.SetChildIndex(this.btDesignPrint, 0);
     this.paInferior.Controls.SetChildIndex(this.btReportClient, 0);
     //
     // paTitulo
     //
     this.paTitulo.Controls.Add(this.ucTitleRegisterRecep);
     this.paTitulo.Size = new System.Drawing.Size(999, 27);
     this.paTitulo.Visible = false;
     this.paTitulo.Controls.SetChildIndex(this.panel2, 0);
     this.paTitulo.Controls.SetChildIndex(this.laTitulo, 0);
     this.paTitulo.Controls.SetChildIndex(this.ucTitleRegisterRecep, 0);
     //
     // paCentral
     //
     this.paCentral.Controls.Add(this.panelControl2);
     this.paCentral.Location = new System.Drawing.Point(3, 176);
     this.paCentral.Size = new System.Drawing.Size(999, 383);
     //
     // paSuperior
     //
     this.paSuperior.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.paSuperior.Controls.Add(this.panelControl1);
     this.paSuperior.Location = new System.Drawing.Point(3, 30);
     this.paSuperior.Size = new System.Drawing.Size(999, 146);
     //
     // laTitulo
     //
     this.laTitulo.Dock = System.Windows.Forms.DockStyle.None;
     this.laTitulo.Size = new System.Drawing.Size(602, 27);
     this.laTitulo.Text = "Registro de Recepción";
     //
     // thePanelTab1
     //
     this.thePanelTab1.Location = new System.Drawing.Point(0, 25);
     this.thePanelTab1.Size = new System.Drawing.Size(1013, 637);
     //
     // tpDatos
     //
     this.tpDatos.Size = new System.Drawing.Size(1005, 608);
     //
     // paSupBotones
     //
     this.paSupBotones.Controls.Add(this.ucToolStrip1);
     this.paSupBotones.Padding = new System.Windows.Forms.Padding(0);
     this.paSupBotones.Size = new System.Drawing.Size(1013, 25);
     this.paSupBotones.Visible = true;
     //
     // gcShowColumns
     //
     this.gcShowColumns.Controls.Add(this.checkEdit10);
     this.gcShowColumns.Controls.Add(this.checkEdit9);
     this.gcShowColumns.Location = new System.Drawing.Point(230, 8);
     this.gcShowColumns.Name = "gcShowColumns";
     this.gcShowColumns.Size = new System.Drawing.Size(176, 46);
     this.gcShowColumns.TabIndex = 24;
     this.gcShowColumns.Text = "Mostrar columnas";
     //
     // checkEdit10
     //
     this.checkEdit10.Location = new System.Drawing.Point(96, 21);
     this.checkEdit10.Name = "checkEdit10";
     this.checkEdit10.Properties.Caption = "Métodos";
     this.checkEdit10.Size = new System.Drawing.Size(75, 19);
     this.checkEdit10.TabIndex = 23;
     //
     // checkEdit9
     //
     this.checkEdit9.Location = new System.Drawing.Point(15, 21);
     this.checkEdit9.Name = "checkEdit9";
     this.checkEdit9.Properties.Caption = "Datos";
     this.checkEdit9.Size = new System.Drawing.Size(75, 19);
     this.checkEdit9.TabIndex = 23;
     //
     // panel7
     //
     this.panel7.Controls.Add(this.paDelete);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel7.Location = new System.Drawing.Point(492, 2);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(53, 66);
     this.panel7.TabIndex = 22;
     //
     // paDelete
     //
     this.paDelete.AllowDrop = true;
     this.paDelete.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.paDelete.BackgroundImage = global::LimsProject.Properties.Resources.delete_column;
     this.paDelete.Location = new System.Drawing.Point(19, 2);
     this.paDelete.Name = "paDelete";
     this.paDelete.Size = new System.Drawing.Size(31, 32);
     this.paDelete.TabIndex = 21;
     this.paDelete.DragDrop += new System.Windows.Forms.DragEventHandler(this.paDelete_DragDrop);
     this.paDelete.DragEnter += new System.Windows.Forms.DragEventHandler(this.paDelete_DragEnter);
     //
     // tbResidue
     //
     this.tbResidue.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbResidue.Location = new System.Drawing.Point(82, 25);
     this.tbResidue.Name = "tbResidue";
     this.tbResidue.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbResidue.Properties.Appearance.Options.UseBackColor = true;
     this.tbResidue.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbResidue.Properties.Mask.EditMask = "n2";
     this.tbResidue.Size = new System.Drawing.Size(87, 20);
     this.tbResidue.TabIndex = 17;
     //
     // tbAmortization
     //
     this.tbAmortization.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbAmortization.Location = new System.Drawing.Point(82, 5);
     this.tbAmortization.Name = "tbAmortization";
     this.tbAmortization.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbAmortization.Properties.Appearance.Options.UseBackColor = true;
     this.tbAmortization.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbAmortization.Properties.Mask.EditMask = "n2";
     this.tbAmortization.Size = new System.Drawing.Size(87, 20);
     this.tbAmortization.TabIndex = 17;
     this.tbAmortization.EditValueChanged += new System.EventHandler(this.tbAmortization_EditValueChanged);
     //
     // panel5
     //
     this.panel5.Controls.Add(this.tbTotalIgv);
     this.panel5.Controls.Add(this.tbTotalAmount);
     this.panel5.Controls.Add(this.tbSubTotalAmount);
     this.panel5.Controls.Add(this.label7);
     this.panel5.Controls.Add(this.label5);
     this.panel5.Controls.Add(this.label4);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel5.Location = new System.Drawing.Point(545, 2);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(152, 66);
     this.panel5.TabIndex = 22;
     //
     // tbTotalIgv
     //
     this.tbTotalIgv.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbTotalIgv.Location = new System.Drawing.Point(58, 23);
     this.tbTotalIgv.Name = "tbTotalIgv";
     this.tbTotalIgv.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbTotalIgv.Properties.Appearance.Options.UseBackColor = true;
     this.tbTotalIgv.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbTotalIgv.Properties.Mask.EditMask = "n2";
     this.tbTotalIgv.Properties.ReadOnly = true;
     this.tbTotalIgv.Size = new System.Drawing.Size(87, 20);
     this.tbTotalIgv.TabIndex = 17;
     this.tbTotalIgv.TabStop = false;
     //
     // tbTotalAmount
     //
     this.tbTotalAmount.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbTotalAmount.Location = new System.Drawing.Point(58, 43);
     this.tbTotalAmount.Name = "tbTotalAmount";
     this.tbTotalAmount.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbTotalAmount.Properties.Appearance.Options.UseBackColor = true;
     this.tbTotalAmount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbTotalAmount.Properties.Mask.EditMask = "n2";
     this.tbTotalAmount.Properties.ReadOnly = true;
     this.tbTotalAmount.Size = new System.Drawing.Size(87, 20);
     this.tbTotalAmount.TabIndex = 17;
     this.tbTotalAmount.TabStop = false;
     //
     // tbSubTotalAmount
     //
     this.tbSubTotalAmount.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbSubTotalAmount.Location = new System.Drawing.Point(58, 3);
     this.tbSubTotalAmount.Name = "tbSubTotalAmount";
     this.tbSubTotalAmount.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbSubTotalAmount.Properties.Appearance.Options.UseBackColor = true;
     this.tbSubTotalAmount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbSubTotalAmount.Properties.Mask.EditMask = "n2";
     this.tbSubTotalAmount.Properties.ReadOnly = true;
     this.tbSubTotalAmount.Size = new System.Drawing.Size(87, 20);
     this.tbSubTotalAmount.TabIndex = 17;
     this.tbSubTotalAmount.TabStop = false;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(6, 46);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(34, 13);
     this.label7.TabIndex = 16;
     this.label7.Text = "Total:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(6, 26);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(25, 13);
     this.label5.TabIndex = 16;
     this.label5.Text = "Igv:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(6, 6);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(52, 13);
     this.label4.TabIndex = 16;
     this.label4.Text = "Sub total:";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(10, 8);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(70, 13);
     this.label13.TabIndex = 16;
     this.label13.Text = "Amortización:";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(12, 28);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(37, 13);
     this.label10.TabIndex = 16;
     this.label10.Text = "Saldo:";
     //
     // panel6
     //
     this.panel6.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel6.Location = new System.Drawing.Point(542, 0);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(191, 77);
     this.panel6.TabIndex = 3;
     //
     // gcReception
     //
     this.gcReception.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcReception.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gcReception.EmbeddedNavigator.Enabled = false;
     this.gcReception.EmbeddedNavigator.Name = "";
     this.gcReception.Location = new System.Drawing.Point(0, 0);
     this.gcReception.MainView = this.gvReception;
     this.gcReception.Name = "gcReception";
     this.gcReception.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repDescription,
     this.repSelect,
     this.repResult,
     this.repSendReport,
     this.repLink,
     this.repDesLink,
     this.repProcedence,
     this.repSample,
     this.repEnvelope_sealed});
     this.gcReception.Size = new System.Drawing.Size(699, 288);
     this.gcReception.TabIndex = 1;
     this.gcReception.UseEmbeddedNavigator = true;
     this.gcReception.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvReception});
     this.gcReception.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gcReception_MouseDown);
     this.gcReception.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gcReception_MouseMove);
     //
     // gvReception
     //
     this.gvReception.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvReception.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.Empty.Options.UseBackColor = true;
     this.gvReception.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvReception.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvReception.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvReception.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvReception.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvReception.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvReception.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvReception.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvReception.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvReception.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvReception.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupRow.Options.UseFont = true;
     this.gvReception.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvReception.Appearance.HeaderPanel.BackColor = System.Drawing.Color.LightSteelBlue;
     this.gvReception.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.LightSteelBlue;
     this.gvReception.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvReception.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvReception.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvReception.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReception.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvReception.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.OddRow.Options.UseBackColor = true;
     this.gvReception.Appearance.OddRow.Options.UseForeColor = true;
     this.gvReception.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.Preview.Options.UseBackColor = true;
     this.gvReception.Appearance.Preview.Options.UseForeColor = true;
     this.gvReception.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.Row.Options.UseBackColor = true;
     this.gvReception.Appearance.Row.Options.UseForeColor = true;
     this.gvReception.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvReception.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvReception.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvReception.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvReception.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReception.Appearance.VertLine.Options.UseBackColor = true;
     this.gvReception.ColumnPanelRowHeight = 125;
     this.gvReception.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcRec_idrecep_sample_detail,
     this.gcRec_OrderSample,
     this.gcRec_Description,
     this.gcRec_Idmr_detail,
     this.gcRec_Type_Sample,
     this.gcRec_Procedence,
     this.gcRec_Code,
     this.gcRec_Cod_interno,
     this.gcRec_NameSample,
     this.gcRec_Flag_envelope_sealed,
     this.gcRec_CantKg,
     this.gcRec_Reject,
     this.gcRec_Counter_Sample,
     this.gcRec_Days,
     this.gcRec_Cost,
     this.gcDyn1,
     this.gcDyn2,
     this.gcDyn3,
     this.gcDyn4,
     this.gcDyn5,
     this.gcDyn6,
     this.gcDyn7,
     this.gcDyn8,
     this.gcDyn9,
     this.gcDyn10,
     this.gcDyn11,
     this.gcDyn12,
     this.gcDyn13,
     this.gcDyn14,
     this.gcDyn15,
     this.gcDyn16,
     this.gcDyn17,
     this.gcDyn18,
     this.gcDyn19,
     this.gcDyn20,
     this.gcAgua_Code,
     this.gcAgua_Cod_interno,
     this.gcAgua_Date,
     this.gcAgua_Hour,
     this.gcAgua_Cod_matrix,
     this.gcAgua_Cod_campo,
     this.gcAgua_NameSample,
     this.gcAgua_Ubigeo,
     this.gcAgua_UTM,
     this.gcAgua_Num_bottle_plastic,
     this.gcAgua_Num_bottle_glass,
     this.gcAgua_Volumen});
     this.gvReception.GridControl = this.gcReception;
     this.gvReception.Images = this.imageList1;
     this.gvReception.Name = "gvReception";
     this.gvReception.OptionsCustomization.AllowColumnMoving = false;
     this.gvReception.OptionsCustomization.AllowSort = false;
     this.gvReception.OptionsFilter.AllowColumnMRUFilterList = false;
     this.gvReception.OptionsFilter.AllowMRUFilterList = false;
     this.gvReception.OptionsSelection.MultiSelect = true;
     this.gvReception.OptionsView.ColumnAutoWidth = false;
     this.gvReception.OptionsView.EnableAppearanceEvenRow = true;
     this.gvReception.OptionsView.EnableAppearanceOddRow = true;
     this.gvReception.OptionsView.ShowFilterPanel = false;
     this.gvReception.OptionsView.ShowGroupPanel = false;
     this.gvReception.CustomDrawColumnHeader += new DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventHandler(this.gvReception_CustomDrawColumnHeader);
     this.gvReception.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvReception_RowCellStyle);
     this.gvReception.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvReception_InitNewRow);
     this.gvReception.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvReception_FocusedRowChanged);
     this.gvReception.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gvReception_CellValueChanging);
     this.gvReception.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gvReception_KeyDown);
     this.gvReception.Click += new System.EventHandler(this.gvReception_Click);
     this.gvReception.RowCountChanged += new System.EventHandler(this.gvReception_RowCountChanged);
     //
     // gcRec_idrecep_sample_detail
     //
     this.gcRec_idrecep_sample_detail.Caption = "gridColumn1";
     this.gcRec_idrecep_sample_detail.FieldName = "Idrecep_sample_detail";
     this.gcRec_idrecep_sample_detail.Name = "gcRec_idrecep_sample_detail";
     //
     // gcRec_OrderSample
     //
     this.gcRec_OrderSample.Caption = "N°";
     this.gcRec_OrderSample.FieldName = "Order_sample";
     this.gcRec_OrderSample.Name = "gcRec_OrderSample";
     this.gcRec_OrderSample.OptionsColumn.AllowEdit = false;
     this.gcRec_OrderSample.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gcRec_OrderSample.Visible = true;
     this.gcRec_OrderSample.VisibleIndex = 0;
     this.gcRec_OrderSample.Width = 32;
     //
     // gcRec_Description
     //
     this.gcRec_Description.Caption = "Descripción";
     this.gcRec_Description.ColumnEdit = this.repDescription;
     this.gcRec_Description.FieldName = "Cod_des_sample";
     this.gcRec_Description.Name = "gcRec_Description";
     this.gcRec_Description.Visible = true;
     this.gcRec_Description.VisibleIndex = 1;
     this.gcRec_Description.Width = 108;
     //
     // repDescription
     //
     this.repDescription.AutoHeight = false;
     serializableAppearanceObject1.BackColor = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.BackColor2 = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.BorderColor = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.Options.UseBackColor = true;
     serializableAppearanceObject1.Options.UseBorderColor = true;
     this.repDescription.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.copiar, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1)});
     this.repDescription.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_des_sample", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Description")});
     this.repDescription.DisplayMember = "Description";
     this.repDescription.Name = "repDescription";
     this.repDescription.NullText = "Seleccionar";
     this.repDescription.ShowHeader = false;
     this.repDescription.ValueMember = "Cod_des_sample";
     this.repDescription.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repDescription_ButtonClick);
     this.repDescription.EditValueChanged += new System.EventHandler(this.repDescription_EditValueChanged);
     //
     // gcRec_Idmr_detail
     //
     this.gcRec_Idmr_detail.Caption = "Idmr_detail";
     this.gcRec_Idmr_detail.FieldName = "Idmr_detail";
     this.gcRec_Idmr_detail.Name = "gcRec_Idmr_detail";
     //
     // gcRec_Type_Sample
     //
     this.gcRec_Type_Sample.Caption = "Tipo de Muestra";
     this.gcRec_Type_Sample.FieldName = "Cod_type_sample";
     this.gcRec_Type_Sample.Name = "gcRec_Type_Sample";
     this.gcRec_Type_Sample.Width = 125;
     //
     // gcRec_Procedence
     //
     this.gcRec_Procedence.Caption = "Procedencia";
     this.gcRec_Procedence.ColumnEdit = this.repProcedence;
     this.gcRec_Procedence.FieldName = "Procedence";
     this.gcRec_Procedence.Name = "gcRec_Procedence";
     this.gcRec_Procedence.Visible = true;
     this.gcRec_Procedence.VisibleIndex = 2;
     this.gcRec_Procedence.Width = 113;
     //
     // repProcedence
     //
     this.repProcedence.AutoHeight = false;
     this.repProcedence.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.copiar)});
     this.repProcedence.Name = "repProcedence";
     this.repProcedence.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repProcedence_ButtonClick);
     //
     // gcRec_Code
     //
     this.gcRec_Code.Caption = "Código";
     this.gcRec_Code.FieldName = "Cod_sample";
     this.gcRec_Code.Name = "gcRec_Code";
     this.gcRec_Code.OptionsColumn.AllowEdit = false;
     this.gcRec_Code.Visible = true;
     this.gcRec_Code.VisibleIndex = 3;
     this.gcRec_Code.Width = 82;
     //
     // gcRec_Cod_interno
     //
     this.gcRec_Cod_interno.Caption = "Cod_interno";
     this.gcRec_Cod_interno.FieldName = "Cod_interno";
     this.gcRec_Cod_interno.Name = "gcRec_Cod_interno";
     //
     // gcRec_NameSample
     //
     this.gcRec_NameSample.Caption = "Nombre ";
     this.gcRec_NameSample.FieldName = "Name_sample";
     this.gcRec_NameSample.Name = "gcRec_NameSample";
     this.gcRec_NameSample.Visible = true;
     this.gcRec_NameSample.VisibleIndex = 4;
     this.gcRec_NameSample.Width = 114;
     //
     // gcRec_Flag_envelope_sealed
     //
     this.gcRec_Flag_envelope_sealed.Caption = "Sobre sellado";
     this.gcRec_Flag_envelope_sealed.ColumnEdit = this.repEnvelope_sealed;
     this.gcRec_Flag_envelope_sealed.FieldName = "Flag_envelope_sealed";
     this.gcRec_Flag_envelope_sealed.Name = "gcRec_Flag_envelope_sealed";
     this.gcRec_Flag_envelope_sealed.Visible = true;
     this.gcRec_Flag_envelope_sealed.VisibleIndex = 5;
     this.gcRec_Flag_envelope_sealed.Width = 41;
     //
     // repEnvelope_sealed
     //
     this.repEnvelope_sealed.AutoHeight = false;
     this.repEnvelope_sealed.Name = "repEnvelope_sealed";
     //
     // gcRec_CantKg
     //
     this.gcRec_CantKg.Caption = "Cant (kg)";
     this.gcRec_CantKg.FieldName = "Amount_weight";
     this.gcRec_CantKg.Name = "gcRec_CantKg";
     this.gcRec_CantKg.Visible = true;
     this.gcRec_CantKg.VisibleIndex = 6;
     this.gcRec_CantKg.Width = 52;
     //
     // gcRec_Reject
     //
     this.gcRec_Reject.Caption = "Rechazo";
     this.gcRec_Reject.FieldName = "Flag_reject";
     this.gcRec_Reject.ImageIndex = 9;
     this.gcRec_Reject.Name = "gcRec_Reject";
     this.gcRec_Reject.Visible = true;
     this.gcRec_Reject.VisibleIndex = 7;
     this.gcRec_Reject.Width = 50;
     //
     // gcRec_Counter_Sample
     //
     this.gcRec_Counter_Sample.Caption = "Contramuestra";
     this.gcRec_Counter_Sample.FieldName = "Flag_counter_sample";
     this.gcRec_Counter_Sample.Name = "gcRec_Counter_Sample";
     this.gcRec_Counter_Sample.Visible = true;
     this.gcRec_Counter_Sample.VisibleIndex = 8;
     this.gcRec_Counter_Sample.Width = 50;
     //
     // gcRec_Days
     //
     this.gcRec_Days.Caption = "Entrega(dias)";
     this.gcRec_Days.FieldName = "Analisys_time";
     this.gcRec_Days.Name = "gcRec_Days";
     this.gcRec_Days.Width = 41;
     //
     // gcRec_Cost
     //
     this.gcRec_Cost.Caption = "Costo";
     this.gcRec_Cost.FieldName = "Cost_sample";
     this.gcRec_Cost.Name = "gcRec_Cost";
     this.gcRec_Cost.Visible = true;
     this.gcRec_Cost.VisibleIndex = 9;
     this.gcRec_Cost.Width = 50;
     //
     // gcDyn1
     //
     this.gcDyn1.Caption = "gridColumn1";
     this.gcDyn1.ColumnEdit = this.repSelect;
     this.gcDyn1.FieldName = "rec1";
     this.gcDyn1.Name = "gcDyn1";
     this.gcDyn1.Width = 40;
     //
     // repSelect
     //
     this.repSelect.AutoHeight = false;
     this.repSelect.Name = "repSelect";
     //
     // gcDyn2
     //
     this.gcDyn2.Caption = "gridColumn2";
     this.gcDyn2.ColumnEdit = this.repSelect;
     this.gcDyn2.FieldName = "rec2";
     this.gcDyn2.Name = "gcDyn2";
     this.gcDyn2.Width = 40;
     //
     // gcDyn3
     //
     this.gcDyn3.Caption = "gridColumn3";
     this.gcDyn3.ColumnEdit = this.repSelect;
     this.gcDyn3.FieldName = "rec3";
     this.gcDyn3.Name = "gcDyn3";
     this.gcDyn3.Width = 35;
     //
     // gcDyn4
     //
     this.gcDyn4.Caption = "gridColumn4";
     this.gcDyn4.ColumnEdit = this.repSelect;
     this.gcDyn4.FieldName = "rec4";
     this.gcDyn4.Name = "gcDyn4";
     this.gcDyn4.Width = 35;
     //
     // gcDyn5
     //
     this.gcDyn5.Caption = "gridColumn5";
     this.gcDyn5.ColumnEdit = this.repSelect;
     this.gcDyn5.FieldName = "rec5";
     this.gcDyn5.Name = "gcDyn5";
     this.gcDyn5.Width = 35;
     //
     // gcDyn6
     //
     this.gcDyn6.Caption = "gridColumn6";
     this.gcDyn6.ColumnEdit = this.repSelect;
     this.gcDyn6.FieldName = "rec6";
     this.gcDyn6.Name = "gcDyn6";
     this.gcDyn6.Width = 35;
     //
     // gcDyn7
     //
     this.gcDyn7.Caption = "gridColumn7";
     this.gcDyn7.ColumnEdit = this.repSelect;
     this.gcDyn7.FieldName = "rec7";
     this.gcDyn7.Name = "gcDyn7";
     this.gcDyn7.Width = 35;
     //
     // gcDyn8
     //
     this.gcDyn8.Caption = "gridColumn8";
     this.gcDyn8.ColumnEdit = this.repSelect;
     this.gcDyn8.FieldName = "rec8";
     this.gcDyn8.Name = "gcDyn8";
     this.gcDyn8.Width = 35;
     //
     // gcDyn9
     //
     this.gcDyn9.Caption = "gridColumn9";
     this.gcDyn9.ColumnEdit = this.repSelect;
     this.gcDyn9.FieldName = "rec9";
     this.gcDyn9.Name = "gcDyn9";
     this.gcDyn9.Width = 35;
     //
     // gcDyn10
     //
     this.gcDyn10.Caption = "gridColumn10";
     this.gcDyn10.ColumnEdit = this.repSelect;
     this.gcDyn10.FieldName = "rec10";
     this.gcDyn10.Name = "gcDyn10";
     this.gcDyn10.Width = 35;
     //
     // gcDyn11
     //
     this.gcDyn11.Caption = "gridColumn11";
     this.gcDyn11.ColumnEdit = this.repSelect;
     this.gcDyn11.FieldName = "rec11";
     this.gcDyn11.Name = "gcDyn11";
     this.gcDyn11.Width = 35;
     //
     // gcDyn12
     //
     this.gcDyn12.Caption = "gridColumn12";
     this.gcDyn12.ColumnEdit = this.repSelect;
     this.gcDyn12.FieldName = "rec12";
     this.gcDyn12.Name = "gcDyn12";
     this.gcDyn12.Width = 35;
     //
     // gcDyn13
     //
     this.gcDyn13.Caption = "gridColumn13";
     this.gcDyn13.ColumnEdit = this.repSelect;
     this.gcDyn13.FieldName = "rec13";
     this.gcDyn13.Name = "gcDyn13";
     this.gcDyn13.Width = 35;
     //
     // gcDyn14
     //
     this.gcDyn14.Caption = "gridColumn14";
     this.gcDyn14.ColumnEdit = this.repSelect;
     this.gcDyn14.FieldName = "rec14";
     this.gcDyn14.Name = "gcDyn14";
     this.gcDyn14.Width = 35;
     //
     // gcDyn15
     //
     this.gcDyn15.Caption = "gridColumn15";
     this.gcDyn15.ColumnEdit = this.repSelect;
     this.gcDyn15.FieldName = "rec15";
     this.gcDyn15.Name = "gcDyn15";
     this.gcDyn15.Width = 35;
     //
     // gcDyn16
     //
     this.gcDyn16.Caption = "gridColumn16";
     this.gcDyn16.ColumnEdit = this.repSelect;
     this.gcDyn16.FieldName = "rec16";
     this.gcDyn16.Name = "gcDyn16";
     this.gcDyn16.Width = 35;
     //
     // gcDyn17
     //
     this.gcDyn17.Caption = "gridColumn17";
     this.gcDyn17.ColumnEdit = this.repSelect;
     this.gcDyn17.FieldName = "rec17";
     this.gcDyn17.Name = "gcDyn17";
     this.gcDyn17.Width = 35;
     //
     // gcDyn18
     //
     this.gcDyn18.Caption = "gridColumn18";
     this.gcDyn18.ColumnEdit = this.repSelect;
     this.gcDyn18.FieldName = "rec18";
     this.gcDyn18.Name = "gcDyn18";
     this.gcDyn18.Width = 35;
     //
     // gcDyn19
     //
     this.gcDyn19.Caption = "gridColumn19";
     this.gcDyn19.ColumnEdit = this.repSelect;
     this.gcDyn19.FieldName = "rec19";
     this.gcDyn19.Name = "gcDyn19";
     this.gcDyn19.Width = 35;
     //
     // gcDyn20
     //
     this.gcDyn20.Caption = "gridColumn20";
     this.gcDyn20.ColumnEdit = this.repSelect;
     this.gcDyn20.FieldName = "rec20";
     this.gcDyn20.Name = "gcDyn20";
     this.gcDyn20.Width = 35;
     //
     // gcAgua_Code
     //
     this.gcAgua_Code.Caption = "Código";
     this.gcAgua_Code.Name = "gcAgua_Code";
     //
     // gcAgua_Cod_interno
     //
     this.gcAgua_Cod_interno.Caption = "Cod_interno";
     this.gcAgua_Cod_interno.Name = "gcAgua_Cod_interno";
     //
     // gcAgua_Date
     //
     this.gcAgua_Date.Caption = "Fecha";
     this.gcAgua_Date.Name = "gcAgua_Date";
     //
     // gcAgua_Hour
     //
     this.gcAgua_Hour.Caption = "Hora";
     this.gcAgua_Hour.Name = "gcAgua_Hour";
     //
     // gcAgua_Cod_matrix
     //
     this.gcAgua_Cod_matrix.Caption = "Matriz";
     this.gcAgua_Cod_matrix.Name = "gcAgua_Cod_matrix";
     //
     // gcAgua_Cod_campo
     //
     this.gcAgua_Cod_campo.Caption = "Código de campo";
     this.gcAgua_Cod_campo.Name = "gcAgua_Cod_campo";
     //
     // gcAgua_NameSample
     //
     this.gcAgua_NameSample.Caption = "Nombre de muestra";
     this.gcAgua_NameSample.Name = "gcAgua_NameSample";
     //
     // gcAgua_Ubigeo
     //
     this.gcAgua_Ubigeo.Caption = "Zona, Urb, AAHH / Dist. / Prov. / Depart.";
     this.gcAgua_Ubigeo.Name = "gcAgua_Ubigeo";
     //
     // gcAgua_UTM
     //
     this.gcAgua_UTM.Caption = "Punto de muestreo y/o coordenadas UTM ";
     this.gcAgua_UTM.Name = "gcAgua_UTM";
     //
     // gcAgua_Num_bottle_plastic
     //
     this.gcAgua_Num_bottle_plastic.Caption = "N°Frascos de vidrio";
     this.gcAgua_Num_bottle_plastic.Name = "gcAgua_Num_bottle_plastic";
     //
     // gcAgua_Num_bottle_glass
     //
     this.gcAgua_Num_bottle_glass.Caption = "N°Frascos de plastico";
     this.gcAgua_Num_bottle_glass.Name = "gcAgua_Num_bottle_glass";
     //
     // gcAgua_Volumen
     //
     this.gcAgua_Volumen.Caption = "Volumen (L)";
     this.gcAgua_Volumen.Name = "gcAgua_Volumen";
     //
     // repResult
     //
     this.repResult.AutoHeight = false;
     this.repResult.Name = "repResult";
     //
     // repSendReport
     //
     this.repSendReport.AutoHeight = false;
     this.repSendReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Right)});
     this.repSendReport.Name = "repSendReport";
     //
     // repLink
     //
     this.repLink.AutoHeight = false;
     this.repLink.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.attach2)});
     this.repLink.Name = "repLink";
     this.repLink.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repLink_ButtonClick);
     //
     // repDesLink
     //
     this.repDesLink.AutoHeight = false;
     this.repDesLink.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDesLink.Name = "repDesLink";
     //
     // repSample
     //
     this.repSample.AutoHeight = false;
     this.repSample.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repSample.Name = "repSample";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl1.Appearance.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl1.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl1.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl1.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl1.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl1.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl1.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl1.Location = new System.Drawing.Point(11, 29);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.PaintStyleName = "PropertyView";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage3;
     this.xtraTabControl1.Size = new System.Drawing.Size(534, 114);
     this.xtraTabControl1.TabIndex = 4;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage3,
     this.xtraTabPage6,
     this.xtraTabPage1});
     this.xtraTabControl1.Text = "Anexos";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.tbFax);
     this.xtraTabPage3.Controls.Add(this.tbClientPhone);
     this.xtraTabPage3.Controls.Add(this.tbClientRuc);
     this.xtraTabPage3.Controls.Add(this.tbClientDomicile);
     this.xtraTabPage3.Controls.Add(this.label9);
     this.xtraTabPage3.Controls.Add(this.label28);
     this.xtraTabPage3.Controls.Add(this.label11);
     this.xtraTabPage3.Controls.Add(this.label8);
     this.xtraTabPage3.Controls.Add(this.label6);
     this.xtraTabPage3.Controls.Add(this.cbCompany);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage3.Text = "Cliente";
     //
     // tbFax
     //
     this.tbFax.Location = new System.Drawing.Point(176, 54);
     this.tbFax.Name = "tbFax";
     this.tbFax.Properties.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,3}\\))\\d{1,10}";
     this.tbFax.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbFax.Size = new System.Drawing.Size(74, 20);
     this.tbFax.TabIndex = 6;
     //
     // tbClientPhone
     //
     this.tbClientPhone.Location = new System.Drawing.Point(66, 54);
     this.tbClientPhone.Name = "tbClientPhone";
     this.tbClientPhone.Properties.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,3}\\))\\d{1,10}";
     this.tbClientPhone.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbClientPhone.Size = new System.Drawing.Size(74, 20);
     this.tbClientPhone.TabIndex = 6;
     //
     // tbClientRuc
     //
     this.tbClientRuc.Location = new System.Drawing.Point(367, 12);
     this.tbClientRuc.Name = "tbClientRuc";
     this.tbClientRuc.Properties.Mask.EditMask = "\\d{0,11}";
     this.tbClientRuc.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbClientRuc.Size = new System.Drawing.Size(123, 20);
     this.tbClientRuc.TabIndex = 3;
     //
     // tbClientDomicile
     //
     this.tbClientDomicile.Location = new System.Drawing.Point(66, 33);
     this.tbClientDomicile.Name = "tbClientDomicile";
     this.tbClientDomicile.Size = new System.Drawing.Size(424, 20);
     this.tbClientDomicile.TabIndex = 4;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(331, 15);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(30, 13);
     this.label9.TabIndex = 9;
     this.label9.Text = "Ruc:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(143, 57);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(27, 13);
     this.label28.TabIndex = 9;
     this.label28.Text = "Fax:";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(11, 57);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(25, 13);
     this.label11.TabIndex = 9;
     this.label11.Text = "Tel:";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(11, 36);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(52, 13);
     this.label8.TabIndex = 9;
     this.label8.Text = "Domicilio:";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(11, 15);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(47, 13);
     this.label6.TabIndex = 9;
     this.label6.Text = "Nombre:";
     //
     // cbCompany
     //
     this.cbCompany.Location = new System.Drawing.Point(66, 12);
     this.cbCompany.Name = "cbCompany";
     this.cbCompany.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbCompany.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idcompany", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Business_name")});
     this.cbCompany.Properties.NullText = "Seleccionar";
     this.cbCompany.Properties.ShowFooter = false;
     this.cbCompany.Properties.ShowHeader = false;
     this.cbCompany.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cbCompany.Size = new System.Drawing.Size(259, 20);
     this.cbCompany.TabIndex = 2;
     this.cbCompany.ProcessNewValue += new DevExpress.XtraEditors.Controls.ProcessNewValueEventHandler(this.cbClientName_ProcessNewValue);
     this.cbCompany.EditValueChanged += new System.EventHandler(this.cbClientName_EditValueChanged);
     //
     // xtraTabPage6
     //
     this.xtraTabPage6.Controls.Add(this.gcContact);
     this.xtraTabPage6.Name = "xtraTabPage6";
     this.xtraTabPage6.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage6.Text = "Contactos";
     //
     // gcContact
     //
     this.gcContact.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcContact.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gcContact.EmbeddedNavigator.Name = "";
     this.gcContact.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gcContact.Location = new System.Drawing.Point(0, 0);
     this.gcContact.MainView = this.gvContact;
     this.gcContact.Name = "gcContact";
     this.gcContact.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repPerson_type,
     this.repNum,
     this.repCellPhone,
     this.repPhone});
     this.gcContact.Size = new System.Drawing.Size(532, 93);
     this.gcContact.TabIndex = 0;
     this.gcContact.UseEmbeddedNavigator = true;
     this.gcContact.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvContact});
     //
     // gvContact
     //
     this.gvContact.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcCon_Idrecep_company_person,
     this.gcCon_Idperson,
     this.gcCon_Idcompany,
     this.gcCon_Idrecep_sample,
     this.gcCon_Allname,
     this.gcCon_Mail,
     this.gcCon_Person_type,
     this.gcCon_Phone,
     this.gcCon_Cellphone});
     this.gvContact.GridControl = this.gcContact;
     this.gvContact.Name = "gvContact";
     this.gvContact.OptionsView.ShowGroupPanel = false;
     this.gvContact.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvContact_InitNewRow);
     //
     // gcCon_Idrecep_company_person
     //
     this.gcCon_Idrecep_company_person.Caption = "Idrecep_company_person";
     this.gcCon_Idrecep_company_person.FieldName = "Idrecep_company_person";
     this.gcCon_Idrecep_company_person.Name = "gcCon_Idrecep_company_person";
     //
     // gcCon_Idperson
     //
     this.gcCon_Idperson.Caption = "Idperson";
     this.gcCon_Idperson.FieldName = "Idperson";
     this.gcCon_Idperson.Name = "gcCon_Idperson";
     //
     // gcCon_Idcompany
     //
     this.gcCon_Idcompany.Caption = "Idcompany";
     this.gcCon_Idcompany.FieldName = "Idcompany";
     this.gcCon_Idcompany.Name = "gcCon_Idcompany";
     //
     // gcCon_Idrecep_sample
     //
     this.gcCon_Idrecep_sample.Caption = "Idrecep_sample";
     this.gcCon_Idrecep_sample.FieldName = "Idrecep_sample";
     this.gcCon_Idrecep_sample.Name = "gcCon_Idrecep_sample";
     //
     // gcCon_Allname
     //
     this.gcCon_Allname.Caption = "Nombre";
     this.gcCon_Allname.FieldName = "Allname";
     this.gcCon_Allname.Name = "gcCon_Allname";
     this.gcCon_Allname.Visible = true;
     this.gcCon_Allname.VisibleIndex = 0;
     this.gcCon_Allname.Width = 152;
     //
     // gcCon_Mail
     //
     this.gcCon_Mail.Caption = "Email";
     this.gcCon_Mail.FieldName = "Mail";
     this.gcCon_Mail.Name = "gcCon_Mail";
     this.gcCon_Mail.Visible = true;
     this.gcCon_Mail.VisibleIndex = 1;
     this.gcCon_Mail.Width = 122;
     //
     // gcCon_Person_type
     //
     this.gcCon_Person_type.Caption = "Tipo";
     this.gcCon_Person_type.ColumnEdit = this.repPerson_type;
     this.gcCon_Person_type.FieldName = "Person_type";
     this.gcCon_Person_type.Name = "gcCon_Person_type";
     this.gcCon_Person_type.Visible = true;
     this.gcCon_Person_type.VisibleIndex = 2;
     this.gcCon_Person_type.Width = 64;
     //
     // repPerson_type
     //
     this.repPerson_type.AutoHeight = false;
     this.repPerson_type.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repPerson_type.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Id", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name")});
     this.repPerson_type.Name = "repPerson_type";
     this.repPerson_type.NullText = "";
     this.repPerson_type.ShowFooter = false;
     this.repPerson_type.ShowHeader = false;
     //
     // gcCon_Phone
     //
     this.gcCon_Phone.Caption = "Teléfono";
     this.gcCon_Phone.ColumnEdit = this.repPhone;
     this.gcCon_Phone.FieldName = "Phone";
     this.gcCon_Phone.Name = "gcCon_Phone";
     this.gcCon_Phone.Visible = true;
     this.gcCon_Phone.VisibleIndex = 3;
     this.gcCon_Phone.Width = 85;
     //
     // repPhone
     //
     this.repPhone.AutoHeight = false;
     this.repPhone.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,2}\\))\\d{1,10}";
     this.repPhone.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.repPhone.Name = "repPhone";
     //
     // gcCon_Cellphone
     //
     this.gcCon_Cellphone.Caption = "Celular";
     this.gcCon_Cellphone.ColumnEdit = this.repCellPhone;
     this.gcCon_Cellphone.FieldName = "Cellphone";
     this.gcCon_Cellphone.Name = "gcCon_Cellphone";
     this.gcCon_Cellphone.Visible = true;
     this.gcCon_Cellphone.VisibleIndex = 4;
     this.gcCon_Cellphone.Width = 88;
     //
     // repCellPhone
     //
     this.repCellPhone.AutoHeight = false;
     this.repCellPhone.Mask.EditMask = "(\\(\\d{1,3}\\))?\\d{1,3}-\\d{1,3}-\\d{1,6}";
     this.repCellPhone.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.repCellPhone.Name = "repCellPhone";
     //
     // repNum
     //
     this.repNum.AutoHeight = false;
     this.repNum.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repNum.IsFloatValue = false;
     this.repNum.Mask.EditMask = "N00";
     this.repNum.Name = "repNum";
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.ckDispatchFax);
     this.xtraTabPage1.Controls.Add(this.ckDispatchPerson);
     this.xtraTabPage1.Controls.Add(this.ckDispatchTransport);
     this.xtraTabPage1.Controls.Add(this.ckDispatchCurier);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage1.Text = "Envío";
     //
     // ckDispatchFax
     //
     this.ckDispatchFax.Location = new System.Drawing.Point(141, 15);
     this.ckDispatchFax.Name = "ckDispatchFax";
     this.ckDispatchFax.Properties.Caption = "Fax";
     this.ckDispatchFax.Size = new System.Drawing.Size(107, 18);
     this.ckDispatchFax.TabIndex = 0;
     //
     // ckDispatchPerson
     //
     this.ckDispatchPerson.Location = new System.Drawing.Point(20, 15);
     this.ckDispatchPerson.Name = "ckDispatchPerson";
     this.ckDispatchPerson.Properties.Caption = "Personal";
     this.ckDispatchPerson.Size = new System.Drawing.Size(75, 18);
     this.ckDispatchPerson.TabIndex = 0;
     this.ckDispatchPerson.CheckedChanged += new System.EventHandler(this.ckDispatchPerson_CheckedChanged);
     //
     // ckDispatchTransport
     //
     this.ckDispatchTransport.Location = new System.Drawing.Point(20, 53);
     this.ckDispatchTransport.Name = "ckDispatchTransport";
     this.ckDispatchTransport.Properties.Caption = "Emp. Transporte";
     this.ckDispatchTransport.Size = new System.Drawing.Size(107, 18);
     this.ckDispatchTransport.TabIndex = 0;
     this.ckDispatchTransport.CheckedChanged += new System.EventHandler(this.ckDispatchTransport_CheckedChanged);
     //
     // ckDispatchCurier
     //
     this.ckDispatchCurier.Location = new System.Drawing.Point(20, 34);
     this.ckDispatchCurier.Name = "ckDispatchCurier";
     this.ckDispatchCurier.Properties.Caption = "Curier";
     this.ckDispatchCurier.Size = new System.Drawing.Size(75, 18);
     this.ckDispatchCurier.TabIndex = 0;
     this.ckDispatchCurier.CheckedChanged += new System.EventHandler(this.ckDispatchCurier_CheckedChanged);
     //
     // expandablePanel1
     //
     this.expandablePanel1.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.LeftToRight;
     this.expandablePanel1.Controls.Add(this.tabOptionRight);
     this.expandablePanel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.expandablePanel1.Location = new System.Drawing.Point(699, 0);
     this.expandablePanel1.Name = "expandablePanel1";
     this.expandablePanel1.Size = new System.Drawing.Size(294, 358);
     this.expandablePanel1.TabIndex = 2;
     this.expandablePanel1.Text = "expandablePanel1";
     this.expandablePanel1.TitleText = "Métodos";
     //
     // tabOptionRight
     //
     this.tabOptionRight.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.tabOptionRight.Appearance.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.tabOptionRight.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.tabOptionRight.AppearancePage.Header.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.Header.Options.UseBorderColor = true;
     this.tabOptionRight.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.tabOptionRight.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.tabOptionRight.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.tabOptionRight.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.tabOptionRight.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.tabOptionRight.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabOptionRight.Location = new System.Drawing.Point(0, 26);
     this.tabOptionRight.Name = "tabOptionRight";
     this.tabOptionRight.PaintStyleName = "PropertyView";
     this.tabOptionRight.SelectedTabPage = this.tpRightMethods;
     this.tabOptionRight.Size = new System.Drawing.Size(294, 332);
     this.tabOptionRight.TabIndex = 5;
     this.tabOptionRight.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tpRightMethods,
     this.tpRightReports,
     this.tpRightAttach,
     this.tpRightProgram});
     this.tabOptionRight.Text = "Adjuntos";
     this.tabOptionRight.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabOptionRight_SelectedPageChanged);
     //
     // tpRightMethods
     //
     this.tpRightMethods.Controls.Add(this.lookUpEdit3);
     this.tpRightMethods.Controls.Add(this.gcMethods);
     this.tpRightMethods.Controls.Add(this.textEdit1);
     this.tpRightMethods.Name = "tpRightMethods";
     this.tpRightMethods.Size = new System.Drawing.Size(292, 311);
     this.tpRightMethods.Text = "Métodos";
     //
     // lookUpEdit3
     //
     this.lookUpEdit3.Location = new System.Drawing.Point(452, 55);
     this.lookUpEdit3.Name = "lookUpEdit3";
     this.lookUpEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit3.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IDTypePost", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Type_Post")});
     this.lookUpEdit3.Properties.NullText = "Seleccionar";
     this.lookUpEdit3.Properties.ShowFooter = false;
     this.lookUpEdit3.Properties.ShowHeader = false;
     this.lookUpEdit3.Size = new System.Drawing.Size(100, 20);
     this.lookUpEdit3.TabIndex = 1;
     //
     // gcMethods
     //
     this.gcMethods.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcMethods.EmbeddedNavigator.Name = "";
     this.gcMethods.Location = new System.Drawing.Point(0, 0);
     this.gcMethods.MainView = this.gvMethods;
     this.gcMethods.Name = "gcMethods";
     this.gcMethods.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repAddColumn});
     this.gcMethods.Size = new System.Drawing.Size(292, 311);
     this.gcMethods.TabIndex = 1;
     this.gcMethods.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvMethods});
     //
     // gvMethods
     //
     this.gvMethods.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvMethods.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.Empty.Options.UseBackColor = true;
     this.gvMethods.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvMethods.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvMethods.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvMethods.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvMethods.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvMethods.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupRow.Options.UseFont = true;
     this.gvMethods.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F);
     this.gvMethods.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvMethods.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvMethods.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvMethods.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.OddRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.OddRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.Preview.Options.UseBackColor = true;
     this.gvMethods.Appearance.Preview.Options.UseForeColor = true;
     this.gvMethods.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 8F);
     this.gvMethods.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.Row.Options.UseBackColor = true;
     this.gvMethods.Appearance.Row.Options.UseFont = true;
     this.gvMethods.Appearance.Row.Options.UseForeColor = true;
     this.gvMethods.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvMethods.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvMethods.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvMethods.Appearance.VertLine.Options.UseBackColor = true;
     this.gvMethods.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcMet_Cod_template_method,
     this.gcMet_Cod_element,
     this.gcMet_Abbreviation,
     this.gcMet_Name_type_analisys,
     this.gcMet_Title,
     this.gcMet_TypeAnalisys,
     this.gcMet_Button,
     this.gcMet_Cost,
     this.gcMet_Unit1,
     this.gcMet_Unit_Name,
     this.gcMet_Idelement,
     this.gcMet_Idtemplate_method,
     this.gcMet_Analisys_time});
     this.gvMethods.GridControl = this.gcMethods;
     this.gvMethods.GroupCount = 1;
     this.gvMethods.Name = "gvMethods";
     this.gvMethods.OptionsBehavior.AutoExpandAllGroups = true;
     this.gvMethods.OptionsView.ColumnAutoWidth = false;
     this.gvMethods.OptionsView.EnableAppearanceEvenRow = true;
     this.gvMethods.OptionsView.EnableAppearanceOddRow = true;
     this.gvMethods.OptionsView.ShowGroupPanel = false;
     this.gvMethods.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcMet_TypeAnalisys, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gcMet_Cod_template_method
     //
     this.gcMet_Cod_template_method.Caption = "Cod.";
     this.gcMet_Cod_template_method.FieldName = "Cod_template_method";
     this.gcMet_Cod_template_method.Name = "gcMet_Cod_template_method";
     this.gcMet_Cod_template_method.OptionsColumn.ReadOnly = true;
     this.gcMet_Cod_template_method.Visible = true;
     this.gcMet_Cod_template_method.VisibleIndex = 1;
     this.gcMet_Cod_template_method.Width = 50;
     //
     // gcMet_Cod_element
     //
     this.gcMet_Cod_element.Caption = "Elemento";
     this.gcMet_Cod_element.FieldName = "Cod_element";
     this.gcMet_Cod_element.Name = "gcMet_Cod_element";
     this.gcMet_Cod_element.OptionsColumn.ReadOnly = true;
     this.gcMet_Cod_element.Visible = true;
     this.gcMet_Cod_element.VisibleIndex = 2;
     //
     // gcMet_Abbreviation
     //
     this.gcMet_Abbreviation.Caption = "Abreviación";
     this.gcMet_Abbreviation.FieldName = "Abbreviation";
     this.gcMet_Abbreviation.Name = "gcMet_Abbreviation";
     this.gcMet_Abbreviation.OptionsColumn.ReadOnly = true;
     this.gcMet_Abbreviation.Visible = true;
     this.gcMet_Abbreviation.VisibleIndex = 3;
     this.gcMet_Abbreviation.Width = 60;
     //
     // gcMet_Name_type_analisys
     //
     this.gcMet_Name_type_analisys.Caption = "Tipo de Análisis";
     this.gcMet_Name_type_analisys.FieldName = "Name_type_analisys";
     this.gcMet_Name_type_analisys.Name = "gcMet_Name_type_analisys";
     this.gcMet_Name_type_analisys.Visible = true;
     this.gcMet_Name_type_analisys.VisibleIndex = 5;
     //
     // gcMet_Title
     //
     this.gcMet_Title.Caption = "Título";
     this.gcMet_Title.FieldName = "Title";
     this.gcMet_Title.Name = "gcMet_Title";
     this.gcMet_Title.OptionsColumn.ReadOnly = true;
     this.gcMet_Title.Visible = true;
     this.gcMet_Title.VisibleIndex = 4;
     this.gcMet_Title.Width = 135;
     //
     // gcMet_TypeAnalisys
     //
     this.gcMet_TypeAnalisys.Caption = "Tipo de análisis";
     this.gcMet_TypeAnalisys.FieldName = "Name_type_analisys";
     this.gcMet_TypeAnalisys.Name = "gcMet_TypeAnalisys";
     //
     // gcMet_Button
     //
     this.gcMet_Button.Caption = "#";
     this.gcMet_Button.ColumnEdit = this.repAddColumn;
     this.gcMet_Button.Name = "gcMet_Button";
     this.gcMet_Button.Visible = true;
     this.gcMet_Button.VisibleIndex = 0;
     this.gcMet_Button.Width = 52;
     //
     // repAddColumn
     //
     this.repAddColumn.AutoHeight = false;
     this.repAddColumn.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Left)});
     this.repAddColumn.Name = "repAddColumn";
     this.repAddColumn.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repAddColumn.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repAddColumn_ButtonClick);
     //
     // gcMet_Cost
     //
     this.gcMet_Cost.Caption = "Cost";
     this.gcMet_Cost.FieldName = "Cost_method";
     this.gcMet_Cost.Name = "gcMet_Cost";
     //
     // gcMet_Unit1
     //
     this.gcMet_Unit1.Caption = "Unit";
     this.gcMet_Unit1.FieldName = "Idunit_result";
     this.gcMet_Unit1.Name = "gcMet_Unit1";
     //
     // gcMet_Unit_Name
     //
     this.gcMet_Unit_Name.Caption = "Name_unit";
     this.gcMet_Unit_Name.FieldName = "Name_unit";
     this.gcMet_Unit_Name.Name = "gcMet_Unit_Name";
     //
     // gcMet_Idelement
     //
     this.gcMet_Idelement.Caption = "Idelement";
     this.gcMet_Idelement.FieldName = "Idelement";
     this.gcMet_Idelement.Name = "gcMet_Idelement";
     //
     // gcMet_Idtemplate_method
     //
     this.gcMet_Idtemplate_method.Caption = "idtemplate_method";
     this.gcMet_Idtemplate_method.FieldName = "Idtemplate_method";
     this.gcMet_Idtemplate_method.Name = "gcMet_Idtemplate_method";
     //
     // gcMet_Analisys_time
     //
     this.gcMet_Analisys_time.Caption = "Analysis_time";
     this.gcMet_Analisys_time.FieldName = "Analisys_time";
     this.gcMet_Analisys_time.Name = "gcMet_Analisys_time";
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(452, 9);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Size = new System.Drawing.Size(100, 20);
     this.textEdit1.TabIndex = 3;
     //
     // tpRightReports
     //
     this.tpRightReports.Controls.Add(this.gcReport);
     this.tpRightReports.Controls.Add(this.groupControl1);
     this.tpRightReports.Name = "tpRightReports";
     this.tpRightReports.PageVisible = false;
     this.tpRightReports.Size = new System.Drawing.Size(292, 0);
     this.tpRightReports.Text = "Informes";
     //
     // gcReport
     //
     this.gcReport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcReport.EmbeddedNavigator.Name = "";
     this.gcReport.Location = new System.Drawing.Point(0, 53);
     this.gcReport.MainView = this.gvReport;
     this.gcReport.Name = "gcReport";
     this.gcReport.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repReportOption,
     this.repStatusReport,
     this.repDateReport,
     this.repTimeReport,
     this.repTypeReport});
     this.gcReport.Size = new System.Drawing.Size(292, 0);
     this.gcReport.TabIndex = 2;
     this.gcReport.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvReport});
     //
     // gvReport
     //
     this.gvReport.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvReport.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.Empty.Options.UseBackColor = true;
     this.gvReport.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvReport.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvReport.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvReport.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvReport.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvReport.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvReport.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvReport.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvReport.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvReport.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvReport.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupRow.Options.UseFont = true;
     this.gvReport.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvReport.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvReport.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvReport.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvReport.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvReport.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReport.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvReport.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.OddRow.Options.UseBackColor = true;
     this.gvReport.Appearance.OddRow.Options.UseForeColor = true;
     this.gvReport.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.Preview.Options.UseBackColor = true;
     this.gvReport.Appearance.Preview.Options.UseForeColor = true;
     this.gvReport.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.Row.Options.UseBackColor = true;
     this.gvReport.Appearance.Row.Options.UseForeColor = true;
     this.gvReport.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvReport.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvReport.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvReport.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvReport.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReport.Appearance.VertLine.Options.UseBackColor = true;
     this.gvReport.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcRep_idrecep_sample_report,
     this.gcRep_order_report,
     this.gcRep_cod_recep_sample_report,
     this.gcRep_report_status,
     this.gcRep_type_report,
     this.gcRep_Option,
     this.gcRep_Str_cod_recep_sample_report,
     this.gcRep_Date_report});
     this.gvReport.GridControl = this.gcReport;
     this.gvReport.Name = "gvReport";
     this.gvReport.OptionsView.EnableAppearanceEvenRow = true;
     this.gvReport.OptionsView.EnableAppearanceOddRow = true;
     this.gvReport.OptionsView.ShowGroupPanel = false;
     this.gvReport.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvReport_RowCellStyle);
     this.gvReport.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvReport_InitNewRow);
     this.gvReport.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvReport_FocusedRowChanged);
     //
     // gcRep_idrecep_sample_report
     //
     this.gcRep_idrecep_sample_report.Caption = "idrecep_sample_report";
     this.gcRep_idrecep_sample_report.FieldName = "Idrecep_sample_report";
     this.gcRep_idrecep_sample_report.Name = "gcRep_idrecep_sample_report";
     //
     // gcRep_order_report
     //
     this.gcRep_order_report.Caption = "N°";
     this.gcRep_order_report.FieldName = "Order_report";
     this.gcRep_order_report.Name = "gcRep_order_report";
     this.gcRep_order_report.OptionsColumn.AllowEdit = false;
     this.gcRep_order_report.OptionsFilter.AllowAutoFilter = false;
     this.gcRep_order_report.OptionsFilter.AllowFilter = false;
     this.gcRep_order_report.Visible = true;
     this.gcRep_order_report.VisibleIndex = 0;
     this.gcRep_order_report.Width = 23;
     //
     // gcRep_cod_recep_sample_report
     //
     this.gcRep_cod_recep_sample_report.Caption = "Código";
     this.gcRep_cod_recep_sample_report.FieldName = "Cod_recep_sample_report";
     this.gcRep_cod_recep_sample_report.Name = "gcRep_cod_recep_sample_report";
     this.gcRep_cod_recep_sample_report.OptionsColumn.AllowEdit = false;
     this.gcRep_cod_recep_sample_report.Width = 66;
     //
     // gcRep_report_status
     //
     this.gcRep_report_status.Caption = "Estado";
     this.gcRep_report_status.ColumnEdit = this.repStatusReport;
     this.gcRep_report_status.FieldName = "Report_status";
     this.gcRep_report_status.Name = "gcRep_report_status";
     this.gcRep_report_status.OptionsColumn.AllowEdit = false;
     this.gcRep_report_status.Visible = true;
     this.gcRep_report_status.VisibleIndex = 2;
     this.gcRep_report_status.Width = 74;
     //
     // repStatusReport
     //
     this.repStatusReport.AutoHeight = false;
     this.repStatusReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repStatusReport.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IdStatus"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Status")});
     this.repStatusReport.Name = "repStatusReport";
     this.repStatusReport.NullText = "";
     this.repStatusReport.ShowFooter = false;
     this.repStatusReport.ShowHeader = false;
     //
     // gcRep_type_report
     //
     this.gcRep_type_report.Caption = "type_report";
     this.gcRep_type_report.FieldName = "Type_report";
     this.gcRep_type_report.Name = "gcRep_type_report";
     this.gcRep_type_report.Width = 69;
     //
     // gcRep_Option
     //
     this.gcRep_Option.Caption = "#";
     this.gcRep_Option.ColumnEdit = this.repReportOption;
     this.gcRep_Option.Name = "gcRep_Option";
     this.gcRep_Option.Visible = true;
     this.gcRep_Option.VisibleIndex = 3;
     this.gcRep_Option.Width = 81;
     //
     // repReportOption
     //
     this.repReportOption.AutoHeight = false;
     serializableAppearanceObject2.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject2.Options.UseFont = true;
     this.repReportOption.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "ver", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "edit", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repReportOption.Name = "repReportOption";
     this.repReportOption.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repReportOption.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repReportOption_ButtonClick);
     //
     // gcRep_Str_cod_recep_sample_report
     //
     this.gcRep_Str_cod_recep_sample_report.Caption = "Cod. Interno";
     this.gcRep_Str_cod_recep_sample_report.FieldName = "Str_cod_recep_sample_report";
     this.gcRep_Str_cod_recep_sample_report.Name = "gcRep_Str_cod_recep_sample_report";
     this.gcRep_Str_cod_recep_sample_report.OptionsColumn.AllowEdit = false;
     this.gcRep_Str_cod_recep_sample_report.Visible = true;
     this.gcRep_Str_cod_recep_sample_report.VisibleIndex = 1;
     this.gcRep_Str_cod_recep_sample_report.Width = 123;
     //
     // gcRep_Date_report
     //
     this.gcRep_Date_report.Caption = "Date_report";
     this.gcRep_Date_report.FieldName = "Date_report";
     this.gcRep_Date_report.Name = "gcRep_Date_report";
     this.gcRep_Date_report.Width = 62;
     //
     // repDateReport
     //
     this.repDateReport.AutoHeight = false;
     this.repDateReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDateReport.Name = "repDateReport";
     //
     // repTimeReport
     //
     this.repTimeReport.AutoHeight = false;
     this.repTimeReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repTimeReport.Name = "repTimeReport";
     //
     // repTypeReport
     //
     this.repTypeReport.AutoHeight = false;
     this.repTypeReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repTypeReport.Name = "repTypeReport";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.btMakePartialReport);
     this.groupControl1.Controls.Add(this.btMakeFinalReport);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(292, 53);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "Crear Informe de Ensayo";
     //
     // btMakePartialReport
     //
     this.btMakePartialReport.AllowDrop = true;
     this.btMakePartialReport.Appearance.Options.UseTextOptions = true;
     this.btMakePartialReport.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btMakePartialReport.Location = new System.Drawing.Point(5, 23);
     this.btMakePartialReport.Name = "btMakePartialReport";
     this.btMakePartialReport.Size = new System.Drawing.Size(90, 25);
     this.btMakePartialReport.TabIndex = 0;
     this.btMakePartialReport.Text = "Informe Parcial";
     this.btMakePartialReport.Click += new System.EventHandler(this.btMakePartialReport_Click);
     //
     // btMakeFinalReport
     //
     this.btMakeFinalReport.AllowDrop = true;
     this.btMakeFinalReport.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btMakeFinalReport.Appearance.Options.UseForeColor = true;
     this.btMakeFinalReport.Appearance.Options.UseTextOptions = true;
     this.btMakeFinalReport.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btMakeFinalReport.Location = new System.Drawing.Point(101, 23);
     this.btMakeFinalReport.Name = "btMakeFinalReport";
     this.btMakeFinalReport.Size = new System.Drawing.Size(90, 25);
     this.btMakeFinalReport.TabIndex = 0;
     this.btMakeFinalReport.Text = "Informe Final";
     this.btMakeFinalReport.Click += new System.EventHandler(this.btMakeFinalReport_Click);
     //
     // tpRightAttach
     //
     this.tpRightAttach.Controls.Add(this.gcAttachFile);
     this.tpRightAttach.Controls.Add(this.groupControl2);
     this.tpRightAttach.Name = "tpRightAttach";
     this.tpRightAttach.PageVisible = false;
     this.tpRightAttach.Size = new System.Drawing.Size(292, 0);
     this.tpRightAttach.Text = "Adjuntar";
     //
     // gcAttachFile
     //
     this.gcAttachFile.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcAttachFile.EmbeddedNavigator.Name = "";
     this.gcAttachFile.Location = new System.Drawing.Point(0, 53);
     this.gcAttachFile.MainView = this.gvAttachFile;
     this.gcAttachFile.Name = "gcAttachFile";
     this.gcAttachFile.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repButtons,
     this.repAttach_status,
     this.repAttach_file});
     this.gcAttachFile.Size = new System.Drawing.Size(292, 0);
     this.gcAttachFile.TabIndex = 4;
     this.gcAttachFile.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvAttachFile});
     //
     // gvAttachFile
     //
     this.gvAttachFile.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.Empty.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvAttachFile.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvAttachFile.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvAttachFile.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseFont = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvAttachFile.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvAttachFile.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.OddRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.OddRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.Preview.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.Preview.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.Row.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.Row.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvAttachFile.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvAttachFile.Appearance.VertLine.Options.UseBackColor = true;
     this.gvAttachFile.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcAtt_Iddocument_recep,
     this.gcAtt_Idrecep_sample,
     this.gcAtt_FileName,
     this.gcAtt_Attach_status,
     this.gcAtt_Buttons,
     this.gcAtt_SourcePath,
     this.gcAtt_Order_file,
     this.gcAtt_Idrecep_sample_attach});
     this.gvAttachFile.GridControl = this.gcAttachFile;
     this.gvAttachFile.Name = "gvAttachFile";
     this.gvAttachFile.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvAttachFile.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gvAttachFile.OptionsView.EnableAppearanceEvenRow = true;
     this.gvAttachFile.OptionsView.EnableAppearanceOddRow = true;
     this.gvAttachFile.OptionsView.ShowGroupPanel = false;
     this.gvAttachFile.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvAttachFile_RowCellStyle);
     //
     // gcAtt_Iddocument_recep
     //
     this.gcAtt_Iddocument_recep.Caption = "Iddocument_recep";
     this.gcAtt_Iddocument_recep.FieldName = "Iddocument_recep";
     this.gcAtt_Iddocument_recep.Name = "gcAtt_Iddocument_recep";
     //
     // gcAtt_Idrecep_sample
     //
     this.gcAtt_Idrecep_sample.Caption = "gridColumn1";
     this.gcAtt_Idrecep_sample.FieldName = "Idrecep_sample";
     this.gcAtt_Idrecep_sample.Name = "gcAtt_Idrecep_sample";
     //
     // gcAtt_FileName
     //
     this.gcAtt_FileName.Caption = "Adjuntar Documento";
     this.gcAtt_FileName.ColumnEdit = this.repAttach_file;
     this.gcAtt_FileName.FieldName = "Name_file";
     this.gcAtt_FileName.Name = "gcAtt_FileName";
     this.gcAtt_FileName.Visible = true;
     this.gcAtt_FileName.VisibleIndex = 0;
     this.gcAtt_FileName.Width = 142;
     //
     // repAttach_file
     //
     this.repAttach_file.AutoHeight = false;
     serializableAppearanceObject3.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject3.Options.UseFont = true;
     this.repAttach_file.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Cargar", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3)});
     this.repAttach_file.Name = "repAttach_file";
     this.repAttach_file.NullText = "";
     //
     // gcAtt_Attach_status
     //
     this.gcAtt_Attach_status.Caption = "Estado";
     this.gcAtt_Attach_status.ColumnEdit = this.repAttach_status;
     this.gcAtt_Attach_status.FieldName = "Attach_status";
     this.gcAtt_Attach_status.Name = "gcAtt_Attach_status";
     this.gcAtt_Attach_status.Visible = true;
     this.gcAtt_Attach_status.VisibleIndex = 1;
     this.gcAtt_Attach_status.Width = 99;
     //
     // repAttach_status
     //
     this.repAttach_status.AutoHeight = false;
     this.repAttach_status.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repAttach_status.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Id", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Attach_status")});
     this.repAttach_status.Name = "repAttach_status";
     this.repAttach_status.NullText = "";
     this.repAttach_status.ShowFooter = false;
     this.repAttach_status.ShowHeader = false;
     //
     // gcAtt_Buttons
     //
     this.gcAtt_Buttons.Caption = "#";
     this.gcAtt_Buttons.ColumnEdit = this.repButtons;
     this.gcAtt_Buttons.Name = "gcAtt_Buttons";
     this.gcAtt_Buttons.Visible = true;
     this.gcAtt_Buttons.VisibleIndex = 2;
     this.gcAtt_Buttons.Width = 49;
     //
     // repButtons
     //
     this.repButtons.AutoHeight = false;
     serializableAppearanceObject4.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject4.Options.UseFont = true;
     this.repButtons.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "ver", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4)});
     this.repButtons.Name = "repButtons";
     this.repButtons.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repButtons.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repButtons_ButtonClick);
     //
     // gcAtt_SourcePath
     //
     this.gcAtt_SourcePath.Caption = "Source path";
     this.gcAtt_SourcePath.FieldName = "Source_path";
     this.gcAtt_SourcePath.Name = "gcAtt_SourcePath";
     //
     // gcAtt_Order_file
     //
     this.gcAtt_Order_file.Caption = "Order_file";
     this.gcAtt_Order_file.FieldName = "Order_file";
     this.gcAtt_Order_file.Name = "gcAtt_Order_file";
     //
     // gcAtt_Idrecep_sample_attach
     //
     this.gcAtt_Idrecep_sample_attach.Caption = "Idrecep_sample_attach";
     this.gcAtt_Idrecep_sample_attach.FieldName = "Idrecep_sample_attach";
     this.gcAtt_Idrecep_sample_attach.Name = "gcAtt_Idrecep_sample_attach";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.btNewFile);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl2.Location = new System.Drawing.Point(0, 0);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(292, 53);
     this.groupControl2.TabIndex = 3;
     this.groupControl2.Text = "Adjuntar a partir de un archivo";
     //
     // btNewFile
     //
     this.btNewFile.AllowDrop = true;
     this.btNewFile.Appearance.Options.UseTextOptions = true;
     this.btNewFile.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btNewFile.Location = new System.Drawing.Point(5, 22);
     this.btNewFile.Name = "btNewFile";
     this.btNewFile.Size = new System.Drawing.Size(56, 25);
     this.btNewFile.TabIndex = 0;
     this.btNewFile.Text = "Nuevo";
     this.btNewFile.Click += new System.EventHandler(this.btNewFile_Click);
     //
     // tpRightProgram
     //
     this.tpRightProgram.Controls.Add(this.gcProgram);
     this.tpRightProgram.Controls.Add(this.groupControl3);
     this.tpRightProgram.Name = "tpRightProgram";
     this.tpRightProgram.PageVisible = false;
     this.tpRightProgram.Size = new System.Drawing.Size(292, 0);
     this.tpRightProgram.Text = "Programar";
     //
     // gcProgram
     //
     this.gcProgram.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcProgram.EmbeddedNavigator.Name = "";
     this.gcProgram.Location = new System.Drawing.Point(0, 53);
     this.gcProgram.MainView = this.gvProgram;
     this.gcProgram.Name = "gcProgram";
     this.gcProgram.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repProgramButton,
     this.repProgramStatus,
     this.repDateProgram,
     this.repTimeProgram});
     this.gcProgram.Size = new System.Drawing.Size(292, 0);
     this.gcProgram.TabIndex = 4;
     this.gcProgram.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvProgram});
     //
     // gvProgram
     //
     this.gvProgram.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvProgram.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.Empty.Options.UseBackColor = true;
     this.gvProgram.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvProgram.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvProgram.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvProgram.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvProgram.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvProgram.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupRow.Options.UseFont = true;
     this.gvProgram.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvProgram.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvProgram.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvProgram.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvProgram.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.OddRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.OddRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.Preview.Options.UseBackColor = true;
     this.gvProgram.Appearance.Preview.Options.UseForeColor = true;
     this.gvProgram.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.Row.Options.UseBackColor = true;
     this.gvProgram.Appearance.Row.Options.UseForeColor = true;
     this.gvProgram.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvProgram.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvProgram.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvProgram.Appearance.VertLine.Options.UseBackColor = true;
     this.gvProgram.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcProg_Idrecep_sample_program,
     this.gcProg_Order_report,
     this.gcProg_Cod_recep_sample_program,
     this.gcProg_Program_status,
     this.gridColumn6,
     this.gcProg_Date_report,
     this.gcProg_Time_report,
     this.gcProg_Str_cod_recep_sample_program});
     this.gvProgram.GridControl = this.gcProgram;
     this.gvProgram.Name = "gvProgram";
     this.gvProgram.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvProgram.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gvProgram.OptionsView.EnableAppearanceEvenRow = true;
     this.gvProgram.OptionsView.EnableAppearanceOddRow = true;
     this.gvProgram.OptionsView.ShowGroupPanel = false;
     this.gvProgram.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvProgram_RowCellStyle);
     this.gvProgram.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvProgram_InitNewRow);
     this.gvProgram.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvProgram_FocusedRowChanged);
     //
     // gcProg_Idrecep_sample_program
     //
     this.gcProg_Idrecep_sample_program.Caption = "idrecep_sample_report";
     this.gcProg_Idrecep_sample_program.FieldName = "Idrecep_sample_program";
     this.gcProg_Idrecep_sample_program.Name = "gcProg_Idrecep_sample_program";
     //
     // gcProg_Order_report
     //
     this.gcProg_Order_report.Caption = "N°";
     this.gcProg_Order_report.FieldName = "Order_report";
     this.gcProg_Order_report.Name = "gcProg_Order_report";
     this.gcProg_Order_report.OptionsColumn.AllowEdit = false;
     this.gcProg_Order_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Order_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Order_report.Visible = true;
     this.gcProg_Order_report.VisibleIndex = 0;
     this.gcProg_Order_report.Width = 23;
     //
     // gcProg_Cod_recep_sample_program
     //
     this.gcProg_Cod_recep_sample_program.Caption = "Código";
     this.gcProg_Cod_recep_sample_program.FieldName = "Cod_recep_sample_program";
     this.gcProg_Cod_recep_sample_program.Name = "gcProg_Cod_recep_sample_program";
     this.gcProg_Cod_recep_sample_program.OptionsColumn.AllowEdit = false;
     this.gcProg_Cod_recep_sample_program.Width = 63;
     //
     // gcProg_Program_status
     //
     this.gcProg_Program_status.Caption = "Estado";
     this.gcProg_Program_status.ColumnEdit = this.repProgramStatus;
     this.gcProg_Program_status.FieldName = "Program_status";
     this.gcProg_Program_status.Name = "gcProg_Program_status";
     this.gcProg_Program_status.OptionsColumn.AllowEdit = false;
     this.gcProg_Program_status.Width = 42;
     //
     // repProgramStatus
     //
     this.repProgramStatus.AutoHeight = false;
     this.repProgramStatus.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repProgramStatus.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IdStatus"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Status")});
     this.repProgramStatus.Name = "repProgramStatus";
     this.repProgramStatus.NullText = "";
     this.repProgramStatus.ShowFooter = false;
     this.repProgramStatus.ShowHeader = false;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "#";
     this.gridColumn6.ColumnEdit = this.repProgramButton;
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     this.gridColumn6.Width = 67;
     //
     // repProgramButton
     //
     this.repProgramButton.AutoHeight = false;
     this.repProgramButton.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Programar", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repProgramButton.Name = "repProgramButton";
     this.repProgramButton.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repProgramButton.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repProgramButton_ButtonClick);
     //
     // gcProg_Date_report
     //
     this.gcProg_Date_report.Caption = "Fecha";
     this.gcProg_Date_report.ColumnEdit = this.repDateProgram;
     this.gcProg_Date_report.FieldName = "Date_report";
     this.gcProg_Date_report.Name = "gcProg_Date_report";
     this.gcProg_Date_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Date_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Date_report.Visible = true;
     this.gcProg_Date_report.VisibleIndex = 2;
     this.gcProg_Date_report.Width = 67;
     //
     // repDateProgram
     //
     this.repDateProgram.AutoHeight = false;
     this.repDateProgram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDateProgram.Name = "repDateProgram";
     //
     // gcProg_Time_report
     //
     this.gcProg_Time_report.Caption = "Hora";
     this.gcProg_Time_report.ColumnEdit = this.repTimeProgram;
     this.gcProg_Time_report.FieldName = "Time_report";
     this.gcProg_Time_report.Name = "gcProg_Time_report";
     this.gcProg_Time_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Time_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Time_report.Visible = true;
     this.gcProg_Time_report.VisibleIndex = 3;
     this.gcProg_Time_report.Width = 66;
     //
     // repTimeProgram
     //
     this.repTimeProgram.AutoHeight = false;
     this.repTimeProgram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repTimeProgram.Mask.EditMask = "t";
     this.repTimeProgram.Name = "repTimeProgram";
     //
     // gcProg_Str_cod_recep_sample_program
     //
     this.gcProg_Str_cod_recep_sample_program.Caption = "Código";
     this.gcProg_Str_cod_recep_sample_program.FieldName = "Str_cod_recep_sample_program";
     this.gcProg_Str_cod_recep_sample_program.Name = "gcProg_Str_cod_recep_sample_program";
     this.gcProg_Str_cod_recep_sample_program.OptionsColumn.AllowEdit = false;
     this.gcProg_Str_cod_recep_sample_program.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Str_cod_recep_sample_program.OptionsFilter.AllowFilter = false;
     this.gcProg_Str_cod_recep_sample_program.Visible = true;
     this.gcProg_Str_cod_recep_sample_program.VisibleIndex = 1;
     this.gcProg_Str_cod_recep_sample_program.Width = 78;
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.btProgramSelection);
     this.groupControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl3.Location = new System.Drawing.Point(0, 0);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(292, 53);
     this.groupControl3.TabIndex = 3;
     this.groupControl3.Text = "Crear Informe de Ensayo";
     //
     // btProgramSelection
     //
     this.btProgramSelection.AllowDrop = true;
     this.btProgramSelection.Appearance.Options.UseTextOptions = true;
     this.btProgramSelection.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btProgramSelection.Location = new System.Drawing.Point(5, 23);
     this.btProgramSelection.Name = "btProgramSelection";
     this.btProgramSelection.Size = new System.Drawing.Size(113, 25);
     this.btProgramSelection.TabIndex = 0;
     this.btProgramSelection.Text = "Agregar selección";
     this.btProgramSelection.Click += new System.EventHandler(this.btProgramSelection_Click);
     //
     // btPrintTicket
     //
     this.btPrintTicket.FlatAppearance.BorderSize = 0;
     this.btPrintTicket.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btPrintTicket.Location = new System.Drawing.Point(729, 12);
     this.btPrintTicket.Name = "btPrintTicket";
     this.btPrintTicket.Size = new System.Drawing.Size(48, 23);
     this.btPrintTicket.TabIndex = 10;
     this.btPrintTicket.Text = "Imprimir Etiquetas";
     this.btPrintTicket.UseVisualStyleBackColor = true;
     this.btPrintTicket.Visible = false;
     this.btPrintTicket.Click += new System.EventHandler(this.btPrintTicket_Click_1);
     //
     // btDesignPrint
     //
     this.btDesignPrint.FlatAppearance.BorderSize = 0;
     this.btDesignPrint.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btDesignPrint.Location = new System.Drawing.Point(772, 9);
     this.btDesignPrint.Name = "btDesignPrint";
     this.btDesignPrint.Size = new System.Drawing.Size(69, 23);
     this.btDesignPrint.TabIndex = 10;
     this.btDesignPrint.Text = "Diseñar Etiquetas";
     this.btDesignPrint.UseVisualStyleBackColor = true;
     this.btDesignPrint.Visible = false;
     this.btDesignPrint.Click += new System.EventHandler(this.btDesignPrint_Click);
     //
     // deReception
     //
     this.deReception.EditValue = null;
     this.deReception.Location = new System.Drawing.Point(75, 5);
     this.deReception.Name = "deReception";
     this.deReception.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deReception.Properties.ReadOnly = true;
     this.deReception.Size = new System.Drawing.Size(87, 20);
     this.deReception.TabIndex = 10;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(12, 8);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(62, 13);
     this.label12.TabIndex = 9;
     this.label12.Text = "Recepción:";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(12, 50);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(47, 13);
     this.label19.TabIndex = 9;
     this.label19.Text = "Entrega:";
     //
     // deResult
     //
     this.deResult.EditValue = null;
     this.deResult.Location = new System.Drawing.Point(75, 47);
     this.deResult.Name = "deResult";
     this.deResult.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deResult.Size = new System.Drawing.Size(87, 20);
     this.deResult.TabIndex = 10;
     //
     // xtraTabControl2
     //
     this.xtraTabControl2.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl2.Appearance.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl2.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl2.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl2.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl2.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl2.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl2.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl2.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl2.Location = new System.Drawing.Point(551, 29);
     this.xtraTabControl2.Name = "xtraTabControl2";
     this.xtraTabControl2.PaintStyleName = "PropertyView";
     this.xtraTabControl2.SelectedTabPage = this.tabDateRegRecep;
     this.xtraTabControl2.Size = new System.Drawing.Size(264, 114);
     this.xtraTabControl2.TabIndex = 4;
     this.xtraTabControl2.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabDateRegRecep});
     //
     // tabDateRegRecep
     //
     this.tabDateRegRecep.Controls.Add(this.tbNumDays);
     this.tabDateRegRecep.Controls.Add(this.deHourResult);
     this.tabDateRegRecep.Controls.Add(this.deHourReception);
     this.tabDateRegRecep.Controls.Add(this.label27);
     this.tabDateRegRecep.Controls.Add(this.deReception);
     this.tabDateRegRecep.Controls.Add(this.lookUpEdit1);
     this.tabDateRegRecep.Controls.Add(this.deResult);
     this.tabDateRegRecep.Controls.Add(this.label19);
     this.tabDateRegRecep.Controls.Add(this.textEdit3);
     this.tabDateRegRecep.Controls.Add(this.label12);
     this.tabDateRegRecep.Name = "tabDateRegRecep";
     this.tabDateRegRecep.Size = new System.Drawing.Size(262, 93);
     this.tabDateRegRecep.Text = "Fechas";
     //
     // tbNumDays
     //
     this.tbNumDays.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbNumDays.Location = new System.Drawing.Point(75, 26);
     this.tbNumDays.Name = "tbNumDays";
     this.tbNumDays.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.tbNumDays.Properties.IsFloatValue = false;
     this.tbNumDays.Properties.Mask.EditMask = "N00";
     this.tbNumDays.Size = new System.Drawing.Size(42, 20);
     this.tbNumDays.TabIndex = 12;
     this.tbNumDays.EditValueChanged += new System.EventHandler(this.tbNumDays_EditValueChanged);
     //
     // deHourResult
     //
     this.deHourResult.EditValue = null;
     this.deHourResult.Location = new System.Drawing.Point(164, 47);
     this.deHourResult.Name = "deHourResult";
     this.deHourResult.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deHourResult.Properties.Mask.EditMask = "t";
     this.deHourResult.Size = new System.Drawing.Size(91, 20);
     this.deHourResult.TabIndex = 11;
     //
     // deHourReception
     //
     this.deHourReception.EditValue = null;
     this.deHourReception.Location = new System.Drawing.Point(164, 5);
     this.deHourReception.Name = "deHourReception";
     this.deHourReception.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deHourReception.Properties.Mask.EditMask = "t";
     this.deHourReception.Size = new System.Drawing.Size(91, 20);
     this.deHourReception.TabIndex = 1;
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(12, 29);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(45, 13);
     this.label27.TabIndex = 9;
     this.label27.Text = "N°Días:";
     //
     // lookUpEdit1
     //
     this.lookUpEdit1.Location = new System.Drawing.Point(452, 55);
     this.lookUpEdit1.Name = "lookUpEdit1";
     this.lookUpEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit1.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IDTypePost", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Type_Post")});
     this.lookUpEdit1.Properties.NullText = "Seleccionar";
     this.lookUpEdit1.Properties.ShowFooter = false;
     this.lookUpEdit1.Properties.ShowHeader = false;
     this.lookUpEdit1.Size = new System.Drawing.Size(100, 20);
     this.lookUpEdit1.TabIndex = 1;
     //
     // textEdit3
     //
     this.textEdit3.Location = new System.Drawing.Point(452, 9);
     this.textEdit3.Name = "textEdit3";
     this.textEdit3.Size = new System.Drawing.Size(100, 20);
     this.textEdit3.TabIndex = 3;
     //
     // btReportClient
     //
     this.btReportClient.FlatAppearance.BorderSize = 0;
     this.btReportClient.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btReportClient.Location = new System.Drawing.Point(847, 10);
     this.btReportClient.Name = "btReportClient";
     this.btReportClient.Size = new System.Drawing.Size(59, 23);
     this.btReportClient.TabIndex = 11;
     this.btReportClient.Text = "Repote por Cliente";
     this.btReportClient.UseVisualStyleBackColor = true;
     this.btReportClient.Visible = false;
     this.btReportClient.Click += new System.EventHandler(this.btReportClient_Click);
     //
     // txIdrecep_sample
     //
     this.txIdrecep_sample.Enabled = false;
     this.txIdrecep_sample.Location = new System.Drawing.Point(844, 117);
     this.txIdrecep_sample.Name = "txIdrecep_sample";
     this.txIdrecep_sample.Properties.Appearance.BackColor = System.Drawing.Color.Gainsboro;
     this.txIdrecep_sample.Properties.Appearance.Options.UseBackColor = true;
     this.txIdrecep_sample.Size = new System.Drawing.Size(100, 20);
     this.txIdrecep_sample.TabIndex = 7;
     this.txIdrecep_sample.Visible = false;
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(8, 7);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(43, 13);
     this.label25.TabIndex = 10;
     this.label25.Text = "Código:";
     //
     // cbTypeSample
     //
     this.cbTypeSample.Location = new System.Drawing.Point(93, 4);
     this.cbTypeSample.Name = "cbTypeSample";
     this.cbTypeSample.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbTypeSample.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_type_sample", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name_type_sample")});
     this.cbTypeSample.Properties.NullText = "Seleccionar";
     this.cbTypeSample.Properties.ShowFooter = false;
     this.cbTypeSample.Properties.ShowHeader = false;
     this.cbTypeSample.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cbTypeSample.Size = new System.Drawing.Size(146, 20);
     this.cbTypeSample.TabIndex = 2;
     this.cbTypeSample.EditValueChanged += new System.EventHandler(this.cbTypeSample_EditValueChanged);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(5, 7);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(86, 13);
     this.label26.TabIndex = 10;
     this.label26.Text = "Tipo de muestra:";
     //
     // ofdRecepFileAttach
     //
     this.ofdRecepFileAttach.FileName = "openFileDialog1";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(834, 41);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(110, 13);
     this.label14.TabIndex = 9;
     this.label14.Text = "gastos administrativos";
     this.label14.Visible = false;
     //
     // tbAdministrativeExpense
     //
     this.tbAdministrativeExpense.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbAdministrativeExpense.Location = new System.Drawing.Point(837, 57);
     this.tbAdministrativeExpense.Name = "tbAdministrativeExpense";
     this.tbAdministrativeExpense.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.tbAdministrativeExpense.Size = new System.Drawing.Size(107, 20);
     this.tbAdministrativeExpense.TabIndex = 11;
     this.tbAdministrativeExpense.Visible = false;
     //
     // tbCod_recep_sample
     //
     this.tbCod_recep_sample.Location = new System.Drawing.Point(55, 4);
     this.tbCod_recep_sample.Name = "tbCod_recep_sample";
     this.tbCod_recep_sample.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.tbCod_recep_sample.Properties.Appearance.Options.UseBackColor = true;
     this.tbCod_recep_sample.Properties.ReadOnly = true;
     this.tbCod_recep_sample.Size = new System.Drawing.Size(100, 20);
     this.tbCod_recep_sample.TabIndex = 7;
     //
     // ucSignReception
     //
     this.ucSignReception.Location = new System.Drawing.Point(11, 2);
     this.ucSignReception.Margin = new System.Windows.Forms.Padding(0);
     this.ucSignReception.Name = "ucSignReception";
     this.ucSignReception.Pwd = null;
     this.ucSignReception.Size = new System.Drawing.Size(158, 40);
     this.ucSignReception.TabIndex = 16;
     this.ucSignReception.Title = "Guardar";
     this.ucSignReception.OnSign += new LimsProject.sign(this.ucSign1_OnSign);
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.panel9);
     this.panelControl1.Controls.Add(this.xtraTabControl2);
     this.panelControl1.Controls.Add(this.tbAdministrativeExpense);
     this.panelControl1.Controls.Add(this.label14);
     this.panelControl1.Controls.Add(this.xtraTabControl1);
     this.panelControl1.Controls.Add(this.txIdrecep_sample);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(999, 146);
     this.panelControl1.TabIndex = 12;
     this.panelControl1.Text = "panelControl1";
     //
     // panel9
     //
     this.panel9.Controls.Add(this.panel11);
     this.panel9.Location = new System.Drawing.Point(13, 3);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(701, 27);
     this.panel9.TabIndex = 12;
     //
     // panel11
     //
     this.panel11.Controls.Add(this.paTypeSample);
     this.panel11.Controls.Add(this.paCodRegisterRecep);
     this.panel11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel11.Location = new System.Drawing.Point(0, 0);
     this.panel11.Name = "panel11";
     this.panel11.Size = new System.Drawing.Size(701, 27);
     this.panel11.TabIndex = 1;
     //
     // paTypeSample
     //
     this.paTypeSample.Controls.Add(this.cbTypeSample);
     this.paTypeSample.Controls.Add(this.label26);
     this.paTypeSample.Dock = System.Windows.Forms.DockStyle.Left;
     this.paTypeSample.Location = new System.Drawing.Point(167, 0);
     this.paTypeSample.Name = "paTypeSample";
     this.paTypeSample.Size = new System.Drawing.Size(257, 27);
     this.paTypeSample.TabIndex = 12;
     //
     // paCodRegisterRecep
     //
     this.paCodRegisterRecep.Controls.Add(this.tbCod_recep_sample);
     this.paCodRegisterRecep.Controls.Add(this.label25);
     this.paCodRegisterRecep.Dock = System.Windows.Forms.DockStyle.Left;
     this.paCodRegisterRecep.Location = new System.Drawing.Point(0, 0);
     this.paCodRegisterRecep.Name = "paCodRegisterRecep";
     this.paCodRegisterRecep.Size = new System.Drawing.Size(167, 27);
     this.paCodRegisterRecep.TabIndex = 11;
     //
     // ucTitleRegisterRecep
     //
     this.ucTitleRegisterRecep.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ucTitleRegisterRecep.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucTitleRegisterRecep.Location = new System.Drawing.Point(0, 0);
     this.ucTitleRegisterRecep.Name = "ucTitleRegisterRecep";
     this.ucTitleRegisterRecep.Size = new System.Drawing.Size(999, 27);
     this.ucTitleRegisterRecep.TabIndex = 8;
     this.ucTitleRegisterRecep.Title = "Title";
     //
     // ucToolStrip1
     //
     this.ucToolStrip1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ucToolStrip1.Location = new System.Drawing.Point(0, 0);
     this.ucToolStrip1.Name = "ucToolStrip1";
     this.ucToolStrip1.Size = new System.Drawing.Size(1013, 25);
     this.ucToolStrip1.TabIndex = 0;
     this.ucToolStrip1.onFind += new LimsProject.Find(this.ucToolStrip1_onFind);
     this.ucToolStrip1.onNew += new LimsProject.New(this.ucToolStrip1_onNew);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(192, 26);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(191, 22);
     this.toolStripMenuItem1.Text = "Registro de Recepción";
     //
     // ucGenerarA
     //
     this.ucGenerarA.Location = new System.Drawing.Point(476, 9);
     this.ucGenerarA.Margin = new System.Windows.Forms.Padding(0);
     this.ucGenerarA.Name = "ucGenerarA";
     this.ucGenerarA.Size = new System.Drawing.Size(90, 30);
     this.ucGenerarA.TabIndex = 19;
     this.ucGenerarA.Title = "Generar a";
     this.ucGenerarA.onSelectedIndex += new LimsProject.SelectedIndex(this.ucGenerarA_onSelectedIndex);
     //
     // ucGenerarDesde
     //
     this.ucGenerarDesde.Location = new System.Drawing.Point(580, 9);
     this.ucGenerarDesde.Margin = new System.Windows.Forms.Padding(0);
     this.ucGenerarDesde.Name = "ucGenerarDesde";
     this.ucGenerarDesde.Size = new System.Drawing.Size(90, 30);
     this.ucGenerarDesde.TabIndex = 19;
     this.ucGenerarDesde.Title = "Generar desde";
     this.ucGenerarDesde.onSelectedIndex += new LimsProject.SelectedIndex(this.ucGenerarDesde_onSelectedIndex);
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.xtraTabControl3);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 0);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(999, 383);
     this.panelControl2.TabIndex = 3;
     this.panelControl2.Text = "panelControl2";
     //
     // xtraTabControl3
     //
     this.xtraTabControl3.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl3.Appearance.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl3.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl3.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl3.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl3.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl3.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl3.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl3.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl3.Location = new System.Drawing.Point(2, 2);
     this.xtraTabControl3.Name = "xtraTabControl3";
     this.xtraTabControl3.PaintStyleName = "PropertyView";
     this.xtraTabControl3.SelectedTabPage = this.tpMuestras;
     this.xtraTabControl3.Size = new System.Drawing.Size(995, 379);
     this.xtraTabControl3.TabIndex = 4;
     this.xtraTabControl3.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tpMuestras,
     this.tpAnexos,
     this.tpReject,
     this.tpDecree});
     //
     // tpMuestras
     //
     this.tpMuestras.Controls.Add(this.gcReception);
     this.tpMuestras.Controls.Add(this.panelControl7);
     this.tpMuestras.Controls.Add(this.expandablePanel1);
     this.tpMuestras.Name = "tpMuestras";
     this.tpMuestras.Size = new System.Drawing.Size(993, 358);
     this.tpMuestras.Text = "Muestras";
     //
     // panelControl7
     //
     this.panelControl7.Controls.Add(this.panel7);
     this.panelControl7.Controls.Add(this.panel5);
     this.panelControl7.Controls.Add(this.gcShowColumns);
     this.panelControl7.Controls.Add(this.tbAmortization);
     this.panelControl7.Controls.Add(this.label10);
     this.panelControl7.Controls.Add(this.tbResidue);
     this.panelControl7.Controls.Add(this.label13);
     this.panelControl7.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl7.Location = new System.Drawing.Point(0, 288);
     this.panelControl7.Name = "panelControl7";
     this.panelControl7.Size = new System.Drawing.Size(699, 70);
     this.panelControl7.TabIndex = 3;
     this.panelControl7.Text = "panelControl7";
     //
     // tpAnexos
     //
     this.tpAnexos.Controls.Add(this.checkEdit8);
     this.tpAnexos.Controls.Add(this.memoEdit1);
     this.tpAnexos.Controls.Add(this.checkEdit7);
     this.tpAnexos.Controls.Add(this.groupControl4);
     this.tpAnexos.Controls.Add(this.textEdit5);
     this.tpAnexos.Controls.Add(this.label21);
     this.tpAnexos.Controls.Add(this.label18);
     this.tpAnexos.Name = "tpAnexos";
     this.tpAnexos.Size = new System.Drawing.Size(520, 0);
     this.tpAnexos.Text = "Anexos";
     //
     // checkEdit8
     //
     this.checkEdit8.Location = new System.Drawing.Point(169, 35);
     this.checkEdit8.Name = "checkEdit8";
     this.checkEdit8.Properties.Caption = "Muestras de composito";
     this.checkEdit8.Size = new System.Drawing.Size(139, 18);
     this.checkEdit8.TabIndex = 12;
     //
     // memoEdit1
     //
     this.memoEdit1.Location = new System.Drawing.Point(105, 63);
     this.memoEdit1.Name = "memoEdit1";
     this.memoEdit1.Size = new System.Drawing.Size(548, 54);
     this.memoEdit1.TabIndex = 2;
     //
     // checkEdit7
     //
     this.checkEdit7.Location = new System.Drawing.Point(24, 35);
     this.checkEdit7.Name = "checkEdit7";
     this.checkEdit7.Properties.Caption = "Muestras puntuales";
     this.checkEdit7.Size = new System.Drawing.Size(139, 18);
     this.checkEdit7.TabIndex = 12;
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.textEdit2);
     this.groupControl4.Controls.Add(this.timeEdit1);
     this.groupControl4.Controls.Add(this.label17);
     this.groupControl4.Controls.Add(this.label16);
     this.groupControl4.Controls.Add(this.label15);
     this.groupControl4.Controls.Add(this.dateEdit1);
     this.groupControl4.Controls.Add(this.checkEdit6);
     this.groupControl4.Controls.Add(this.checkEdit5);
     this.groupControl4.Controls.Add(this.checkEdit4);
     this.groupControl4.Controls.Add(this.checkEdit3);
     this.groupControl4.Controls.Add(this.checkEdit2);
     this.groupControl4.Controls.Add(this.checkEdit1);
     this.groupControl4.Location = new System.Drawing.Point(8, 130);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(645, 196);
     this.groupControl4.TabIndex = 1;
     this.groupControl4.Text = "Campos a llenar al recepcionar las muestras";
     //
     // textEdit2
     //
     this.textEdit2.Location = new System.Drawing.Point(161, 163);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Size = new System.Drawing.Size(196, 20);
     this.textEdit2.TabIndex = 4;
     //
     // timeEdit1
     //
     this.timeEdit1.EditValue = new System.DateTime(2013, 8, 7, 0, 0, 0, 0);
     this.timeEdit1.Location = new System.Drawing.Point(161, 138);
     this.timeEdit1.Name = "timeEdit1";
     this.timeEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.timeEdit1.Size = new System.Drawing.Size(100, 20);
     this.timeEdit1.TabIndex = 3;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(23, 166);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(133, 13);
     this.label17.TabIndex = 2;
     this.label17.Text = "Condiciones de transporte:";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(23, 141);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(98, 13);
     this.label16.TabIndex = 2;
     this.label16.Text = "Hora de recepción:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(23, 116);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(105, 13);
     this.label15.TabIndex = 2;
     this.label15.Text = "Fecha de recepción:";
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location = new System.Drawing.Point(161, 113);
     this.dateEdit1.Name = "dateEdit1";
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Size = new System.Drawing.Size(100, 20);
     this.dateEdit1.TabIndex = 1;
     //
     // checkEdit6
     //
     this.checkEdit6.Location = new System.Drawing.Point(201, 73);
     this.checkEdit6.Name = "checkEdit6";
     this.checkEdit6.Properties.Caption = "Duplicado";
     this.checkEdit6.Size = new System.Drawing.Size(75, 18);
     this.checkEdit6.TabIndex = 0;
     //
     // checkEdit5
     //
     this.checkEdit5.Location = new System.Drawing.Point(201, 48);
     this.checkEdit5.Name = "checkEdit5";
     this.checkEdit5.Properties.Caption = "Blanco muestreo";
     this.checkEdit5.Size = new System.Drawing.Size(112, 18);
     this.checkEdit5.TabIndex = 0;
     //
     // checkEdit4
     //
     this.checkEdit4.Location = new System.Drawing.Point(201, 23);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "Blanco viajero";
     this.checkEdit4.Size = new System.Drawing.Size(98, 18);
     this.checkEdit4.TabIndex = 0;
     //
     // checkEdit3
     //
     this.checkEdit3.Location = new System.Drawing.Point(26, 73);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "Conservación de muestras";
     this.checkEdit3.Size = new System.Drawing.Size(160, 18);
     this.checkEdit3.TabIndex = 0;
     //
     // checkEdit2
     //
     this.checkEdit2.Location = new System.Drawing.Point(26, 48);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "Muestras recibidas intactas";
     this.checkEdit2.Size = new System.Drawing.Size(160, 18);
     this.checkEdit2.TabIndex = 0;
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(26, 23);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "Recipiente adecuado";
     this.checkEdit1.Size = new System.Drawing.Size(128, 18);
     this.checkEdit1.TabIndex = 0;
     //
     // textEdit5
     //
     this.textEdit5.Location = new System.Drawing.Point(79, 10);
     this.textEdit5.Name = "textEdit5";
     this.textEdit5.Size = new System.Drawing.Size(358, 20);
     this.textEdit5.TabIndex = 10;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(21, 13);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(52, 13);
     this.label21.TabIndex = 11;
     this.label21.Text = "Proyecto:";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(18, 74);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(81, 13);
     this.label18.TabIndex = 2;
     this.label18.Text = "Observaciones:";
     //
     // tpReject
     //
     this.tpReject.Controls.Add(this.memoEdit2);
     this.tpReject.Controls.Add(this.label20);
     this.tpReject.Controls.Add(this.gcRejection);
     this.tpReject.Name = "tpReject";
     this.tpReject.Size = new System.Drawing.Size(520, 0);
     this.tpReject.Text = "Rechazos";
     //
     // memoEdit2
     //
     this.memoEdit2.Location = new System.Drawing.Point(116, 288);
     this.memoEdit2.Name = "memoEdit2";
     this.memoEdit2.Size = new System.Drawing.Size(529, 50);
     this.memoEdit2.TabIndex = 2;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(20, 299);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(90, 13);
     this.label20.TabIndex = 1;
     this.label20.Text = "Especificaciones:";
     //
     // gcRejection
     //
     this.gcRejection.EmbeddedNavigator.Name = "";
     this.gcRejection.Location = new System.Drawing.Point(21, 13);
     this.gcRejection.MainView = this.bandedGridView1;
     this.gcRejection.Name = "gcRejection";
     this.gcRejection.Size = new System.Drawing.Size(624, 251);
     this.gcRejection.TabIndex = 0;
     this.gcRejection.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.bandedGridView1});
     //
     // bandedGridView1
     //
     this.bandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand2});
     this.bandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.gcRej_Code,
     this.gcRej_NameSample,
     this.gcRej_Date,
     this.gcRej_Hora,
     this.gcRej_Obs,
     this.gcRej_C1,
     this.gcRej_C2,
     this.gcRej_C3,
     this.gcRej_C4});
     this.bandedGridView1.GridControl = this.gcRejection;
     this.bandedGridView1.Name = "bandedGridView1";
     this.bandedGridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridBand1
     //
     this.gridBand1.Columns.Add(this.gcRej_Code);
     this.gridBand1.Columns.Add(this.gcRej_NameSample);
     this.gridBand1.Columns.Add(this.gcRej_Date);
     this.gridBand1.Columns.Add(this.gcRej_Hora);
     this.gridBand1.Columns.Add(this.gcRej_Obs);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 629;
     //
     // gcRej_Code
     //
     this.gcRej_Code.Caption = "Codigo";
     this.gcRej_Code.Name = "gcRej_Code";
     this.gcRej_Code.Visible = true;
     //
     // gcRej_NameSample
     //
     this.gcRej_NameSample.Caption = "Nombre de muestra";
     this.gcRej_NameSample.Name = "gcRej_NameSample";
     this.gcRej_NameSample.Visible = true;
     this.gcRej_NameSample.Width = 204;
     //
     // gcRej_Date
     //
     this.gcRej_Date.Caption = "Fecha";
     this.gcRej_Date.Name = "gcRej_Date";
     this.gcRej_Date.Visible = true;
     //
     // gcRej_Hora
     //
     this.gcRej_Hora.Caption = "Hora";
     this.gcRej_Hora.Name = "gcRej_Hora";
     this.gcRej_Hora.Visible = true;
     //
     // gcRej_Obs
     //
     this.gcRej_Obs.Caption = "Ensayos rechazados";
     this.gcRej_Obs.Name = "gcRej_Obs";
     this.gcRej_Obs.Visible = true;
     this.gcRej_Obs.Width = 200;
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "Criterio";
     this.gridBand2.Columns.Add(this.gcRej_C1);
     this.gridBand2.Columns.Add(this.gcRej_C2);
     this.gridBand2.Columns.Add(this.gcRej_C3);
     this.gridBand2.Columns.Add(this.gcRej_C4);
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.Width = 150;
     //
     // gcRej_C1
     //
     this.gcRej_C1.Caption = "1";
     this.gcRej_C1.Name = "gcRej_C1";
     this.gcRej_C1.Visible = true;
     this.gcRej_C1.Width = 36;
     //
     // gcRej_C2
     //
     this.gcRej_C2.Caption = "2";
     this.gcRej_C2.Name = "gcRej_C2";
     this.gcRej_C2.Visible = true;
     this.gcRej_C2.Width = 36;
     //
     // gcRej_C3
     //
     this.gcRej_C3.Caption = "3";
     this.gcRej_C3.Name = "gcRej_C3";
     this.gcRej_C3.Visible = true;
     this.gcRej_C3.Width = 36;
     //
     // gcRej_C4
     //
     this.gcRej_C4.Caption = "4";
     this.gcRej_C4.Name = "gcRej_C4";
     this.gcRej_C4.Visible = true;
     this.gcRej_C4.Width = 42;
     //
     // tpDecree
     //
     this.tpDecree.Controls.Add(this.panelControl4);
     this.tpDecree.Controls.Add(this.panelControl3);
     this.tpDecree.Name = "tpDecree";
     this.tpDecree.Size = new System.Drawing.Size(520, 0);
     this.tpDecree.Text = "Decretos - Resultados";
     //
     // panelControl4
     //
     this.panelControl4.Controls.Add(this.xtraTabControl4);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl4.Location = new System.Drawing.Point(0, 30);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Padding = new System.Windows.Forms.Padding(10);
     this.panelControl4.Size = new System.Drawing.Size(520, 0);
     this.panelControl4.TabIndex = 11;
     this.panelControl4.Text = "panelControl4";
     //
     // xtraTabControl4
     //
     this.xtraTabControl4.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl4.Appearance.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl4.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl4.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl4.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl4.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl4.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl4.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl4.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl4.Location = new System.Drawing.Point(12, 11);
     this.xtraTabControl4.Margin = new System.Windows.Forms.Padding(10);
     this.xtraTabControl4.Name = "xtraTabControl4";
     this.xtraTabControl4.PaintStyleName = "PropertyView";
     this.xtraTabControl4.SelectedTabPage = this.xtraTabPage4;
     this.xtraTabControl4.Size = new System.Drawing.Size(496, 0);
     this.xtraTabControl4.TabIndex = 5;
     this.xtraTabControl4.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage4,
     this.xtraTabPage5,
     this.xtraTabPage7});
     this.xtraTabControl4.Text = "Anexos";
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.gridDecretos);
     this.xtraTabPage4.Controls.Add(this.panelControl5);
     this.xtraTabPage4.Controls.Add(this.panelControl6);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(494, 0);
     this.xtraTabPage4.Text = "AG-03-00001 - NTP N° 214.003";
     //
     // gridDecretos
     //
     this.gridDecretos.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridDecretos.EmbeddedNavigator.Name = "";
     this.gridDecretos.Location = new System.Drawing.Point(0, 61);
     this.gridDecretos.MainView = this.gridView1;
     this.gridDecretos.Name = "gridDecretos";
     this.gridDecretos.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repCriterio,
     this.repUnidadMedida,
     this.repMetodo});
     this.gridDecretos.Size = new System.Drawing.Size(494, 0);
     this.gridDecretos.TabIndex = 2;
     this.gridDecretos.UseEmbeddedNavigator = true;
     this.gridDecretos.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcDec_Idmetodo,
     this.gcDec_Parametro,
     this.gcDec_Unidad_medida,
     this.gcDec_Result,
     this.gcDec_Criterio,
     this.gcDec_Valor1,
     this.gcDec_Valor2,
     this.gcDec_Conclusion});
     this.gridView1.GridControl = this.gridDecretos;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gcDec_Idmetodo
     //
     this.gcDec_Idmetodo.Caption = "Método";
     this.gcDec_Idmetodo.ColumnEdit = this.repMetodo;
     this.gcDec_Idmetodo.FieldName = "Idmetodo";
     this.gcDec_Idmetodo.Name = "gcDec_Idmetodo";
     this.gcDec_Idmetodo.Visible = true;
     this.gcDec_Idmetodo.VisibleIndex = 0;
     //
     // repMetodo
     //
     this.repMetodo.AutoHeight = false;
     this.repMetodo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repMetodo.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idmetodo", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre")});
     this.repMetodo.Name = "repMetodo";
     this.repMetodo.NullText = "";
     this.repMetodo.ShowFooter = false;
     this.repMetodo.ShowHeader = false;
     //
     // gcDec_Parametro
     //
     this.gcDec_Parametro.Caption = "Parametro";
     this.gcDec_Parametro.FieldName = "Parametro";
     this.gcDec_Parametro.Name = "gcDec_Parametro";
     this.gcDec_Parametro.Visible = true;
     this.gcDec_Parametro.VisibleIndex = 1;
     //
     // gcDec_Unidad_medida
     //
     this.gcDec_Unidad_medida.Caption = "Unidad_medida";
     this.gcDec_Unidad_medida.ColumnEdit = this.repUnidadMedida;
     this.gcDec_Unidad_medida.FieldName = "Unidad_medida";
     this.gcDec_Unidad_medida.Name = "gcDec_Unidad_medida";
     this.gcDec_Unidad_medida.Visible = true;
     this.gcDec_Unidad_medida.VisibleIndex = 2;
     //
     // repUnidadMedida
     //
     this.repUnidadMedida.AutoHeight = false;
     this.repUnidadMedida.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repUnidadMedida.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None)});
     this.repUnidadMedida.Name = "repUnidadMedida";
     this.repUnidadMedida.NullText = "";
     this.repUnidadMedida.ShowFooter = false;
     this.repUnidadMedida.ShowHeader = false;
     //
     // gcDec_Result
     //
     this.gcDec_Result.Caption = "Resultado";
     this.gcDec_Result.FieldName = "Result";
     this.gcDec_Result.Name = "gcDec_Result";
     this.gcDec_Result.Visible = true;
     this.gcDec_Result.VisibleIndex = 3;
     //
     // gcDec_Criterio
     //
     this.gcDec_Criterio.Caption = "Condición";
     this.gcDec_Criterio.ColumnEdit = this.repCriterio;
     this.gcDec_Criterio.FieldName = "Criterio";
     this.gcDec_Criterio.Name = "gcDec_Criterio";
     this.gcDec_Criterio.Visible = true;
     this.gcDec_Criterio.VisibleIndex = 4;
     //
     // repCriterio
     //
     this.repCriterio.AutoHeight = false;
     this.repCriterio.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repCriterio.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idcriterio", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre_criterio")});
     this.repCriterio.Name = "repCriterio";
     this.repCriterio.NullText = "";
     this.repCriterio.ShowFooter = false;
     this.repCriterio.ShowHeader = false;
     //
     // gcDec_Valor1
     //
     this.gcDec_Valor1.Caption = "Valor1";
     this.gcDec_Valor1.FieldName = "Valor1";
     this.gcDec_Valor1.Name = "gcDec_Valor1";
     this.gcDec_Valor1.Visible = true;
     this.gcDec_Valor1.VisibleIndex = 5;
     //
     // gcDec_Valor2
     //
     this.gcDec_Valor2.Caption = "Valor2";
     this.gcDec_Valor2.FieldName = "Valor2";
     this.gcDec_Valor2.Name = "gcDec_Valor2";
     this.gcDec_Valor2.Visible = true;
     this.gcDec_Valor2.VisibleIndex = 6;
     //
     // gcDec_Conclusion
     //
     this.gcDec_Conclusion.Caption = "Conclusion";
     this.gcDec_Conclusion.FieldName = "Conclusion";
     this.gcDec_Conclusion.Name = "gcDec_Conclusion";
     this.gcDec_Conclusion.Visible = true;
     this.gcDec_Conclusion.VisibleIndex = 7;
     //
     // panelControl5
     //
     this.panelControl5.Controls.Add(this.memoEdit3);
     this.panelControl5.Controls.Add(this.label23);
     this.panelControl5.Controls.Add(this.label24);
     this.panelControl5.Controls.Add(this.label29);
     this.panelControl5.Controls.Add(this.textEdit4);
     this.panelControl5.Controls.Add(this.textEdit6);
     this.panelControl5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl5.Location = new System.Drawing.Point(0, 0);
     this.panelControl5.Name = "panelControl5";
     this.panelControl5.Size = new System.Drawing.Size(494, 61);
     this.panelControl5.TabIndex = 0;
     this.panelControl5.Text = "panelControl5";
     //
     // memoEdit3
     //
     this.memoEdit3.EditValue = resources.GetString("memoEdit3.EditValue");
     this.memoEdit3.Location = new System.Drawing.Point(426, 7);
     this.memoEdit3.Name = "memoEdit3";
     this.memoEdit3.Size = new System.Drawing.Size(523, 46);
     this.memoEdit3.TabIndex = 8;
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(355, 9);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(66, 13);
     this.label23.TabIndex = 5;
     this.label23.Text = "Descripción:";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(9, 9);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(43, 13);
     this.label24.TabIndex = 6;
     this.label24.Text = "Codigo:";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(9, 30);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(75, 13);
     this.label29.TabIndex = 7;
     this.label29.Text = "Denominación";
     //
     // textEdit4
     //
     this.textEdit4.EditValue = "DEC-13-001";
     this.textEdit4.Location = new System.Drawing.Point(90, 6);
     this.textEdit4.Name = "textEdit4";
     this.textEdit4.Size = new System.Drawing.Size(107, 20);
     this.textEdit4.TabIndex = 3;
     //
     // textEdit6
     //
     this.textEdit6.EditValue = "NTP N° 214.003";
     this.textEdit6.Location = new System.Drawing.Point(90, 27);
     this.textEdit6.Name = "textEdit6";
     this.textEdit6.Size = new System.Drawing.Size(230, 20);
     this.textEdit6.TabIndex = 4;
     //
     // panelControl6
     //
     this.panelControl6.Controls.Add(this.memoEdit4);
     this.panelControl6.Controls.Add(this.label22);
     this.panelControl6.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl6.Location = new System.Drawing.Point(0, -49);
     this.panelControl6.Name = "panelControl6";
     this.panelControl6.Size = new System.Drawing.Size(494, 49);
     this.panelControl6.TabIndex = 3;
     this.panelControl6.Text = "panelControl6";
     //
     // memoEdit4
     //
     this.memoEdit4.EditValue = "CUMPLE, NO CUMPLE, BLA BLA BLA";
     this.memoEdit4.Location = new System.Drawing.Point(77, 4);
     this.memoEdit4.Name = "memoEdit4";
     this.memoEdit4.Size = new System.Drawing.Size(872, 40);
     this.memoEdit4.TabIndex = 8;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(9, 9);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(62, 13);
     this.label22.TabIndex = 5;
     this.label22.Text = "Conclusión:";
     //
     // xtraTabPage5
     //
     this.xtraTabPage5.Name = "xtraTabPage5";
     this.xtraTabPage5.Size = new System.Drawing.Size(494, -21);
     this.xtraTabPage5.Text = "AG-03-00001 - D.S. N° 031-2010";
     //
     // xtraTabPage7
     //
     this.xtraTabPage7.Name = "xtraTabPage7";
     this.xtraTabPage7.Size = new System.Drawing.Size(494, -21);
     this.xtraTabPage7.Text = "AG-03-00001 - D.S. N° 002-2008";
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.lookUpEdit2);
     this.panelControl3.Controls.Add(this.label31);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(520, 30);
     this.panelControl3.TabIndex = 10;
     this.panelControl3.Text = "panelControl3";
     //
     // lookUpEdit2
     //
     this.lookUpEdit2.Location = new System.Drawing.Point(86, 5);
     this.lookUpEdit2.Name = "lookUpEdit2";
     this.lookUpEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit2.Properties.NullText = "AG-03-00001";
     this.lookUpEdit2.Size = new System.Drawing.Size(144, 20);
     this.lookUpEdit2.TabIndex = 10;
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(32, 8);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(48, 13);
     this.label31.TabIndex = 9;
     this.label31.Text = "Muestra:";
     //
     // FormReception
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1013, 662);
     this.Name = "FormReception";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Recepción de Muestras";
     this.Controls.SetChildIndex(this.paSupBotones, 0);
     this.Controls.SetChildIndex(this.thePanelTab1, 0);
     this.paTitleSearch.ResumeLayout(false);
     this.paTopBasicButtons.ResumeLayout(false);
     this.paTopSearch.ResumeLayout(false);
     this.paBottomSearch.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.paSearchGen.ResumeLayout(false);
     this.paSearchGen.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.paInferior.ResumeLayout(false);
     this.paTitulo.ResumeLayout(false);
     this.paCentral.ResumeLayout(false);
     this.paSuperior.ResumeLayout(false);
     this.thePanelTab1.ResumeLayout(false);
     this.tpDatos.ResumeLayout(false);
     this.paSupBotones.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcShowColumns)).EndInit();
     this.gcShowColumns.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).EndInit();
     this.panel7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tbResidue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmortization.Properties)).EndInit();
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalIgv.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSubTotalAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcReception)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReception)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDescription)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repEnvelope_sealed)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSelect)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repResult)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSendReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repLink)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDesLink)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSample)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     this.xtraTabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbFax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientPhone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientRuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientDomicile.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).EndInit();
     this.xtraTabPage6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPerson_type)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPhone)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCellPhone)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNum)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchFax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchPerson.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchTransport.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchCurier.Properties)).EndInit();
     this.expandablePanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabOptionRight)).EndInit();
     this.tabOptionRight.ResumeLayout(false);
     this.tpRightMethods.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcMethods)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMethods)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAddColumn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     this.tpRightReports.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repStatusReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repReportOption)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTypeReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.tpRightAttach.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcAttachFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAttachFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_file)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_status)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repButtons)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.tpRightProgram.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramButton)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.deReception.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deResult.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).EndInit();
     this.xtraTabControl2.ResumeLayout(false);
     this.tabDateRegRecep.ResumeLayout(false);
     this.tabDateRegRecep.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbNumDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourResult.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourReception.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txIdrecep_sample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAdministrativeExpense.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCod_recep_sample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     this.panel9.ResumeLayout(false);
     this.panel11.ResumeLayout(false);
     this.paTypeSample.ResumeLayout(false);
     this.paTypeSample.PerformLayout();
     this.paCodRegisterRecep.ResumeLayout(false);
     this.paCodRegisterRecep.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl3)).EndInit();
     this.xtraTabControl3.ResumeLayout(false);
     this.tpMuestras.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
     this.panelControl7.ResumeLayout(false);
     this.panelControl7.PerformLayout();
     this.tpAnexos.ResumeLayout(false);
     this.tpAnexos.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).EndInit();
     this.tpReject.ResumeLayout(false);
     this.tpReject.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcRejection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).EndInit();
     this.tpDecree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl4)).EndInit();
     this.xtraTabControl4.ResumeLayout(false);
     this.xtraTabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridDecretos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repMetodo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repUnidadMedida)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCriterio)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
     this.panelControl5.ResumeLayout(false);
     this.panelControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
     this.panelControl6.ResumeLayout(false);
     this.panelControl6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.panelControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
            this.colorEdit1 = new DevExpress.XtraEditors.ColorEdit();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
            this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
            this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
            this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
            this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
            this.gridControl1 = new DevExpress.XtraGrid.GridControl();
            this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colZoneId = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colZoneName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemLookUpEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            this.repositoryItemCalcEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
            this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
            this.xtraScrollableControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.colorEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
            this.panelControl3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
            this.groupControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
            this.groupControl3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
            this.splitContainerControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
            this.panelControl2.SuspendLayout();
            this.SuspendLayout();
            //
            // xtraScrollableControl1
            //
            this.xtraScrollableControl1.Controls.Add(this.colorEdit1);
            this.xtraScrollableControl1.Controls.Add(this.labelControl1);
            this.xtraScrollableControl1.Controls.Add(this.simpleButton2);
            this.xtraScrollableControl1.Controls.Add(this.simpleButton1);
            this.xtraScrollableControl1.Controls.Add(this.labelControl4);
            this.xtraScrollableControl1.Controls.Add(this.labelControl5);
            this.xtraScrollableControl1.Controls.Add(this.textEdit1);
            this.xtraScrollableControl1.Controls.Add(this.textEdit2);
            this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraScrollableControl1.Location = new System.Drawing.Point(2, 22);
            this.xtraScrollableControl1.Name = "xtraScrollableControl1";
            this.xtraScrollableControl1.Size = new System.Drawing.Size(820, 680);
            this.xtraScrollableControl1.TabIndex = 0;
            //
            // colorEdit1
            //
            this.colorEdit1.EditValue = System.Drawing.Color.WhiteSmoke;
            this.colorEdit1.Location = new System.Drawing.Point(72, 84);
            this.colorEdit1.Name = "colorEdit1";
            this.colorEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.colorEdit1.Size = new System.Drawing.Size(162, 20);
            this.colorEdit1.TabIndex = 22;
            //
            // labelControl1
            //
            this.labelControl1.Location = new System.Drawing.Point(31, 87);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(34, 13);
            this.labelControl1.TabIndex = 21;
            this.labelControl1.Text = "แถบสี :";
            //
            // simpleButton2
            //
            this.simpleButton2.Location = new System.Drawing.Point(71, 123);
            this.simpleButton2.Name = "simpleButton2";
            this.simpleButton2.Size = new System.Drawing.Size(75, 24);
            this.simpleButton2.TabIndex = 17;
            this.simpleButton2.Text = "บันทึก";
            //
            // simpleButton1
            //
            this.simpleButton1.Location = new System.Drawing.Point(159, 123);
            this.simpleButton1.Name = "simpleButton1";
            this.simpleButton1.Size = new System.Drawing.Size(75, 24);
            this.simpleButton1.TabIndex = 16;
            this.simpleButton1.Text = "ยกเลิก";
            //
            // labelControl4
            //
            this.labelControl4.Location = new System.Drawing.Point(19, 19);
            this.labelControl4.Name = "labelControl4";
            this.labelControl4.Size = new System.Drawing.Size(46, 13);
            this.labelControl4.TabIndex = 20;
            this.labelControl4.Text = "รหัสโซน :";
            //
            // labelControl5
            //
            this.labelControl5.Location = new System.Drawing.Point(24, 53);
            this.labelControl5.Name = "labelControl5";
            this.labelControl5.Size = new System.Drawing.Size(41, 13);
            this.labelControl5.TabIndex = 15;
            this.labelControl5.Text = "ชื่อโซน :";
            //
            // textEdit1
            //
            this.textEdit1.Location = new System.Drawing.Point(71, 50);
            this.textEdit1.Name = "textEdit1";
            this.textEdit1.Size = new System.Drawing.Size(163, 20);
            this.textEdit1.TabIndex = 19;
            //
            // textEdit2
            //
            this.textEdit2.Location = new System.Drawing.Point(71, 16);
            this.textEdit2.Name = "textEdit2";
            this.textEdit2.Size = new System.Drawing.Size(163, 20);
            this.textEdit2.TabIndex = 18;
            //
            // panelControl3
            //
            this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl3.Controls.Add(this.groupControl1);
            this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelControl3.Location = new System.Drawing.Point(0, 0);
            this.panelControl3.Name = "panelControl3";
            this.panelControl3.Size = new System.Drawing.Size(824, 704);
            this.panelControl3.TabIndex = 12;
            //
            // groupControl1
            //
            this.groupControl1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.groupControl1.AppearanceCaption.Options.UseFont = true;
            this.groupControl1.Controls.Add(this.xtraScrollableControl1);
            this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl1.Location = new System.Drawing.Point(0, 0);
            this.groupControl1.Name = "groupControl1";
            this.groupControl1.Size = new System.Drawing.Size(824, 704);
            this.groupControl1.TabIndex = 3;
            this.groupControl1.Text = "ข้อมูลโซน";
            //
            // panelControl1
            //
            this.panelControl1.Appearance.BackColor = System.Drawing.Color.DarkGray;
            this.panelControl1.Appearance.Options.UseBackColor = true;
            this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelControl1.Location = new System.Drawing.Point(0, 704);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(824, 26);
            this.panelControl1.TabIndex = 11;
            //
            // splitContainerControl1
            //
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Text = "Panel1";
            this.splitContainerControl1.Panel2.Text = "Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(1211, 730);
            this.splitContainerControl1.SplitterPosition = 585;
            this.splitContainerControl1.TabIndex = 0;
            this.splitContainerControl1.Text = "splitContainerControl1";
            //
            // groupControl3
            //
            this.groupControl3.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.groupControl3.AppearanceCaption.Options.UseFont = true;
            this.groupControl3.Controls.Add(this.gridControl1);
            this.groupControl3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl3.Location = new System.Drawing.Point(0, 0);
            this.groupControl3.Name = "groupControl3";
            this.groupControl3.Size = new System.Drawing.Size(382, 730);
            this.groupControl3.TabIndex = 0;
            this.groupControl3.Text = "รายการโซน";
            //
            // gridControl1
            //
            this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl1.Location = new System.Drawing.Point(2, 22);
            this.gridControl1.MainView = this.gridView1;
            this.gridControl1.Name = "gridControl1";
            this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemLookUpEdit1,
            this.repositoryItemCalcEdit1,
            this.repositoryItemSpinEdit1,
            this.repositoryItemLookUpEdit2});
            this.gridControl1.Size = new System.Drawing.Size(378, 706);
            this.gridControl1.TabIndex = 5;
            this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView1});

            //
            // gridView1
            //
            this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colZoneId,
            this.colZoneName});
            this.gridView1.GridControl = this.gridControl1;
            this.gridView1.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Count, "OrderID", null, "")});
            this.gridView1.Name = "gridView1";
            this.gridView1.OptionsFind.AlwaysVisible = true;
            this.gridView1.OptionsFind.ShowCloseButton = false;
            this.gridView1.OptionsView.ShowGroupPanel = false;
            this.gridView1.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowOnlyInEditor;
            //
            // colZoneId
            //
            this.colZoneId.Caption = "รหัสโซน";
            this.colZoneId.FieldName = "colZoneId";
            this.colZoneId.Name = "colZoneId";
            this.colZoneId.Visible = true;
            this.colZoneId.VisibleIndex = 0;
            //
            // colZoneName
            //
            this.colZoneName.Caption = "ชื่อโซน";
            this.colZoneName.ColumnEdit = this.repositoryItemLookUpEdit2;
            this.colZoneName.FieldName = "colZoneName";
            this.colZoneName.Name = "colZoneName";
            this.colZoneName.Visible = true;
            this.colZoneName.VisibleIndex = 1;
            //
            // repositoryItemLookUpEdit2
            //
            this.repositoryItemLookUpEdit2.AutoHeight = false;
            this.repositoryItemLookUpEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemLookUpEdit2.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ZoneName", 10, "Zone Name")});
            this.repositoryItemLookUpEdit2.DisplayMember = "ZoneName";
            this.repositoryItemLookUpEdit2.Name = "repositoryItemLookUpEdit2";
            this.repositoryItemLookUpEdit2.NullText = "";
            this.repositoryItemLookUpEdit2.ValueMember = "ZoneID";
            //
            // 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("ROOMID", "ROOMNAME")});
            this.repositoryItemLookUpEdit1.DisplayMember = "Name";
            this.repositoryItemLookUpEdit1.DropDownRows = 10;
            this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
            this.repositoryItemLookUpEdit1.NullText = "";
            this.repositoryItemLookUpEdit1.PopupWidth = 220;
            this.repositoryItemLookUpEdit1.ValueMember = "ID";
            //
            // repositoryItemCalcEdit1
            //
            this.repositoryItemCalcEdit1.AutoHeight = false;
            this.repositoryItemCalcEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemCalcEdit1.Name = "repositoryItemCalcEdit1";
            //
            // repositoryItemSpinEdit1
            //
            this.repositoryItemSpinEdit1.AutoHeight = false;
            this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemSpinEdit1.IsFloatValue = false;
            this.repositoryItemSpinEdit1.Mask.EditMask = "N00";
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            //
            // splitContainerControl2
            //
            this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl2.Location = new System.Drawing.Point(4, 4);
            this.splitContainerControl2.Name = "splitContainerControl2";
            this.splitContainerControl2.Panel1.Controls.Add(this.groupControl3);
            this.splitContainerControl2.Panel1.Text = "Panel1";
            this.splitContainerControl2.Panel2.Controls.Add(this.panelControl3);
            this.splitContainerControl2.Panel2.Controls.Add(this.panelControl1);
            this.splitContainerControl2.Panel2.Text = "Panel2";
            this.splitContainerControl2.Size = new System.Drawing.Size(1211, 730);
            this.splitContainerControl2.SplitterPosition = 382;
            this.splitContainerControl2.TabIndex = 13;
            this.splitContainerControl2.Text = "splitContainerControl2";
            //
            // panelControl2
            //
            this.panelControl2.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
            this.panelControl2.Appearance.Options.UseBackColor = true;
            this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl2.Controls.Add(this.splitContainerControl1);
            this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelControl2.Location = new System.Drawing.Point(4, 4);
            this.panelControl2.Name = "panelControl2";
            this.panelControl2.Size = new System.Drawing.Size(1211, 730);
            this.panelControl2.TabIndex = 12;
            //
            // BasicInfoZone
            //
            this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
            this.Appearance.Options.UseBackColor = true;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.splitContainerControl2);
            this.Controls.Add(this.panelControl2);
            this.Name = "BasicInfoZone";
            this.Padding = new System.Windows.Forms.Padding(4);
            this.Size = new System.Drawing.Size(1219, 738);
            this.xtraScrollableControl1.ResumeLayout(false);
            this.xtraScrollableControl1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.colorEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
            this.panelControl3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
            this.groupControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
            this.groupControl3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
            this.splitContainerControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
            this.panelControl2.ResumeLayout(false);
            this.ResumeLayout(false);
        }
Ejemplo n.º 49
0
        /// <summary>
        /// �����豸��ʾ��
        /// </summary>
        public override void InitColumns()
        {
            GridColumn column = gridView1.Columns.Add();
            column.Caption = "������·";
            column.FieldName = "AreaID";
            column.SortOrder = DevExpress.Data.ColumnSortOrder.Ascending;
            column.Width = 100;
            column.VisibleIndex = 1;
            column.OptionsColumn.AllowEdit = false;
            DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit comboBox = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            column.ColumnEdit = comboBox;
            string sql = "where Type in('05','73')";
            IList<PSPDEV> xl_list = Services.BaseService.GetList<PSPDEV>("SelectPSPDEVByCondition", sql);
            comboBox.DataSource = xl_list;
            comboBox.DisplayMember = "Name";
            comboBox.ValueMember = "SUID";

            column = gridView1.Columns.Add();
            column.Caption = "���";
            column.FieldName = "Number";
            column.Width = 100;
            column.VisibleIndex = 1;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "����";
            column.FieldName = "Name";
            column.Width = 100;
            column.VisibleIndex = 2;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();

            //column.Caption = "������";
            //column.FieldName = "Flag";
            //column.Width = 100;
            //column.VisibleIndex = 3;
            //column.OptionsColumn.AllowEdit = false;

            column = gridView1.Columns.Add();
            column.Caption = "���ѹ��KV��";
            column.FieldName = "RateVolt";
            column.Width = 150;
            column.VisibleIndex = 4;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "Ͷ��ʱ��";
            column.FieldName = "OperationYear";
            column.Width = 150;
            column.VisibleIndex = 5;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "������";
            column.FieldName = "HuganTQ2";
            column.Width = 100;
            column.VisibleIndex = 6;
            column.OptionsColumn.AllowEdit = false;

            column = gridView1.Columns.Add();
            column.Caption = "�޸�ʱ��";
            column.FieldName = "HuganTQ3";
            column.Width = 100;
            column.VisibleIndex = 7;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "�Ƿ����۶���";
            column.FieldName = "ISwitch";
            column.Width = 100;
            column.VisibleIndex = 8;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "�Ƿ��б�ѹ��";
            column.FieldName = "JSwitch";
            column.Width = 100;
            column.VisibleIndex =9;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "�û���";
            column.FieldName = "Num1";
            column.Width = 100;
            column.VisibleIndex = 10;
            column.OptionsColumn.AllowEdit = false;
            column = gridView1.Columns.Add();
            column.Caption = "���Ӹ��ɣ�kW��";
            column.FieldName = "HuganTQ4";
            column.Width = 100;
            column.VisibleIndex = 11;
            column.OptionsColumn.AllowEdit = false;
        }
Ejemplo n.º 50
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmReceipt));
     this.grpMdReceipt = new DevExpress.XtraEditors.GroupControl();
     this.Searchpanel = new System.Windows.Forms.Panel();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch = new DevExpress.XtraEditors.TextEdit();
     this.ddlReceiptCategory = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label31 = new System.Windows.Forms.Label();
     this.tabCtrlMd_Freebie = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_Freebie = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Freebie = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nFreebieID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nEntryID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strReceiptNo1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strItemCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strPromotionCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_RPClassType = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_Entries = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Entries = 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.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_Payment = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Payment = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_Receipt = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Receipt = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.strReceiptNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strMembershipID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nCategoryID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nSalespersonID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nCashierID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nShiftID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nTerminalID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mNettAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mGSTAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mTotalAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strDiscountCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strFreebieCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nTaxID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mVoucherTypeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mVoucherAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nTherapistID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strRewardsCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fVoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strReferenceNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strParentReceiptNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mOutstandingAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strRemarks = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fDeposit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mBalance = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strBillReferenceNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strLocation = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtDateTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mUpgradeAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fRefund = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strChequeNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mRefundAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nChequeUpdateBy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mDiscountAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strSignedPDFPath = new DevExpress.XtraGrid.Columns.GridColumn();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     ((System.ComponentModel.ISupportInitialize)(this.grpMdReceipt)).BeginInit();
     this.grpMdReceipt.SuspendLayout();
     this.Searchpanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ddlReceiptCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabCtrlMd_Freebie)).BeginInit();
     this.tabCtrlMd_Freebie.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Freebie)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Freebie)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RPClassType)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Entries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Entries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Payment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Payment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Receipt)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Receipt)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.SuspendLayout();
     //
     // grpMdReceipt
     //
     this.grpMdReceipt.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMdReceipt.Appearance.Options.UseBackColor = true;
     this.grpMdReceipt.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpMdReceipt.Controls.Add(this.Searchpanel);
     this.grpMdReceipt.Controls.Add(this.ddlReceiptCategory);
     this.grpMdReceipt.Controls.Add(this.label31);
     this.grpMdReceipt.Controls.Add(this.tabCtrlMd_Freebie);
     this.grpMdReceipt.Controls.Add(this.groupControl2);
     this.grpMdReceipt.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMdReceipt.Location = new System.Drawing.Point(8, 0);
     this.grpMdReceipt.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMdReceipt.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMdReceipt.Name = "grpMdReceipt";
     this.grpMdReceipt.Size = new System.Drawing.Size(970, 560);
     this.grpMdReceipt.TabIndex = 33;
     this.grpMdReceipt.Text = "Class";
     //
     // Searchpanel
     //
     this.Searchpanel.Controls.Add(this.btn_Search);
     this.Searchpanel.Controls.Add(this.txtSearch);
     this.Searchpanel.Location = new System.Drawing.Point(498, 22);
     this.Searchpanel.Name = "Searchpanel";
     this.Searchpanel.Size = new System.Drawing.Size(464, 24);
     this.Searchpanel.TabIndex = 153;
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(392, 3);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex = 137;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtSearch.Location = new System.Drawing.Point(232, 3);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont = true;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size = new System.Drawing.Size(152, 20);
     this.txtSearch.TabIndex = 136;
     //
     // ddlReceiptCategory
     //
     this.ddlReceiptCategory.EditValue = 0;
     this.ddlReceiptCategory.Location = new System.Drawing.Point(79, 25);
     this.ddlReceiptCategory.Name = "ddlReceiptCategory";
     this.ddlReceiptCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ddlReceiptCategory.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ddlReceiptCategory.Properties.SmallImages = "";
     this.ddlReceiptCategory.Size = new System.Drawing.Size(176, 20);
     this.ddlReceiptCategory.TabIndex = 136;
     this.ddlReceiptCategory.SelectedIndexChanged += new System.EventHandler(this.ddlReceiptCategory_SelectedIndexChanged);
     //
     // label31
     //
     this.label31.BackColor = System.Drawing.Color.Transparent;
     this.label31.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(6, 26);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(136, 16);
     this.label31.TabIndex = 137;
     this.label31.Text = "Category";
     this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // tabCtrlMd_Freebie
     //
     this.tabCtrlMd_Freebie.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabCtrlMd_Freebie.Appearance.Options.UseFont = true;
     this.tabCtrlMd_Freebie.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabCtrlMd_Freebie.AppearancePage.Header.Options.UseFont = true;
     this.tabCtrlMd_Freebie.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.tabCtrlMd_Freebie.Location = new System.Drawing.Point(2, 302);
     this.tabCtrlMd_Freebie.LookAndFeel.UseDefaultLookAndFeel = false;
     this.tabCtrlMd_Freebie.Name = "tabCtrlMd_Freebie";
     this.tabCtrlMd_Freebie.SelectedTabPage = this.xtraTabPage1;
     this.tabCtrlMd_Freebie.Size = new System.Drawing.Size(966, 256);
     this.tabCtrlMd_Freebie.TabIndex = 135;
     this.tabCtrlMd_Freebie.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.gridControlMd_Freebie);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(957, 222);
     this.xtraTabPage1.Text = "Freebies";
     //
     // gridControlMd_Freebie
     //
     this.gridControlMd_Freebie.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_Freebie.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_Freebie.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Freebie.MainView = this.gridViewMd_Freebie;
     this.gridControlMd_Freebie.Name = "gridControlMd_Freebie";
     this.gridControlMd_Freebie.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_RPClassType});
     this.gridControlMd_Freebie.Size = new System.Drawing.Size(957, 222);
     this.gridControlMd_Freebie.TabIndex = 128;
     this.gridControlMd_Freebie.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Freebie});
     //
     // gridViewMd_Freebie
     //
     this.gridViewMd_Freebie.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.nFreebieID,
     this.nEntryID,
     this.strReceiptNo1,
     this.strItemCode,
     this.strPromotionCode});
     this.gridViewMd_Freebie.GridControl = this.gridControlMd_Freebie;
     this.gridViewMd_Freebie.Name = "gridViewMd_Freebie";
     this.gridViewMd_Freebie.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Freebie.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Freebie.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Freebie.LostFocus += new System.EventHandler(this.gridViewMd_Freebie_LostFocus);
     //
     // nFreebieID
     //
     this.nFreebieID.Caption = "FreebieID";
     this.nFreebieID.FieldName = "nFreebieID";
     this.nFreebieID.Name = "nFreebieID";
     this.nFreebieID.Visible = true;
     this.nFreebieID.VisibleIndex = 0;
     //
     // nEntryID
     //
     this.nEntryID.Caption = "EntryID";
     this.nEntryID.FieldName = "nEntryID";
     this.nEntryID.Name = "nEntryID";
     this.nEntryID.Visible = true;
     this.nEntryID.VisibleIndex = 1;
     //
     // strReceiptNo1
     //
     this.strReceiptNo1.Caption = "ReceiptNo";
     this.strReceiptNo1.FieldName = "strReceiptNo";
     this.strReceiptNo1.Name = "strReceiptNo1";
     this.strReceiptNo1.Visible = true;
     this.strReceiptNo1.VisibleIndex = 2;
     //
     // strItemCode
     //
     this.strItemCode.Caption = "ItemCode";
     this.strItemCode.FieldName = "strItemCode";
     this.strItemCode.Name = "strItemCode";
     this.strItemCode.Visible = true;
     this.strItemCode.VisibleIndex = 3;
     //
     // strPromotionCode
     //
     this.strPromotionCode.Caption = "PromotionCode";
     this.strPromotionCode.FieldName = "strPromotionCode";
     this.strPromotionCode.Name = "strPromotionCode";
     this.strPromotionCode.Visible = true;
     this.strPromotionCode.VisibleIndex = 4;
     //
     // lk_RPClassType
     //
     this.lk_RPClassType.AutoHeight = false;
     this.lk_RPClassType.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_RPClassType.Name = "lk_RPClassType";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.gridControlMd_Entries);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(957, 222);
     this.xtraTabPage2.Text = "Entries";
     //
     // gridControlMd_Entries
     //
     this.gridControlMd_Entries.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_Entries.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_Entries.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Entries.MainView = this.gridViewMd_Entries;
     this.gridControlMd_Entries.Name = "gridControlMd_Entries";
     this.gridControlMd_Entries.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit1});
     this.gridControlMd_Entries.Size = new System.Drawing.Size(957, 222);
     this.gridControlMd_Entries.TabIndex = 128;
     this.gridControlMd_Entries.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Entries,
     this.gridView3});
     //
     // gridViewMd_Entries
     //
     this.gridViewMd_Entries.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn3,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn15,
     this.gridColumn16,
     this.gridColumn17});
     this.gridViewMd_Entries.GridControl = this.gridControlMd_Entries;
     this.gridViewMd_Entries.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_Entries.Name = "gridViewMd_Entries";
     this.gridViewMd_Entries.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Entries.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Entries.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Entries.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_Entries.LostFocus += new System.EventHandler(this.gridViewMd_Entries_LostFocus);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "EntryID";
     this.gridColumn1.FieldName = "nEntryID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "ReceiptNo";
     this.gridColumn2.FieldName = "strReceiptNo";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Code";
     this.gridColumn4.FieldName = "strCode";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Description";
     this.gridColumn5.FieldName = "strDescription";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 3;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Quantity";
     this.gridColumn3.FieldName = "nQuantity";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 4;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "UnitPrice";
     this.gridColumn11.FieldName = "mUnitPrice";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 5;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "DiscountCode";
     this.gridColumn12.FieldName = "strDiscountCode";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 6;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "FreebieCode";
     this.gridColumn13.FieldName = "strFreebieCode";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 7;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "SubTotal";
     this.gridColumn14.FieldName = "mSubTotal";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 8;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "ReferenceNo";
     this.gridColumn15.FieldName = "strReferenceNo";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 9;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "TempEntryID";
     this.gridColumn16.FieldName = "nTempEntryID";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 10;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "UpgradeAmount";
     this.gridColumn17.FieldName = "mUpgradeAmount";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 11;
     //
     // 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.Name = "repositoryItemLookUpEdit1";
     //
     // gridView3
     //
     this.gridView3.GridControl = this.gridControlMd_Entries;
     this.gridView3.Name = "gridView3";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.gridControlMd_Payment);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(957, 222);
     this.xtraTabPage3.Text = "Payment";
     //
     // gridControlMd_Payment
     //
     this.gridControlMd_Payment.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_Payment.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_Payment.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Payment.MainView = this.gridViewMd_Payment;
     this.gridControlMd_Payment.Name = "gridControlMd_Payment";
     this.gridControlMd_Payment.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit2});
     this.gridControlMd_Payment.Size = new System.Drawing.Size(957, 222);
     this.gridControlMd_Payment.TabIndex = 128;
     this.gridControlMd_Payment.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Payment});
     //
     // gridViewMd_Payment
     //
     this.gridViewMd_Payment.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn18});
     this.gridViewMd_Payment.GridControl = this.gridControlMd_Payment;
     this.gridViewMd_Payment.Name = "gridViewMd_Payment";
     this.gridViewMd_Payment.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Payment.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Payment.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Payment.LostFocus += new System.EventHandler(this.gridViewMd_Payment_LostFocus);
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "PaymentID";
     this.gridColumn6.FieldName = "nPaymentID";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "ReceiptNo";
     this.gridColumn7.FieldName = "strReceiptNo";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 1;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "PaymentCode";
     this.gridColumn8.FieldName = "strPaymentCode";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 2;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Amount";
     this.gridColumn9.FieldName = "mAmount";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 3;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "IPPID";
     this.gridColumn10.FieldName = "nIPPID";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 4;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "ReferenceNo";
     this.gridColumn18.FieldName = "strReferenceNo";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 5;
     //
     // repositoryItemLookUpEdit2
     //
     this.repositoryItemLookUpEdit2.AutoHeight = false;
     this.repositoryItemLookUpEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit2.Name = "repositoryItemLookUpEdit2";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.gridControlMd_Receipt);
     this.groupControl2.Location = new System.Drawing.Point(0, 50);
     this.groupControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(968, 246);
     this.groupControl2.TabIndex = 128;
     this.groupControl2.Text = "Class Type";
     //
     // gridControlMd_Receipt
     //
     this.gridControlMd_Receipt.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_Receipt.Location = new System.Drawing.Point(2, 19);
     this.gridControlMd_Receipt.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Receipt.MainView = this.gridViewMd_Receipt;
     this.gridControlMd_Receipt.Name = "gridControlMd_Receipt";
     this.gridControlMd_Receipt.Size = new System.Drawing.Size(964, 225);
     this.gridControlMd_Receipt.TabIndex = 126;
     this.gridControlMd_Receipt.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Receipt});
     //
     // gridViewMd_Receipt
     //
     this.gridViewMd_Receipt.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.strReceiptNo,
     this.strMembershipID,
     this.strBranchCode,
     this.nCategoryID,
     this.dtDate,
     this.nSalespersonID,
     this.nCashierID,
     this.nShiftID,
     this.nTerminalID,
     this.mNettAmount,
     this.mGSTAmount,
     this.mTotalAmount,
     this.strDiscountCode,
     this.strFreebieCode,
     this.nTaxID,
     this.mVoucherTypeID,
     this.mVoucherAmount,
     this.nTherapistID,
     this.strRewardsCode,
     this.fVoid,
     this.strReferenceNo,
     this.strParentReceiptNo,
     this.mOutstandingAmount,
     this.strRemarks,
     this.fDeposit,
     this.mBalance,
     this.strBillReferenceNo,
     this.strLocation,
     this.dtDateTime,
     this.mUpgradeAmount,
     this.fRefund,
     this.strChequeNo,
     this.mRefundAmount,
     this.nChequeUpdateBy,
     this.mDiscountAmount,
     this.strSignedPDFPath});
     this.gridViewMd_Receipt.GridControl = this.gridControlMd_Receipt;
     this.gridViewMd_Receipt.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_Receipt.Name = "gridViewMd_Receipt";
     this.gridViewMd_Receipt.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMd_Receipt.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Receipt.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Receipt.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_Receipt.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Receipt.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_Receipt.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_Receipt_FocusedRowChanged);
     this.gridViewMd_Receipt.LostFocus += new System.EventHandler(this.gridViewMd_Receipt_LostFocus);
     //
     // strReceiptNo
     //
     this.strReceiptNo.Caption = "ReceiptNo";
     this.strReceiptNo.FieldName = "strReceiptNo";
     this.strReceiptNo.Name = "strReceiptNo";
     this.strReceiptNo.Visible = true;
     this.strReceiptNo.VisibleIndex = 0;
     this.strReceiptNo.Width = 95;
     //
     // strMembershipID
     //
     this.strMembershipID.Caption = "MembershipID";
     this.strMembershipID.FieldName = "strMembershipID";
     this.strMembershipID.Name = "strMembershipID";
     this.strMembershipID.Visible = true;
     this.strMembershipID.VisibleIndex = 1;
     this.strMembershipID.Width = 80;
     //
     // strBranchCode
     //
     this.strBranchCode.Caption = "BranchCode";
     this.strBranchCode.FieldName = "strBranchCode";
     this.strBranchCode.Name = "strBranchCode";
     this.strBranchCode.Visible = true;
     this.strBranchCode.VisibleIndex = 2;
     this.strBranchCode.Width = 70;
     //
     // nCategoryID
     //
     this.nCategoryID.Caption = "CategoryID";
     this.nCategoryID.FieldName = "nCategoryID";
     this.nCategoryID.Name = "nCategoryID";
     this.nCategoryID.Visible = true;
     this.nCategoryID.VisibleIndex = 3;
     this.nCategoryID.Width = 68;
     //
     // dtDate
     //
     this.dtDate.Caption = "Date";
     this.dtDate.FieldName = "dtDate";
     this.dtDate.Name = "dtDate";
     this.dtDate.Visible = true;
     this.dtDate.VisibleIndex = 4;
     this.dtDate.Width = 77;
     //
     // nSalespersonID
     //
     this.nSalespersonID.Caption = "SalespersonID";
     this.nSalespersonID.FieldName = "nSalespersonID";
     this.nSalespersonID.Name = "nSalespersonID";
     this.nSalespersonID.Visible = true;
     this.nSalespersonID.VisibleIndex = 5;
     this.nSalespersonID.Width = 81;
     //
     // nCashierID
     //
     this.nCashierID.Caption = "CashierID";
     this.nCashierID.FieldName = "nCashierID";
     this.nCashierID.Name = "nCashierID";
     this.nCashierID.Visible = true;
     this.nCashierID.VisibleIndex = 6;
     this.nCashierID.Width = 59;
     //
     // nShiftID
     //
     this.nShiftID.Caption = "ShiftID";
     this.nShiftID.FieldName = "nShiftID";
     this.nShiftID.Name = "nShiftID";
     this.nShiftID.Visible = true;
     this.nShiftID.VisibleIndex = 7;
     this.nShiftID.Width = 45;
     //
     // nTerminalID
     //
     this.nTerminalID.Caption = "TerminalID";
     this.nTerminalID.FieldName = "nTerminalID";
     this.nTerminalID.Name = "nTerminalID";
     this.nTerminalID.Visible = true;
     this.nTerminalID.VisibleIndex = 8;
     this.nTerminalID.Width = 63;
     //
     // mNettAmount
     //
     this.mNettAmount.Caption = "NettAmount";
     this.mNettAmount.FieldName = "mNettAmount";
     this.mNettAmount.Name = "mNettAmount";
     this.mNettAmount.Visible = true;
     this.mNettAmount.VisibleIndex = 9;
     this.mNettAmount.Width = 70;
     //
     // mGSTAmount
     //
     this.mGSTAmount.Caption = "GSTAmount";
     this.mGSTAmount.FieldName = "mGSTAmount";
     this.mGSTAmount.Name = "mGSTAmount";
     this.mGSTAmount.Visible = true;
     this.mGSTAmount.VisibleIndex = 10;
     this.mGSTAmount.Width = 68;
     //
     // mTotalAmount
     //
     this.mTotalAmount.Caption = "TotalAmount";
     this.mTotalAmount.FieldName = "mTotalAmount";
     this.mTotalAmount.Name = "mTotalAmount";
     this.mTotalAmount.Visible = true;
     this.mTotalAmount.VisibleIndex = 11;
     this.mTotalAmount.Width = 73;
     //
     // strDiscountCode
     //
     this.strDiscountCode.Caption = "DiscountCode";
     this.strDiscountCode.FieldName = "strDiscountCode";
     this.strDiscountCode.Name = "strDiscountCode";
     this.strDiscountCode.Visible = true;
     this.strDiscountCode.VisibleIndex = 12;
     this.strDiscountCode.Width = 78;
     //
     // strFreebieCode
     //
     this.strFreebieCode.Caption = "FreebieCode";
     this.strFreebieCode.FieldName = "strFreebieCode";
     this.strFreebieCode.Name = "strFreebieCode";
     this.strFreebieCode.Visible = true;
     this.strFreebieCode.VisibleIndex = 13;
     this.strFreebieCode.Width = 73;
     //
     // nTaxID
     //
     this.nTaxID.Caption = "TaxID";
     this.nTaxID.FieldName = "nTaxID";
     this.nTaxID.Name = "nTaxID";
     this.nTaxID.Visible = true;
     this.nTaxID.VisibleIndex = 14;
     this.nTaxID.Width = 41;
     //
     // mVoucherTypeID
     //
     this.mVoucherTypeID.Caption = "VoucherTypeID";
     this.mVoucherTypeID.FieldName = "mVoucherTypeID";
     this.mVoucherTypeID.Name = "mVoucherTypeID";
     this.mVoucherTypeID.Visible = true;
     this.mVoucherTypeID.VisibleIndex = 15;
     this.mVoucherTypeID.Width = 86;
     //
     // mVoucherAmount
     //
     this.mVoucherAmount.Caption = "VoucherAmount";
     this.mVoucherAmount.FieldName = "mVoucherAmount";
     this.mVoucherAmount.Name = "mVoucherAmount";
     this.mVoucherAmount.Visible = true;
     this.mVoucherAmount.VisibleIndex = 16;
     this.mVoucherAmount.Width = 88;
     //
     // nTherapistID
     //
     this.nTherapistID.Caption = "TherapistID";
     this.nTherapistID.FieldName = "nTherapistID";
     this.nTherapistID.Name = "nTherapistID";
     this.nTherapistID.Visible = true;
     this.nTherapistID.VisibleIndex = 17;
     this.nTherapistID.Width = 68;
     //
     // strRewardsCode
     //
     this.strRewardsCode.Caption = "RewardsCode";
     this.strRewardsCode.FieldName = "strRewardsCode";
     this.strRewardsCode.Name = "strRewardsCode";
     this.strRewardsCode.Visible = true;
     this.strRewardsCode.VisibleIndex = 18;
     this.strRewardsCode.Width = 79;
     //
     // fVoid
     //
     this.fVoid.Caption = "Void";
     this.fVoid.FieldName = "fVoid";
     this.fVoid.Name = "fVoid";
     this.fVoid.Visible = true;
     this.fVoid.VisibleIndex = 19;
     this.fVoid.Width = 32;
     //
     // strReferenceNo
     //
     this.strReferenceNo.Caption = "ReferenceNo";
     this.strReferenceNo.FieldName = "strReferenceNo";
     this.strReferenceNo.Name = "strReferenceNo";
     this.strReferenceNo.Visible = true;
     this.strReferenceNo.VisibleIndex = 20;
     //
     // strParentReceiptNo
     //
     this.strParentReceiptNo.Caption = "ParentReceiptNo";
     this.strParentReceiptNo.FieldName = "strParentReceiptNo";
     this.strParentReceiptNo.Name = "strParentReceiptNo";
     this.strParentReceiptNo.Visible = true;
     this.strParentReceiptNo.VisibleIndex = 21;
     this.strParentReceiptNo.Width = 93;
     //
     // mOutstandingAmount
     //
     this.mOutstandingAmount.Caption = "OutstandingAmount";
     this.mOutstandingAmount.FieldName = "mOutstandingAmount";
     this.mOutstandingAmount.Name = "mOutstandingAmount";
     this.mOutstandingAmount.Visible = true;
     this.mOutstandingAmount.VisibleIndex = 22;
     this.mOutstandingAmount.Width = 108;
     //
     // strRemarks
     //
     this.strRemarks.Caption = "Remarks";
     this.strRemarks.FieldName = "strRemarks";
     this.strRemarks.Name = "strRemarks";
     this.strRemarks.Visible = true;
     this.strRemarks.VisibleIndex = 23;
     this.strRemarks.Width = 53;
     //
     // fDeposit
     //
     this.fDeposit.Caption = "Deposit";
     this.fDeposit.FieldName = "fDeposit";
     this.fDeposit.Name = "fDeposit";
     this.fDeposit.Visible = true;
     this.fDeposit.VisibleIndex = 24;
     this.fDeposit.Width = 48;
     //
     // mBalance
     //
     this.mBalance.Caption = "Balance";
     this.mBalance.FieldName = "mBalance";
     this.mBalance.Name = "mBalance";
     this.mBalance.Visible = true;
     this.mBalance.VisibleIndex = 25;
     this.mBalance.Width = 49;
     //
     // strBillReferenceNo
     //
     this.strBillReferenceNo.Caption = "BillReferenceNo";
     this.strBillReferenceNo.FieldName = "strBillReferenceNo";
     this.strBillReferenceNo.Name = "strBillReferenceNo";
     this.strBillReferenceNo.Visible = true;
     this.strBillReferenceNo.VisibleIndex = 26;
     this.strBillReferenceNo.Width = 87;
     //
     // strLocation
     //
     this.strLocation.Caption = "Location";
     this.strLocation.FieldName = "strLocation";
     this.strLocation.Name = "strLocation";
     this.strLocation.Visible = true;
     this.strLocation.VisibleIndex = 27;
     this.strLocation.Width = 52;
     //
     // dtDateTime
     //
     this.dtDateTime.Caption = "DateTime";
     this.dtDateTime.FieldName = "dtDateTime";
     this.dtDateTime.Name = "dtDateTime";
     this.dtDateTime.Visible = true;
     this.dtDateTime.VisibleIndex = 28;
     this.dtDateTime.Width = 57;
     //
     // mUpgradeAmount
     //
     this.mUpgradeAmount.Caption = "UpgradeAmount";
     this.mUpgradeAmount.FieldName = "mUpgradeAmount";
     this.mUpgradeAmount.Name = "mUpgradeAmount";
     this.mUpgradeAmount.Visible = true;
     this.mUpgradeAmount.VisibleIndex = 29;
     this.mUpgradeAmount.Width = 90;
     //
     // fRefund
     //
     this.fRefund.Caption = "Refund";
     this.fRefund.FieldName = "fRefund";
     this.fRefund.Name = "fRefund";
     this.fRefund.Visible = true;
     this.fRefund.VisibleIndex = 30;
     this.fRefund.Width = 47;
     //
     // strChequeNo
     //
     this.strChequeNo.Caption = "ChequeNo";
     this.strChequeNo.FieldName = "strChequeNo";
     this.strChequeNo.Name = "strChequeNo";
     this.strChequeNo.Visible = true;
     this.strChequeNo.VisibleIndex = 31;
     this.strChequeNo.Width = 62;
     //
     // mRefundAmount
     //
     this.mRefundAmount.Caption = "RefundAmount";
     this.mRefundAmount.FieldName = "mRefundAmount";
     this.mRefundAmount.Name = "mRefundAmount";
     this.mRefundAmount.Visible = true;
     this.mRefundAmount.VisibleIndex = 32;
     this.mRefundAmount.Width = 84;
     //
     // nChequeUpdateBy
     //
     this.nChequeUpdateBy.Caption = "ChequeUpdateBy";
     this.nChequeUpdateBy.FieldName = "nChequeUpdateBy";
     this.nChequeUpdateBy.Name = "nChequeUpdateBy";
     this.nChequeUpdateBy.Visible = true;
     this.nChequeUpdateBy.VisibleIndex = 33;
     this.nChequeUpdateBy.Width = 96;
     //
     // mDiscountAmount
     //
     this.mDiscountAmount.Caption = "DiscountAmount";
     this.mDiscountAmount.FieldName = "mDiscountAmount";
     this.mDiscountAmount.Name = "mDiscountAmount";
     this.mDiscountAmount.Visible = true;
     this.mDiscountAmount.VisibleIndex = 34;
     this.mDiscountAmount.Width = 90;
     //
     // strSignedPDFPath
     //
     this.strSignedPDFPath.Caption = "SignedPDFPath";
     this.strSignedPDFPath.FieldName = "strSignedPDFPath";
     this.strSignedPDFPath.Name = "strSignedPDFPath";
     this.strSignedPDFPath.Visible = true;
     this.strSignedPDFPath.VisibleIndex = 35;
     this.strSignedPDFPath.Width = 85;
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     //
     // gridView1
     //
     this.gridView1.Name = "gridView1";
     //
     // frmReceipt
     //
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(990, 560);
     this.Controls.Add(this.grpMdReceipt);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmReceipt";
     this.Text = "frmReceipt";
     this.Load += new System.EventHandler(this.frmReceipt_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMdReceipt)).EndInit();
     this.grpMdReceipt.ResumeLayout(false);
     this.Searchpanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ddlReceiptCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabCtrlMd_Freebie)).EndInit();
     this.tabCtrlMd_Freebie.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Freebie)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Freebie)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RPClassType)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Entries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Entries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Payment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Payment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Receipt)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Receipt)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 51
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.txtDate = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.btn_Save = new DevExpress.XtraEditors.SimpleButton();
     this.lkBranchTo = new DevExpress.XtraEditors.LookUpEdit();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.rItem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Product = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.rQty = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Style = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.label1 = new System.Windows.Forms.Label();
     this.txtRequestedBy = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranchTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Product)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Style)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRequestedBy.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // txtDate
     //
     this.txtDate.Location = new System.Drawing.Point(8, 16);
     this.txtDate.Name = "txtDate";
     this.txtDate.Size = new System.Drawing.Size(48, 23);
     this.txtDate.TabIndex = 18;
     this.txtDate.Text = "Date";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 48);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(72, 23);
     this.label2.TabIndex = 22;
     this.label2.Text = "To Branch";
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = new System.DateTime(2005, 10, 28, 0, 0, 0, 0);
     this.dateEdit1.Location = new System.Drawing.Point(80, 12);
     this.dateEdit1.Name = "dateEdit1";
     //
     // dateEdit1.Properties
     //
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dateEdit1.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEdit1.Size = new System.Drawing.Size(104, 20);
     this.dateEdit1.TabIndex = 17;
     //
     // btn_Save
     //
     this.btn_Save.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Save.Location = new System.Drawing.Point(30, 84);
     this.btn_Save.Name = "btn_Save";
     this.btn_Save.TabIndex = 36;
     this.btn_Save.Text = "Save";
     this.btn_Save.Click += new System.EventHandler(this.btn_Save_Click);
     //
     // lkBranchTo
     //
     this.lkBranchTo.Location = new System.Drawing.Point(80, 42);
     this.lkBranchTo.Name = "lkBranchTo";
     //
     // lkBranchTo.Properties
     //
     this.lkBranchTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                        new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBranchTo.Properties.NullText = "Select Branch";
     this.lkBranchTo.Size = new System.Drawing.Size(144, 20);
     this.lkBranchTo.TabIndex = 37;
     this.lkBranchTo.EditValueChanged += new System.EventHandler(this.BranchTo_EditValueChanged);
     //
     // gridControl1
     //
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(8, 132);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                           this.repositoryItemTextEdit1,
                                                                                                           this.lk_Product,
                                                                                                           this.lk_Style});
     this.gridControl1.Size = new System.Drawing.Size(424, 216);
     this.gridControl1.TabIndex = 38;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.rItem,
                                                                                      this.rQty,
                                                                                      this.gridColumn2});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     //
     // rItem
     //
     this.rItem.Caption = "Item Code";
     this.rItem.ColumnEdit = this.lk_Product;
     this.rItem.FieldName = "strItemCode";
     this.rItem.Name = "rItem";
     this.rItem.Visible = true;
     this.rItem.VisibleIndex = 0;
     this.rItem.Width = 120;
     //
     // lk_Product
     //
     this.lk_Product.AutoHeight = false;
     this.lk_Product.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Product.Name = "lk_Product";
     //
     // rQty
     //
     this.rQty.Caption = "Quantity";
     this.rQty.ColumnEdit = this.repositoryItemTextEdit1;
     this.rQty.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.rQty.FieldName = "nQuantity";
     this.rQty.Name = "rQty";
     this.rQty.Visible = true;
     this.rQty.VisibleIndex = 1;
     this.rQty.Width = 198;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "nEntryID";
     this.gridColumn2.FieldName = "nEntryID";
     this.gridColumn2.Name = "gridColumn2";
     //
     // lk_Style
     //
     this.lk_Style.AutoHeight = false;
     this.lk_Style.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                           new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Style.Name = "lk_Style";
     //
     // btn_Add
     //
     this.btn_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Add.Location = new System.Drawing.Point(114, 84);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.TabIndex = 39;
     this.btn_Add.Text = "Add";
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // simpleButton3
     //
     this.simpleButton3.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton3.Location = new System.Drawing.Point(198, 84);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.TabIndex = 40;
     this.simpleButton3.Text = "Delete";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // simpleButton4
     //
     this.simpleButton4.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton4.Location = new System.Drawing.Point(282, 84);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.TabIndex = 41;
     this.simpleButton4.Text = "Search";
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(246, 42);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(66, 23);
     this.label1.TabIndex = 42;
     this.label1.Text = "Request By";
     //
     // txtRequestedBy
     //
     this.txtRequestedBy.EditValue = "";
     this.txtRequestedBy.Location = new System.Drawing.Point(312, 42);
     this.txtRequestedBy.Name = "txtRequestedBy";
     //
     // txtRequestedBy.Properties
     //
     this.txtRequestedBy.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.txtRequestedBy.Size = new System.Drawing.Size(104, 20);
     this.txtRequestedBy.TabIndex = 43;
     //
     // frmNewStockRequest
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(438, 353);
     this.Controls.Add(this.txtRequestedBy);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.simpleButton4);
     this.Controls.Add(this.simpleButton3);
     this.Controls.Add(this.btn_Add);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.lkBranchTo);
     this.Controls.Add(this.btn_Save);
     this.Controls.Add(this.txtDate);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.dateEdit1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmNewStockRequest";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "New Stock Request";
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranchTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Product)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Style)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRequestedBy.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicateWarasa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditSyndicateId = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LSMSCDSyndicate = new DevExpress.Data.Linq.LinqServerModeSource();
     this.colSubCommitteWarasa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditSubCommitteId = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LSMSCDSubCommitte = new DevExpress.Data.Linq.LinqServerModeSource();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnNames = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.gridColumnOpenEditor = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditor = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSyndicateId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSyndicate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSubCommitteId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSubCommitte)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditor)).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.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.repositoryItemLookUpEditSyndicateId,
     this.repositoryItemLookUpEditSubCommitteId,
     this.repositoryItemButtonEditEditor});
     this.gridControlData.Size = new System.Drawing.Size(734, 404);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colpersonName,
     this.colMMashatName,
     this.colSyndicateWarasa,
     this.colSubCommitteWarasa,
     this.colsarfnumber,
     this.colPersonId,
     this.gridColumnNames,
     this.gridColumnOpenEditor});
     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.OptionsColumn.AllowEdit = false;
     this.colpersonName.Visible = true;
     this.colpersonName.VisibleIndex = 0;
     this.colpersonName.Width = 104;
     //
     // 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.AllowEdit = false;
     this.colMMashatName.Visible = true;
     this.colMMashatName.VisibleIndex = 3;
     this.colMMashatName.Width = 115;
     //
     // 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.ColumnEdit = this.repositoryItemLookUpEditSyndicateId;
     this.colSyndicateWarasa.FieldName = "SyndicateId";
     this.colSyndicateWarasa.Name = "colSyndicateWarasa";
     this.colSyndicateWarasa.OptionsColumn.AllowEdit = false;
     this.colSyndicateWarasa.Visible = true;
     this.colSyndicateWarasa.VisibleIndex = 1;
     this.colSyndicateWarasa.Width = 104;
     //
     // repositoryItemLookUpEditSyndicateId
     //
     this.repositoryItemLookUpEditSyndicateId.AutoHeight = false;
     this.repositoryItemLookUpEditSyndicateId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditSyndicateId.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Syndicate", "الاسم")});
     this.repositoryItemLookUpEditSyndicateId.DataSource = this.LSMSCDSyndicate;
     this.repositoryItemLookUpEditSyndicateId.DisplayMember = "Syndicate";
     this.repositoryItemLookUpEditSyndicateId.Name = "repositoryItemLookUpEditSyndicateId";
     this.repositoryItemLookUpEditSyndicateId.NullText = "";
     this.repositoryItemLookUpEditSyndicateId.ValueMember = "SyndicateId";
     //
     // LSMSCDSyndicate
     //
     this.LSMSCDSyndicate.ElementType = typeof(RetirementCenter.DataSources.Linq.CDSyndicate);
     this.LSMSCDSyndicate.KeyExpression = "[SyndicateId]";
     //
     // 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.ColumnEdit = this.repositoryItemLookUpEditSubCommitteId;
     this.colSubCommitteWarasa.FieldName = "SubCommitteId";
     this.colSubCommitteWarasa.Name = "colSubCommitteWarasa";
     this.colSubCommitteWarasa.OptionsColumn.AllowEdit = false;
     this.colSubCommitteWarasa.Visible = true;
     this.colSubCommitteWarasa.VisibleIndex = 2;
     this.colSubCommitteWarasa.Width = 98;
     //
     // repositoryItemLookUpEditSubCommitteId
     //
     this.repositoryItemLookUpEditSubCommitteId.AutoHeight = false;
     this.repositoryItemLookUpEditSubCommitteId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditSubCommitteId.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SubCommitte", "الاسم")});
     this.repositoryItemLookUpEditSubCommitteId.DataSource = this.LSMSCDSubCommitte;
     this.repositoryItemLookUpEditSubCommitteId.DisplayMember = "SubCommitte";
     this.repositoryItemLookUpEditSubCommitteId.Name = "repositoryItemLookUpEditSubCommitteId";
     this.repositoryItemLookUpEditSubCommitteId.NullText = "";
     this.repositoryItemLookUpEditSubCommitteId.ValueMember = "SubCommitteId";
     //
     // LSMSCDSubCommitte
     //
     this.LSMSCDSubCommitte.ElementType = typeof(RetirementCenter.DataSources.Linq.CDSubCommitte);
     this.LSMSCDSubCommitte.KeyExpression = "[SubCommitteId]";
     //
     // colsarfnumber
     //
     this.colsarfnumber.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.Caption = "رقم الصرف";
     this.colsarfnumber.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.OptionsColumn.AllowEdit = false;
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 4;
     this.colsarfnumber.Width = 85;
     //
     // 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.OptionsColumn.AllowEdit = false;
     this.colPersonId.Visible = true;
     this.colPersonId.VisibleIndex = 5;
     this.colPersonId.Width = 106;
     //
     // gridColumnNames
     //
     this.gridColumnNames.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnNames.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnNames.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnNames.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnNames.Caption = "عدد اسماء الوريث";
     this.gridColumnNames.FieldName = "Names";
     this.gridColumnNames.Name = "gridColumnNames";
     this.gridColumnNames.OptionsColumn.AllowEdit = false;
     this.gridColumnNames.Visible = true;
     this.gridColumnNames.VisibleIndex = 6;
     this.gridColumnNames.Width = 97;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btnPrintExport);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(734, 47);
     this.panelControl1.TabIndex = 3;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrintExport.Location = new System.Drawing.Point(588, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // gridColumnOpenEditor
     //
     this.gridColumnOpenEditor.Caption = "التعديل";
     this.gridColumnOpenEditor.ColumnEdit = this.repositoryItemButtonEditEditor;
     this.gridColumnOpenEditor.Name = "gridColumnOpenEditor";
     this.gridColumnOpenEditor.Visible = true;
     this.gridColumnOpenEditor.VisibleIndex = 7;
     //
     // repositoryItemButtonEditEditor
     //
     this.repositoryItemButtonEditEditor.AutoHeight = false;
     this.repositoryItemButtonEditEditor.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEditEditor.Name = "repositoryItemButtonEditEditor";
     this.repositoryItemButtonEditEditor.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditEditor.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditEditor_ButtonClick);
     //
     // Qry17Frm
     //
     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 = "Qry17Frm";
     this.Text = "عدد الاسماء للورثة";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Qry06Frm_Load);
     this.Shown += new System.EventHandler(this.Qry17Frm_Shown);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSyndicateId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSyndicate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSubCommitteId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSubCommitte)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditor)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 53
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.RGFitnessPackage = new DevExpress.XtraEditors.RadioGroup();
     this.gridFitnessPackage = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.Rank = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Employee = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.SalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.SalesTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label79 = new System.Windows.Forms.Label();
     this.label80 = new System.Windows.Forms.Label();
     this.Month = new DevExpress.XtraEditors.ComboBoxEdit();
     this.Year = new DevExpress.XtraEditors.ComboBoxEdit();
     this.button1 = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.RGFitnessPackage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFitnessPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Gray;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(0, 40);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(952, 24);
     this.label1.TabIndex = 11;
     this.label1.Text = "Ranking of Fitness Package Sales";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // RGFitnessPackage
     //
     this.RGFitnessPackage.EditValue = 0;
     this.RGFitnessPackage.Location = new System.Drawing.Point(0, 64);
     this.RGFitnessPackage.Name = "RGFitnessPackage";
     this.RGFitnessPackage.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.RGFitnessPackage.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RGFitnessPackage.Properties.Appearance.Options.UseBackColor = true;
     this.RGFitnessPackage.Properties.Appearance.Options.UseFont = true;
     this.RGFitnessPackage.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.RGFitnessPackage.Properties.Columns = 2;
     this.RGFitnessPackage.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Fitness Package Sales By %"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual Fitness Package Sales")});
     this.RGFitnessPackage.Size = new System.Drawing.Size(496, 32);
     this.RGFitnessPackage.TabIndex = 10;
     this.RGFitnessPackage.EditValueChanged += new System.EventHandler(this.RGFitnessPackage_EditValueChanged);
     this.RGFitnessPackage.Click += new System.EventHandler(this.RGFitnessPackage_Click);
     //
     // gridFitnessPackage
     //
     this.gridFitnessPackage.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridFitnessPackage.Location = new System.Drawing.Point(0, 96);
     this.gridFitnessPackage.MainView = this.gridView2;
     this.gridFitnessPackage.Name = "gridFitnessPackage";
     this.gridFitnessPackage.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_Employee});
     this.gridFitnessPackage.Size = new System.Drawing.Size(960, 384);
     this.gridFitnessPackage.TabIndex = 9;
     this.gridFitnessPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView2});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Rank,
     this.gridColumn2,
     this.gridColumn5,
     this.SalesPercentage,
     this.SalesTotal});
     this.gridView2.GridControl = this.gridFitnessPackage;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsBehavior.Editable = false;
     this.gridView2.OptionsCustomization.AllowFilter = false;
     this.gridView2.OptionsCustomization.AllowGroup = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     this.gridView2.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gridView2_CustomUnboundColumnData);
     //
     // Rank
     //
     this.Rank.Caption = "Rank";
     this.Rank.FieldName = "Rank";
     this.Rank.Name = "Rank";
     this.Rank.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.Rank.Visible = true;
     this.Rank.VisibleIndex = 0;
     this.Rank.Width = 33;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Employee Name";
     this.gridColumn2.ColumnEdit = this.lk_Employee;
     this.gridColumn2.FieldName = "nSalesPersonID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 85;
     //
     // lk_Employee
     //
     this.lk_Employee.AutoHeight = false;
     this.lk_Employee.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Employee.Name = "lk_Employee";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Branch Code";
     this.gridColumn5.FieldName = "strBranchCode";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 70;
     //
     // SalesPercentage
     //
     this.SalesPercentage.Caption = "Sales Percentage";
     this.SalesPercentage.FieldName = "SalesPercentage";
     this.SalesPercentage.Name = "SalesPercentage";
     this.SalesPercentage.Visible = true;
     this.SalesPercentage.VisibleIndex = 2;
     this.SalesPercentage.Width = 92;
     //
     // SalesTotal
     //
     this.SalesTotal.Caption = "Total Sales";
     this.SalesTotal.FieldName = "TotalSales";
     this.SalesTotal.Name = "SalesTotal";
     this.SalesTotal.Visible = true;
     this.SalesTotal.VisibleIndex = 3;
     this.SalesTotal.Width = 61;
     //
     // label79
     //
     this.label79.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label79.Location = new System.Drawing.Point(144, 8);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(48, 23);
     this.label79.TabIndex = 23;
     this.label79.Text = "Year";
     //
     // label80
     //
     this.label80.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label80.Location = new System.Drawing.Point(8, 8);
     this.label80.Name = "label80";
     this.label80.Size = new System.Drawing.Size(56, 23);
     this.label80.TabIndex = 22;
     this.label80.Text = "Month";
     //
     // Month
     //
     this.Month.EditValue = "1";
     this.Month.Location = new System.Drawing.Point(64, 8);
     this.Month.Name = "Month";
     this.Month.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Month.Properties.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.Month.Size = new System.Drawing.Size(72, 20);
     this.Month.TabIndex = 21;
     this.Month.SelectedIndexChanged += new System.EventHandler(this.Month_SelectedIndexChanged);
     //
     // Year
     //
     this.Year.EditValue = "";
     this.Year.Location = new System.Drawing.Point(192, 8);
     this.Year.Name = "Year";
     this.Year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Year.Size = new System.Drawing.Size(96, 20);
     this.Year.TabIndex = 20;
     this.Year.SelectedIndexChanged += new System.EventHandler(this.Year_SelectedIndexChanged);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(491, 67);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 24;
     this.button1.Text = "Print";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // frmSRFitnessPackage
     //
     this.ClientSize = new System.Drawing.Size(960, 480);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.label79);
     this.Controls.Add(this.label80);
     this.Controls.Add(this.Month);
     this.Controls.Add(this.Year);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.RGFitnessPackage);
     this.Controls.Add(this.gridFitnessPackage);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmSRFitnessPackage";
     this.Text = "frmSRFitnessPackage";
     this.Load += new System.EventHandler(this.frmSRFitnessPackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.RGFitnessPackage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFitnessPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 54
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmClass));
     this.grpMDClass = new DevExpress.XtraEditors.GroupControl();
     this.btnClass_Add = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btnClass_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_ClassType = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_ClassType = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMD_Class = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Class = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_RPClassType = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDClass)).BeginInit();
     this.grpMDClass.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_ClassType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_ClassType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMD_Class)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Class)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RPClassType)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDClass
     //
     this.grpMDClass.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDClass.Appearance.Options.UseBackColor = true;
     this.grpMDClass.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpMDClass.Controls.Add(this.btnClass_Add);
     this.grpMDClass.Controls.Add(this.btnClass_Del);
     this.grpMDClass.Controls.Add(this.btn_Add);
     this.grpMDClass.Controls.Add(this.btn_Del);
     this.grpMDClass.Controls.Add(this.groupControl2);
     this.grpMDClass.Controls.Add(this.groupControl1);
     this.grpMDClass.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDClass.Location = new System.Drawing.Point(8, 0);
     this.grpMDClass.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDClass.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDClass.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDClass.Name = "grpMDClass";
     this.grpMDClass.Size = new System.Drawing.Size(970, 560);
     this.grpMDClass.TabIndex = 33;
     this.grpMDClass.Text = "Class";
     //
     // btnClass_Add
     //
     this.btnClass_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnClass_Add.Appearance.Options.UseFont = true;
     this.btnClass_Add.Appearance.Options.UseTextOptions = true;
     this.btnClass_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnClass_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnClass_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnClass_Add.ImageIndex = 0;
     this.btnClass_Add.ImageList = this.imageList1;
     this.btnClass_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnClass_Add.Location = new System.Drawing.Point(8, 272);
     this.btnClass_Add.Name = "btnClass_Add";
     this.btnClass_Add.Size = new System.Drawing.Size(38, 16);
     this.btnClass_Add.TabIndex = 134;
     this.btnClass_Add.Click += new System.EventHandler(this.btnClass_Add_Click);
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // btnClass_Del
     //
     this.btnClass_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnClass_Del.Appearance.Options.UseFont = true;
     this.btnClass_Del.Appearance.Options.UseTextOptions = true;
     this.btnClass_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnClass_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnClass_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnClass_Del.ImageIndex = 1;
     this.btnClass_Del.ImageList = this.imageList1;
     this.btnClass_Del.Location = new System.Drawing.Point(48, 272);
     this.btnClass_Del.Name = "btnClass_Del";
     this.btnClass_Del.Size = new System.Drawing.Size(38, 16);
     this.btnClass_Del.TabIndex = 133;
     this.btnClass_Del.Click += new System.EventHandler(this.btnClass_Del_Click);
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add.Appearance.Options.UseFont = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList = this.imageList1;
     this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location = new System.Drawing.Point(8, 24);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex = 132;
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Del.Appearance.Options.UseFont = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList = this.imageList1;
     this.btn_Del.Location = new System.Drawing.Point(48, 24);
     this.btn_Del.Name = "btn_Del";
     this.btn_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex = 131;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.gridControlMd_ClassType);
     this.groupControl2.Location = new System.Drawing.Point(0, 48);
     this.groupControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.LookAndFeel.UseWindowsXPTheme = false;
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(968, 216);
     this.groupControl2.TabIndex = 128;
     this.groupControl2.Text = "Class Type";
     //
     // gridControlMd_ClassType
     //
     this.gridControlMd_ClassType.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMd_ClassType.EmbeddedNavigator
     //
     this.gridControlMd_ClassType.EmbeddedNavigator.Name = "";
     this.gridControlMd_ClassType.Location = new System.Drawing.Point(2, 20);
     this.gridControlMd_ClassType.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_ClassType.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_ClassType.MainView = this.gridViewMd_ClassType;
     this.gridControlMd_ClassType.Name = "gridControlMd_ClassType";
     this.gridControlMd_ClassType.Size = new System.Drawing.Size(964, 194);
     this.gridControlMd_ClassType.TabIndex = 126;
     this.gridControlMd_ClassType.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                            this.gridViewMd_ClassType});
     //
     // gridViewMd_ClassType
     //
     this.gridViewMd_ClassType.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumn3,
                                                                                                 this.gridColumn4});
     this.gridViewMd_ClassType.GridControl = this.gridControlMd_ClassType;
     this.gridViewMd_ClassType.Name = "gridViewMd_ClassType";
     this.gridViewMd_ClassType.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMd_ClassType.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_ClassType.OptionsCustomization.AllowSort = false;
     this.gridViewMd_ClassType.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_ClassType.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_ClassType_FocusedRowChanged);
     this.gridViewMd_ClassType.LostFocus += new System.EventHandler(this.gridViewMd_ClassType_LostFocus);
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Class Type Id";
     this.gridColumn3.FieldName = "nClassTypeID";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Description";
     this.gridColumn4.FieldName = "strDescription";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.gridControlMD_Class);
     this.groupControl1.Location = new System.Drawing.Point(0, 296);
     this.groupControl1.LookAndFeel.SkinName = "The Asphalt World";
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.LookAndFeel.UseWindowsXPTheme = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(968, 256);
     this.groupControl1.TabIndex = 127;
     this.groupControl1.Text = "Class";
     //
     // gridControlMD_Class
     //
     this.gridControlMD_Class.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMD_Class.EmbeddedNavigator
     //
     this.gridControlMD_Class.EmbeddedNavigator.Name = "";
     this.gridControlMD_Class.Location = new System.Drawing.Point(2, 20);
     this.gridControlMD_Class.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMD_Class.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMD_Class.MainView = this.gridViewMd_Class;
     this.gridControlMD_Class.Name = "gridControlMD_Class";
     this.gridControlMD_Class.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                  this.lk_RPClassType});
     this.gridControlMD_Class.Size = new System.Drawing.Size(964, 250);
     this.gridControlMD_Class.TabIndex = 127;
     this.gridControlMD_Class.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                        this.gridViewMd_Class});
     //
     // gridViewMd_Class
     //
     this.gridViewMd_Class.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                             this.gridColumn1,
                                                                                             this.gridColumn2});
     this.gridViewMd_Class.GridControl = this.gridControlMD_Class;
     this.gridViewMd_Class.Name = "gridViewMd_Class";
     this.gridViewMd_Class.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Class.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Class.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Class.LostFocus += new System.EventHandler(this.gridViewMd_Class_LostFocus);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Class Code";
     this.gridColumn1.FieldName = "strClassCode";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Description";
     this.gridColumn2.FieldName = "strDescription";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // lk_RPClassType
     //
     this.lk_RPClassType.AutoHeight = false;
     this.lk_RPClassType.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_RPClassType.Name = "lk_RPClassType";
     //
     // frmClass
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(990, 560);
     this.Controls.Add(this.grpMDClass);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmClass";
     this.Text = "frmClass";
     this.Load += new System.EventHandler(this.frmClass_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDClass)).EndInit();
     this.grpMDClass.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_ClassType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_ClassType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMD_Class)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Class)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RPClassType)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DataBillFrm));
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditSalesUnitID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditEditQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditEditPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditEditDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditSortNo1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlEditor = new DevExpress.XtraGrid.GridControl();
     this.mastergridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditEditStoreTrDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditPERSONID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditEMPID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditEditTotalkasm = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditEditExtraFees = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditEditREM = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditStoreID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditBillPayTypeID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditBillDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditBillEdit = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.xtraTabControlEditor = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageAdd = new DevExpress.XtraTab.XtraTabPage();
     this.BtnPrint = new DevExpress.XtraEditors.SimpleButton();
     this.BtnSave = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.LblTotal = new DevExpress.XtraEditors.LabelControl();
     this.GridControlAddDetials = new DevExpress.XtraGrid.GridControl();
     this.gridViewAdd = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnStoreTrID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSanfID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumnPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumnDiscount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumnSort = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSort = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.TxtREM = new DevExpress.XtraEditors.MemoEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.TxtExtraFees = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.TxtTotalkasm = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.LUEStoreID = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEBillPayType = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEEMPID = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEPERSONID = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.DEStoreTrDate = new DevExpress.XtraEditors.DateEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.TxtStoreTrIDDAY = new DevExpress.XtraEditors.TextEdit();
     this.TxtStoreTrIDTYPE = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPageEdit = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlEditorDetial = new DevExpress.XtraGrid.GridControl();
     this.gridViewEditDetial = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnEditDetialSanfID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditDetialSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditDetailQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditDetialPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditDetialDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDetialSortNo = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditDetialDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDetialUpdate = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSalesUnitID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditSortNo1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mastergridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditPERSONID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditEMPID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditTotalkasm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditExtraFees)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditEditREM)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditStoreID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditBillPayTypeID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditBillDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditBillEdit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlEditor)).BeginInit();
     this.xtraTabControlEditor.SuspendLayout();
     this.xtraTabPageAdd.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlAddDetials)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSort)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtREM.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtExtraFees.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtTotalkasm.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEStoreID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEBillPayType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEEMPID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEPERSONID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDDAY.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDTYPE.Properties)).BeginInit();
     this.xtraTabPageEdit.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditorDetial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewEditDetial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDetialSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditDetailQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialSortNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditDetialDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialUpdate)).BeginInit();
     this.SuspendLayout();
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "رقم فاتورة المشتريات";
     this.gridColumn1.FieldName = "WaredID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "الصنف";
     this.gridColumn2.ColumnEdit = this.repositoryItemLookUpEditEditSanfID;
     this.gridColumn2.FieldName = "SanfID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 92;
     //
     // repositoryItemLookUpEditEditSanfID
     //
     this.repositoryItemLookUpEditEditSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditEditSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنــف"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "نوع وحدة البيع")});
     this.repositoryItemLookUpEditEditSanfID.Name = "repositoryItemLookUpEditEditSanfID";
     this.repositoryItemLookUpEditEditSanfID.NullText = "";
     this.repositoryItemLookUpEditEditSanfID.NullValuePrompt = "اختار اسم الصنف";
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "وحدة البيع";
     this.gridColumn24.ColumnEdit = this.repositoryItemLookUpEditEditSalesUnitID;
     this.gridColumn24.FieldName = "SalesUnitID";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 1;
     //
     // repositoryItemLookUpEditEditSalesUnitID
     //
     this.repositoryItemLookUpEditEditSalesUnitID.AutoHeight = false;
     this.repositoryItemLookUpEditEditSalesUnitID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditSalesUnitID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitID", "SalesUnitID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "وحدة البيع")});
     this.repositoryItemLookUpEditEditSalesUnitID.Name = "repositoryItemLookUpEditEditSalesUnitID";
     this.repositoryItemLookUpEditEditSalesUnitID.NullText = "";
     this.repositoryItemLookUpEditEditSalesUnitID.NullValuePrompt = "اختار وحدة البيع";
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "UnitID";
     this.gridColumn12.FieldName = "UnitID";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "كمية الوارد";
     this.gridColumn4.ColumnEdit = this.repositoryItemTextEditEditQuantity;
     this.gridColumn4.FieldName = "WaredQuantity";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 105;
     //
     // repositoryItemTextEditEditQuantity
     //
     this.repositoryItemTextEditEditQuantity.AutoHeight = false;
     this.repositoryItemTextEditEditQuantity.DisplayFormat.FormatString = "d";
     this.repositoryItemTextEditEditQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditQuantity.EditFormat.FormatString = "d";
     this.repositoryItemTextEditEditQuantity.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditQuantity.Mask.EditMask = "d";
     this.repositoryItemTextEditEditQuantity.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditEditQuantity.Name = "repositoryItemTextEditEditQuantity";
     this.repositoryItemTextEditEditQuantity.NullValuePrompt = "ادخل الكميه";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "سعر الشراء";
     this.gridColumn5.ColumnEdit = this.repositoryItemCalcEditEditPrice;
     this.gridColumn5.FieldName = "WaredPrice";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 3;
     this.gridColumn5.Width = 105;
     //
     // repositoryItemCalcEditEditPrice
     //
     this.repositoryItemCalcEditEditPrice.AutoHeight = false;
     this.repositoryItemCalcEditEditPrice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditEditPrice.DisplayFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditPrice.EditFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditPrice.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditPrice.Mask.EditMask = "c2";
     this.repositoryItemCalcEditEditPrice.Name = "repositoryItemCalcEditEditPrice";
     this.repositoryItemCalcEditEditPrice.NullValuePrompt = "سعر الوحده";
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "الخصم";
     this.gridColumn6.ColumnEdit = this.repositoryItemCalcEditEditDiscount;
     this.gridColumn6.FieldName = "DiscountPercent";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     this.gridColumn6.Width = 105;
     //
     // repositoryItemCalcEditEditDiscount
     //
     this.repositoryItemCalcEditEditDiscount.AutoHeight = false;
     this.repositoryItemCalcEditEditDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditEditDiscount.DisplayFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditDiscount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditDiscount.EditFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditDiscount.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditDiscount.Mask.EditMask = "c2";
     this.repositoryItemCalcEditEditDiscount.Name = "repositoryItemCalcEditEditDiscount";
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "ترتيب";
     this.gridColumn7.ColumnEdit = this.repositoryItemButtonEditEditSortNo1;
     this.gridColumn7.FieldName = "SortNo";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 105;
     //
     // repositoryItemButtonEditEditSortNo1
     //
     this.repositoryItemButtonEditEditSortNo1.AutoHeight = false;
     this.repositoryItemButtonEditEditSortNo1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Up),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.repositoryItemButtonEditEditSortNo1.Name = "repositoryItemButtonEditEditSortNo1";
     this.repositoryItemButtonEditEditSortNo1.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "المجموع";
     this.gridColumn9.DisplayFormat.FormatString = "c2";
     this.gridColumn9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.FieldName = "Total";
     this.gridColumn9.GroupFormat.FormatString = "c2";
     this.gridColumn9.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 5;
     //
     // gridControlEditor
     //
     this.gridControlEditor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlEditor.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.gridControlEditor.Location = new System.Drawing.Point(2, 21);
     this.gridControlEditor.MainView = this.mastergridView;
     this.gridControlEditor.Name = "gridControlEditor";
     this.gridControlEditor.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditEditSanfID,
     this.repositoryItemTextEditEditQuantity,
     this.repositoryItemCalcEditEditPrice,
     this.repositoryItemCalcEditEditDiscount,
     this.repositoryItemButtonEditEditSortNo1,
     this.repositoryItemDateEditEditStoreTrDate,
     this.repositoryItemLookUpEditEditPERSONID,
     this.repositoryItemLookUpEditEditEMPID,
     this.repositoryItemTextEditEditTotalkasm,
     this.repositoryItemTextEditEditExtraFees,
     this.repositoryItemLookUpEditEditStoreID,
     this.repositoryItemLookUpEditEditBillPayTypeID,
     this.repositoryItemLookUpEditEditSalesUnitID,
     this.repositoryItemMemoExEditEditREM,
     this.repositoryItemButtonEditEditBillDelete,
     this.repositoryItemButtonEditBillEdit});
     this.gridControlEditor.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.gridControlEditor.Size = new System.Drawing.Size(751, 232);
     this.gridControlEditor.TabIndex = 10;
     this.gridControlEditor.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.mastergridView});
     //
     // mastergridView
     //
     this.mastergridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn8,
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn20,
     this.gridColumn22,
     this.gridColumn3,
     this.gridColumn19});
     this.mastergridView.GridControl = this.gridControlEditor;
     this.mastergridView.Name = "mastergridView";
     this.mastergridView.OptionsView.ColumnAutoWidth = false;
     this.mastergridView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.mastergridView_FocusedRowChanged);
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "StoreTrID";
     this.gridColumn10.FieldName = "StoreTrID";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "تاريخ الفاتوره";
     this.gridColumn11.ColumnEdit = this.repositoryItemDateEditEditStoreTrDate;
     this.gridColumn11.FieldName = "StoreTrDate";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 9;
     this.gridColumn11.Width = 96;
     //
     // repositoryItemDateEditEditStoreTrDate
     //
     this.repositoryItemDateEditEditStoreTrDate.AutoHeight = false;
     this.repositoryItemDateEditEditStoreTrDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditEditStoreTrDate.Name = "repositoryItemDateEditEditStoreTrDate";
     this.repositoryItemDateEditEditStoreTrDate.NullValuePrompt = "اختار التاريخ";
     this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "رقم الفاتوره";
     this.gridColumn8.FieldName = "StoreTrIDTYPE";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 10;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "المورد";
     this.gridColumn13.ColumnEdit = this.repositoryItemLookUpEditEditPERSONID;
     this.gridColumn13.FieldName = "PERSONID";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 8;
     this.gridColumn13.Width = 119;
     //
     // repositoryItemLookUpEditEditPERSONID
     //
     this.repositoryItemLookUpEditEditPERSONID.AutoHeight = false;
     this.repositoryItemLookUpEditEditPERSONID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditPERSONID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PERSON", "اسم المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Tel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Mobil", "موبيل")});
     this.repositoryItemLookUpEditEditPERSONID.Name = "repositoryItemLookUpEditEditPERSONID";
     this.repositoryItemLookUpEditEditPERSONID.NullText = "";
     this.repositoryItemLookUpEditEditPERSONID.NullValuePrompt = "اختار اسم المورد";
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "المستلم";
     this.gridColumn14.ColumnEdit = this.repositoryItemLookUpEditEditEMPID;
     this.gridColumn14.FieldName = "EMPID";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 2;
     this.gridColumn14.Width = 117;
     //
     // repositoryItemLookUpEditEditEMPID
     //
     this.repositoryItemLookUpEditEditEMPID.AutoHeight = false;
     this.repositoryItemLookUpEditEditEMPID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditEMPID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPID", "EMPID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPNAME", "اسم المستلم"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("JOBName", "اسم الوظيفه"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPPHONE", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPMOBIL", "موبيل")});
     this.repositoryItemLookUpEditEditEMPID.Name = "repositoryItemLookUpEditEditEMPID";
     this.repositoryItemLookUpEditEditEMPID.NullText = "";
     this.repositoryItemLookUpEditEditEMPID.NullValuePrompt = "اختار اسم المسئول";
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "خصم كلي";
     this.gridColumn16.ColumnEdit = this.repositoryItemTextEditEditTotalkasm;
     this.gridColumn16.FieldName = "Totalkasm";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 7;
     this.gridColumn16.Width = 67;
     //
     // repositoryItemTextEditEditTotalkasm
     //
     this.repositoryItemTextEditEditTotalkasm.AutoHeight = false;
     this.repositoryItemTextEditEditTotalkasm.DisplayFormat.FormatString = "c2";
     this.repositoryItemTextEditEditTotalkasm.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditTotalkasm.EditFormat.FormatString = "c2";
     this.repositoryItemTextEditEditTotalkasm.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditTotalkasm.Mask.EditMask = "c2";
     this.repositoryItemTextEditEditTotalkasm.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditEditTotalkasm.Name = "repositoryItemTextEditEditTotalkasm";
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "مصروفات أضافيه";
     this.gridColumn17.ColumnEdit = this.repositoryItemTextEditEditExtraFees;
     this.gridColumn17.FieldName = "ExtraFees";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 6;
     this.gridColumn17.Width = 94;
     //
     // repositoryItemTextEditEditExtraFees
     //
     this.repositoryItemTextEditEditExtraFees.AutoHeight = false;
     this.repositoryItemTextEditEditExtraFees.DisplayFormat.FormatString = "c2";
     this.repositoryItemTextEditEditExtraFees.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditExtraFees.EditFormat.FormatString = "c2";
     this.repositoryItemTextEditEditExtraFees.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditExtraFees.Mask.EditMask = "c2";
     this.repositoryItemTextEditEditExtraFees.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditEditExtraFees.Name = "repositoryItemTextEditEditExtraFees";
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "معلومات";
     this.gridColumn18.ColumnEdit = this.repositoryItemMemoExEditEditREM;
     this.gridColumn18.FieldName = "REM";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 5;
     this.gridColumn18.Width = 56;
     //
     // repositoryItemMemoExEditEditREM
     //
     this.repositoryItemMemoExEditEditREM.AutoHeight = false;
     this.repositoryItemMemoExEditEditREM.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditEditREM.Name = "repositoryItemMemoExEditEditREM";
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "المخزن";
     this.gridColumn20.ColumnEdit = this.repositoryItemLookUpEditEditStoreID;
     this.gridColumn20.FieldName = "StoreID";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 4;
     this.gridColumn20.Width = 125;
     //
     // repositoryItemLookUpEditEditStoreID
     //
     this.repositoryItemLookUpEditEditStoreID.AutoHeight = false;
     this.repositoryItemLookUpEditEditStoreID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditStoreID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreID", "StoreID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreName", "اسم المخزن"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreOfficial", "السئول"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreTel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreMobil", "موبيل")});
     this.repositoryItemLookUpEditEditStoreID.Name = "repositoryItemLookUpEditEditStoreID";
     this.repositoryItemLookUpEditEditStoreID.NullText = "";
     this.repositoryItemLookUpEditEditStoreID.NullValuePrompt = "اختار المخزن";
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "نوع الدفع";
     this.gridColumn22.ColumnEdit = this.repositoryItemLookUpEditEditBillPayTypeID;
     this.gridColumn22.FieldName = "BillPayTypeID";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 3;
     this.gridColumn22.Width = 86;
     //
     // repositoryItemLookUpEditEditBillPayTypeID
     //
     this.repositoryItemLookUpEditEditBillPayTypeID.AutoHeight = false;
     this.repositoryItemLookUpEditEditBillPayTypeID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditBillPayTypeID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeID", "BillPayTypeID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeName", "نوع الدفع")});
     this.repositoryItemLookUpEditEditBillPayTypeID.Name = "repositoryItemLookUpEditEditBillPayTypeID";
     this.repositoryItemLookUpEditEditBillPayTypeID.NullText = "";
     this.repositoryItemLookUpEditEditBillPayTypeID.NullValuePrompt = "اختار نوع الدفع";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "حــــذف";
     this.gridColumn3.ColumnEdit = this.repositoryItemButtonEditEditBillDelete;
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 61;
     //
     // repositoryItemButtonEditEditBillDelete
     //
     this.repositoryItemButtonEditEditBillDelete.AutoHeight = false;
     this.repositoryItemButtonEditEditBillDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditEditBillDelete.Name = "repositoryItemButtonEditEditBillDelete";
     this.repositoryItemButtonEditEditBillDelete.NullText = "حذف";
     this.repositoryItemButtonEditEditBillDelete.NullValuePrompt = "حذف";
     this.repositoryItemButtonEditEditBillDelete.NullValuePromptShowForEmptyValue = true;
     this.repositoryItemButtonEditEditBillDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditEditBillDelete.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditEditBillDelete_ButtonClick);
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "تعديــل";
     this.gridColumn19.ColumnEdit = this.repositoryItemButtonEditBillEdit;
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     this.gridColumn19.Width = 57;
     //
     // repositoryItemButtonEditBillEdit
     //
     this.repositoryItemButtonEditBillEdit.AutoHeight = false;
     this.repositoryItemButtonEditBillEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditBillEdit.Name = "repositoryItemButtonEditBillEdit";
     this.repositoryItemButtonEditBillEdit.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditBillEdit.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditBillEdit_ButtonClick);
     //
     // xtraTabControlEditor
     //
     this.xtraTabControlEditor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.xtraTabControlEditor.Location = new System.Drawing.Point(12, 12);
     this.xtraTabControlEditor.Name = "xtraTabControlEditor";
     this.xtraTabControlEditor.SelectedTabPage = this.xtraTabPageAdd;
     this.xtraTabControlEditor.Size = new System.Drawing.Size(768, 542);
     this.xtraTabControlEditor.TabIndex = 0;
     this.xtraTabControlEditor.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageAdd,
     this.xtraTabPageEdit});
     this.xtraTabControlEditor.SelectedPageChanging += new DevExpress.XtraTab.TabPageChangingEventHandler(this.xtraTabControlEditor_SelectedPageChanging);
     //
     // xtraTabPageAdd
     //
     this.xtraTabPageAdd.Controls.Add(this.BtnPrint);
     this.xtraTabPageAdd.Controls.Add(this.BtnSave);
     this.xtraTabPageAdd.Controls.Add(this.groupControl3);
     this.xtraTabPageAdd.Controls.Add(this.GridControlAddDetials);
     this.xtraTabPageAdd.Controls.Add(this.groupControl2);
     this.xtraTabPageAdd.Controls.Add(this.groupControl1);
     this.xtraTabPageAdd.Name = "xtraTabPageAdd";
     this.xtraTabPageAdd.Size = new System.Drawing.Size(762, 514);
     this.xtraTabPageAdd.Text = "اضافه";
     //
     // BtnPrint
     //
     this.BtnPrint.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.BtnPrint.Enabled = false;
     this.BtnPrint.Location = new System.Drawing.Point(8, 480);
     this.BtnPrint.Name = "BtnPrint";
     this.BtnPrint.Size = new System.Drawing.Size(154, 32);
     this.BtnPrint.TabIndex = 4;
     this.BtnPrint.Text = "طباعة اذن الاضافه";
     this.BtnPrint.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // BtnSave
     //
     this.BtnSave.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.BtnSave.Enabled = false;
     this.BtnSave.Location = new System.Drawing.Point(188, 480);
     this.BtnSave.Name = "BtnSave";
     this.BtnSave.Size = new System.Drawing.Size(387, 32);
     this.BtnSave.TabIndex = 3;
     this.BtnSave.Text = "حفـــــــــــــــظ و اغــــــــلاق";
     this.BtnSave.ToolTip = "حفـــــــــــــــظ و اغــــــــلاق";
     this.BtnSave.ToolTipTitle = "حفظ الفاتوره F6";
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.labelControl6);
     this.groupControl3.Controls.Add(this.LblTotal);
     this.groupControl3.Location = new System.Drawing.Point(8, 3);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(223, 198);
     this.groupControl3.TabIndex = 4;
     this.groupControl3.Text = "الاجمالي";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(133, 76);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(69, 13);
     this.labelControl6.TabIndex = 2;
     this.labelControl6.Text = "اجمالي الفاتوره";
     //
     // LblTotal
     //
     this.LblTotal.Appearance.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LblTotal.Appearance.ForeColor = System.Drawing.Color.Green;
     this.LblTotal.Location = new System.Drawing.Point(21, 90);
     this.LblTotal.Name = "LblTotal";
     this.LblTotal.Size = new System.Drawing.Size(17, 33);
     this.LblTotal.TabIndex = 3;
     this.LblTotal.Text = "0";
     //
     // GridControlAddDetials
     //
     this.GridControlAddDetials.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.First.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.GridControlAddDetials.Location = new System.Drawing.Point(3, 207);
     this.GridControlAddDetials.MainView = this.gridViewAdd;
     this.GridControlAddDetials.Name = "GridControlAddDetials";
     this.GridControlAddDetials.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditSanfID,
     this.repositoryItemTextEditQuantity,
     this.repositoryItemCalcEditPrice,
     this.repositoryItemCalcEditDiscount,
     this.repositoryItemButtonEditSort,
     this.repositoryItemButtonEditDelete});
     this.GridControlAddDetials.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.GridControlAddDetials.Size = new System.Drawing.Size(755, 268);
     this.GridControlAddDetials.TabIndex = 2;
     this.GridControlAddDetials.UseEmbeddedNavigator = true;
     this.GridControlAddDetials.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewAdd});
     this.GridControlAddDetials.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEventGrid);
     //
     // gridViewAdd
     //
     this.gridViewAdd.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnStoreTrID,
     this.gridColumnSanfID,
     this.gridColumnQuantity,
     this.gridColumnPrice,
     this.gridColumnDiscount,
     this.gridColumnSort,
     this.gridColumnDelete,
     this.gridColumnTotal});
     this.gridViewAdd.GridControl = this.GridControlAddDetials;
     this.gridViewAdd.Name = "gridViewAdd";
     this.gridViewAdd.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     this.gridViewAdd.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     this.gridViewAdd.RowCountChanged += new System.EventHandler(this.gridViewAdd_RowCountChanged);
     //
     // gridColumnStoreTrID
     //
     this.gridColumnStoreTrID.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnStoreTrID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnStoreTrID.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnStoreTrID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnStoreTrID.Caption = "رقم فاتورة المشتريات";
     this.gridColumnStoreTrID.FieldName = "StoreTrID";
     this.gridColumnStoreTrID.Name = "gridColumnStoreTrID";
     this.gridColumnStoreTrID.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumnSanfID
     //
     this.gridColumnSanfID.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSanfID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSanfID.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSanfID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSanfID.Caption = "كود الصنف";
     this.gridColumnSanfID.ColumnEdit = this.repositoryItemLookUpEditSanfID;
     this.gridColumnSanfID.FieldName = "SanfID";
     this.gridColumnSanfID.Name = "gridColumnSanfID";
     this.gridColumnSanfID.Visible = true;
     this.gridColumnSanfID.VisibleIndex = 0;
     this.gridColumnSanfID.Width = 220;
     //
     // repositoryItemLookUpEditSanfID
     //
     this.repositoryItemLookUpEditSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنــف"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "نوع وحدة البيع")});
     this.repositoryItemLookUpEditSanfID.Name = "repositoryItemLookUpEditSanfID";
     this.repositoryItemLookUpEditSanfID.NullText = "";
     this.repositoryItemLookUpEditSanfID.NullValuePrompt = "اختار اسم الصنف";
     this.repositoryItemLookUpEditSanfID.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     //
     // gridColumnQuantity
     //
     this.gridColumnQuantity.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnQuantity.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnQuantity.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnQuantity.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnQuantity.Caption = "كمية الوارد";
     this.gridColumnQuantity.ColumnEdit = this.repositoryItemTextEditQuantity;
     this.gridColumnQuantity.FieldName = "Quantity";
     this.gridColumnQuantity.Name = "gridColumnQuantity";
     this.gridColumnQuantity.Visible = true;
     this.gridColumnQuantity.VisibleIndex = 1;
     this.gridColumnQuantity.Width = 112;
     //
     // repositoryItemTextEditQuantity
     //
     this.repositoryItemTextEditQuantity.AutoHeight = false;
     this.repositoryItemTextEditQuantity.DisplayFormat.FormatString = "d";
     this.repositoryItemTextEditQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditQuantity.EditFormat.FormatString = "d";
     this.repositoryItemTextEditQuantity.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditQuantity.Mask.EditMask = "d";
     this.repositoryItemTextEditQuantity.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditQuantity.Name = "repositoryItemTextEditQuantity";
     this.repositoryItemTextEditQuantity.NullValuePrompt = "ادخل الكميه";
     //
     // gridColumnPrice
     //
     this.gridColumnPrice.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnPrice.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnPrice.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnPrice.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnPrice.Caption = "سعر الشراء";
     this.gridColumnPrice.ColumnEdit = this.repositoryItemCalcEditPrice;
     this.gridColumnPrice.FieldName = "Price";
     this.gridColumnPrice.Name = "gridColumnPrice";
     this.gridColumnPrice.Visible = true;
     this.gridColumnPrice.VisibleIndex = 2;
     this.gridColumnPrice.Width = 92;
     //
     // repositoryItemCalcEditPrice
     //
     this.repositoryItemCalcEditPrice.AutoHeight = false;
     this.repositoryItemCalcEditPrice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditPrice.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditPrice.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditPrice.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditPrice.Mask.EditMask = "f2";
     this.repositoryItemCalcEditPrice.Name = "repositoryItemCalcEditPrice";
     this.repositoryItemCalcEditPrice.NullValuePrompt = "سعر الوحده";
     //
     // gridColumnDiscount
     //
     this.gridColumnDiscount.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDiscount.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDiscount.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDiscount.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDiscount.Caption = "الخصم";
     this.gridColumnDiscount.ColumnEdit = this.repositoryItemCalcEditDiscount;
     this.gridColumnDiscount.FieldName = "Discount";
     this.gridColumnDiscount.Name = "gridColumnDiscount";
     this.gridColumnDiscount.OptionsColumn.TabStop = false;
     this.gridColumnDiscount.Visible = true;
     this.gridColumnDiscount.VisibleIndex = 3;
     this.gridColumnDiscount.Width = 86;
     //
     // repositoryItemCalcEditDiscount
     //
     this.repositoryItemCalcEditDiscount.AutoHeight = false;
     this.repositoryItemCalcEditDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditDiscount.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditDiscount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDiscount.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditDiscount.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDiscount.Mask.EditMask = "f2";
     this.repositoryItemCalcEditDiscount.Name = "repositoryItemCalcEditDiscount";
     //
     // gridColumnSort
     //
     this.gridColumnSort.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSort.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSort.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSort.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSort.Caption = "ترتيب";
     this.gridColumnSort.ColumnEdit = this.repositoryItemButtonEditSort;
     this.gridColumnSort.FieldName = "SortNo";
     this.gridColumnSort.Name = "gridColumnSort";
     this.gridColumnSort.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumnSort.OptionsColumn.TabStop = false;
     this.gridColumnSort.Width = 80;
     //
     // repositoryItemButtonEditSort
     //
     this.repositoryItemButtonEditSort.AutoHeight = false;
     this.repositoryItemButtonEditSort.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Up),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.repositoryItemButtonEditSort.Name = "repositoryItemButtonEditSort";
     this.repositoryItemButtonEditSort.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSort.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSort_ButtonClick);
     //
     // gridColumnDelete
     //
     this.gridColumnDelete.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.Caption = "حـــذف";
     this.gridColumnDelete.ColumnEdit = this.repositoryItemButtonEditDelete;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Width = 117;
     //
     // repositoryItemButtonEditDelete
     //
     this.repositoryItemButtonEditDelete.AutoHeight = false;
     this.repositoryItemButtonEditDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDelete.Name = "repositoryItemButtonEditDelete";
     this.repositoryItemButtonEditDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumnTotal
     //
     this.gridColumnTotal.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnTotal.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnTotal.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnTotal.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnTotal.Caption = "المجموع";
     this.gridColumnTotal.DisplayFormat.FormatString = "c2";
     this.gridColumnTotal.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnTotal.FieldName = "Total";
     this.gridColumnTotal.GroupFormat.FormatString = "c2";
     this.gridColumnTotal.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnTotal.Name = "gridColumnTotal";
     this.gridColumnTotal.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnTotal.OptionsColumn.ReadOnly = true;
     this.gridColumnTotal.OptionsColumn.TabStop = false;
     this.gridColumnTotal.Visible = true;
     this.gridColumnTotal.VisibleIndex = 4;
     this.gridColumnTotal.Width = 78;
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.TxtREM);
     this.groupControl2.Controls.Add(this.labelControl12);
     this.groupControl2.Controls.Add(this.TxtExtraFees);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.TxtTotalkasm);
     this.groupControl2.Controls.Add(this.labelControl8);
     this.groupControl2.Location = new System.Drawing.Point(237, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControl2.Size = new System.Drawing.Size(263, 198);
     this.groupControl2.TabIndex = 1;
     this.groupControl2.Text = "مصاريف اضافيه و الخصم";
     //
     // TxtREM
     //
     this.TxtREM.Location = new System.Drawing.Point(5, 75);
     this.TxtREM.Name = "TxtREM";
     this.TxtREM.Properties.MaxLength = 100;
     this.TxtREM.Properties.NullValuePrompt = "معلومات عن الفاتوره";
     this.TxtREM.Size = new System.Drawing.Size(199, 84);
     this.TxtREM.TabIndex = 2;
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(210, 78);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(39, 13);
     this.labelControl12.TabIndex = 4;
     this.labelControl12.Text = "معلومات";
     //
     // TxtExtraFees
     //
     this.TxtExtraFees.EditValue = "0";
     this.TxtExtraFees.Location = new System.Drawing.Point(5, 49);
     this.TxtExtraFees.Name = "TxtExtraFees";
     this.TxtExtraFees.Properties.DisplayFormat.FormatString = "c2";
     this.TxtExtraFees.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtExtraFees.Properties.EditFormat.FormatString = "c2";
     this.TxtExtraFees.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtExtraFees.Properties.Mask.EditMask = "f2";
     this.TxtExtraFees.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.TxtExtraFees.Properties.NullValuePrompt = "ادخل قيمة المصارف الاضافيه";
     this.TxtExtraFees.Size = new System.Drawing.Size(150, 20);
     this.TxtExtraFees.TabIndex = 1;
     this.TxtExtraFees.EditValueChanged += new System.EventHandler(this.TxtExtraPayValue_EditValueChanged);
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(181, 52);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(68, 13);
     this.labelControl5.TabIndex = 0;
     this.labelControl5.Text = "مصاريف اضافيه";
     //
     // TxtTotalkasm
     //
     this.TxtTotalkasm.EditValue = "0";
     this.TxtTotalkasm.Location = new System.Drawing.Point(5, 24);
     this.TxtTotalkasm.Name = "TxtTotalkasm";
     this.TxtTotalkasm.Properties.DisplayFormat.FormatString = "c2";
     this.TxtTotalkasm.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtTotalkasm.Properties.EditFormat.FormatString = "c2";
     this.TxtTotalkasm.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtTotalkasm.Properties.Mask.EditMask = "f2";
     this.TxtTotalkasm.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.TxtTotalkasm.Properties.NullValuePrompt = "ادخل قيمة الخصم الكلي";
     this.TxtTotalkasm.Size = new System.Drawing.Size(150, 20);
     this.TxtTotalkasm.TabIndex = 0;
     this.TxtTotalkasm.EditValueChanged += new System.EventHandler(this.TxtDiscount_EditValueChanged);
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(202, 27);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(47, 13);
     this.labelControl8.TabIndex = 0;
     this.labelControl8.Text = "خصم كلي";
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.LUEStoreID);
     this.groupControl1.Controls.Add(this.LUEBillPayType);
     this.groupControl1.Controls.Add(this.LUEEMPID);
     this.groupControl1.Controls.Add(this.LUEPERSONID);
     this.groupControl1.Controls.Add(this.labelControl11);
     this.groupControl1.Controls.Add(this.DEStoreTrDate);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.TxtStoreTrIDDAY);
     this.groupControl1.Controls.Add(this.TxtStoreTrIDTYPE);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.labelControl9);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Location = new System.Drawing.Point(506, 3);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControl1.Size = new System.Drawing.Size(252, 198);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "بيانات عامــه";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(206, 178);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(41, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "نوع الدفع";
     //
     // LUEStoreID
     //
     this.LUEStoreID.Location = new System.Drawing.Point(5, 150);
     this.LUEStoreID.Name = "LUEStoreID";
     this.LUEStoreID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEStoreID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreName", "اسم المخزن"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StorePlace", "عنوان"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreTel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreMobil", "موبيل")});
     this.LUEStoreID.Properties.NullText = "";
     this.LUEStoreID.Properties.NullValuePrompt = "اختار اسم المخزن";
     this.LUEStoreID.Size = new System.Drawing.Size(150, 20);
     this.LUEStoreID.TabIndex = 3;
     //
     // LUEBillPayType
     //
     this.LUEBillPayType.Location = new System.Drawing.Point(5, 175);
     this.LUEBillPayType.Name = "LUEBillPayType";
     this.LUEBillPayType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEBillPayType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeName", "اسم نوع الدفع")});
     this.LUEBillPayType.Properties.NullText = "";
     this.LUEBillPayType.Properties.NullValuePrompt = "اختار نوع الدفع";
     this.LUEBillPayType.Size = new System.Drawing.Size(150, 20);
     this.LUEBillPayType.TabIndex = 4;
     //
     // LUEEMPID
     //
     this.LUEEMPID.Location = new System.Drawing.Point(5, 125);
     this.LUEEMPID.Name = "LUEEMPID";
     this.LUEEMPID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEEMPID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPNAME", "اسم المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPPHONE", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPMOBIL", "موبيل")});
     this.LUEEMPID.Properties.NullText = "";
     this.LUEEMPID.Properties.NullValuePrompt = "اختار اسم المستــلم";
     this.LUEEMPID.Size = new System.Drawing.Size(150, 20);
     this.LUEEMPID.TabIndex = 2;
     //
     // LUEPERSONID
     //
     this.LUEPERSONID.Location = new System.Drawing.Point(5, 100);
     this.LUEPERSONID.Name = "LUEPERSONID";
     this.LUEPERSONID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEPERSONID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PERSON", "اسم المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Addess", "عنوان المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Tel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Mobil", "محمول")});
     this.LUEPERSONID.Properties.NullText = "";
     this.LUEPERSONID.Properties.NullValuePrompt = "اختار اسم المورد";
     this.LUEPERSONID.Size = new System.Drawing.Size(150, 20);
     this.LUEPERSONID.TabIndex = 1;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(215, 153);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(32, 13);
     this.labelControl11.TabIndex = 0;
     this.labelControl11.Text = "المخزن";
     //
     // DEStoreTrDate
     //
     this.DEStoreTrDate.EditValue = null;
     this.DEStoreTrDate.Location = new System.Drawing.Point(5, 75);
     this.DEStoreTrDate.Name = "DEStoreTrDate";
     this.DEStoreTrDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DEStoreTrDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.DEStoreTrDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.DEStoreTrDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.NullValuePrompt = "ادخل تاريخ الفاتوره";
     this.DEStoreTrDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DEStoreTrDate.Size = new System.Drawing.Size(150, 20);
     this.DEStoreTrDate.TabIndex = 0;
     this.DEStoreTrDate.EditValueChanged += new System.EventHandler(this.DEStoreTrDate_EditValueChanged);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(185, 128);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(62, 13);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "المستـــــــلم";
     //
     // TxtStoreTrIDDAY
     //
     this.TxtStoreTrIDDAY.Location = new System.Drawing.Point(5, 49);
     this.TxtStoreTrIDDAY.Name = "TxtStoreTrIDDAY";
     this.TxtStoreTrIDDAY.Properties.ReadOnly = true;
     this.TxtStoreTrIDDAY.Size = new System.Drawing.Size(150, 20);
     this.TxtStoreTrIDDAY.TabIndex = 0;
     this.TxtStoreTrIDDAY.TabStop = false;
     //
     // TxtStoreTrIDTYPE
     //
     this.TxtStoreTrIDTYPE.Location = new System.Drawing.Point(5, 24);
     this.TxtStoreTrIDTYPE.Name = "TxtStoreTrIDTYPE";
     this.TxtStoreTrIDTYPE.Properties.ReadOnly = true;
     this.TxtStoreTrIDTYPE.Size = new System.Drawing.Size(150, 20);
     this.TxtStoreTrIDTYPE.TabIndex = 0;
     this.TxtStoreTrIDTYPE.TabStop = false;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(195, 103);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(52, 13);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "اسم المورد";
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(160, 52);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(87, 13);
     this.labelControl9.TabIndex = 0;
     this.labelControl9.Text = "رقم الفاتوره اليومي";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(195, 78);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(52, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "تارخ الفاتوره";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(195, 27);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(52, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "رقم الفاتوره";
     //
     // xtraTabPageEdit
     //
     this.xtraTabPageEdit.Controls.Add(this.groupControl4);
     this.xtraTabPageEdit.Name = "xtraTabPageEdit";
     this.xtraTabPageEdit.Size = new System.Drawing.Size(762, 514);
     this.xtraTabPageEdit.Text = "تعديــل";
     //
     // groupControl4
     //
     this.groupControl4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl4.Controls.Add(this.gridControlEditorDetial);
     this.groupControl4.Controls.Add(this.gridControlEditor);
     this.groupControl4.Location = new System.Drawing.Point(3, 3);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(755, 506);
     this.groupControl4.TabIndex = 4;
     this.groupControl4.Text = "جميع تفاصيل الفاتوره";
     //
     // gridControlEditorDetial
     //
     this.gridControlEditorDetial.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.gridControlEditorDetial.Location = new System.Drawing.Point(2, 262);
     this.gridControlEditorDetial.MainView = this.gridViewEditDetial;
     this.gridControlEditorDetial.Name = "gridControlEditorDetial";
     this.gridControlEditorDetial.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditDetialSanfID,
     this.repositoryItemTextEditDetailQuantity,
     this.repositoryItemCalcEditDetialPrice,
     this.repositoryItemCalcEditDetialDiscount,
     this.repositoryItemButtonEditDetialSortNo,
     this.repositoryItemButtonEditEditDetialDelete,
     this.repositoryItemButtonEditDetialUpdate});
     this.gridControlEditorDetial.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.gridControlEditorDetial.Size = new System.Drawing.Size(751, 242);
     this.gridControlEditorDetial.TabIndex = 11;
     this.gridControlEditorDetial.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewEditDetial});
     //
     // gridViewEditDetial
     //
     this.gridViewEditDetial.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumnEditDetialSanfID,
     this.gridColumn23,
     this.gridColumn25,
     this.gridColumn26,
     this.gridColumn27,
     this.gridColumn28,
     this.gridColumn29,
     this.gridColumn30});
     this.gridViewEditDetial.GridControl = this.gridControlEditorDetial;
     this.gridViewEditDetial.Name = "gridViewEditDetial";
     this.gridViewEditDetial.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     this.gridViewEditDetial.OptionsView.ColumnAutoWidth = false;
     this.gridViewEditDetial.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewEditDetial_CellValueChanging);
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "رقم فاتورة المشتريات";
     this.gridColumn15.FieldName = "StoreTrID";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumnEditDetialSanfID
     //
     this.gridColumnEditDetialSanfID.Caption = "كود الصنف";
     this.gridColumnEditDetialSanfID.ColumnEdit = this.repositoryItemLookUpEditDetialSanfID;
     this.gridColumnEditDetialSanfID.FieldName = "SanfID";
     this.gridColumnEditDetialSanfID.Name = "gridColumnEditDetialSanfID";
     this.gridColumnEditDetialSanfID.Visible = true;
     this.gridColumnEditDetialSanfID.VisibleIndex = 6;
     this.gridColumnEditDetialSanfID.Width = 207;
     //
     // repositoryItemLookUpEditDetialSanfID
     //
     this.repositoryItemLookUpEditDetialSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditDetialSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditDetialSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنــف"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "نوع وحدة البيع")});
     this.repositoryItemLookUpEditDetialSanfID.Name = "repositoryItemLookUpEditDetialSanfID";
     this.repositoryItemLookUpEditDetialSanfID.NullText = "";
     this.repositoryItemLookUpEditDetialSanfID.NullValuePrompt = "اختار اسم الصنف";
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "كمية الوارد";
     this.gridColumn23.ColumnEdit = this.repositoryItemTextEditDetailQuantity;
     this.gridColumn23.FieldName = "Quantity";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 5;
     this.gridColumn23.Width = 110;
     //
     // repositoryItemTextEditDetailQuantity
     //
     this.repositoryItemTextEditDetailQuantity.AutoHeight = false;
     this.repositoryItemTextEditDetailQuantity.DisplayFormat.FormatString = "d";
     this.repositoryItemTextEditDetailQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditDetailQuantity.EditFormat.FormatString = "d";
     this.repositoryItemTextEditDetailQuantity.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditDetailQuantity.Mask.EditMask = "d";
     this.repositoryItemTextEditDetailQuantity.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditDetailQuantity.Name = "repositoryItemTextEditDetailQuantity";
     this.repositoryItemTextEditDetailQuantity.NullValuePrompt = "ادخل الكميه";
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "سعر الشراء";
     this.gridColumn25.ColumnEdit = this.repositoryItemCalcEditDetialPrice;
     this.gridColumn25.FieldName = "Price";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 4;
     this.gridColumn25.Width = 110;
     //
     // repositoryItemCalcEditDetialPrice
     //
     this.repositoryItemCalcEditDetialPrice.AutoHeight = false;
     this.repositoryItemCalcEditDetialPrice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditDetialPrice.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialPrice.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialPrice.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialPrice.Mask.EditMask = "f2";
     this.repositoryItemCalcEditDetialPrice.Name = "repositoryItemCalcEditDetialPrice";
     this.repositoryItemCalcEditDetialPrice.NullValuePrompt = "سعر الوحده";
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "الخصم";
     this.gridColumn26.ColumnEdit = this.repositoryItemCalcEditDetialDiscount;
     this.gridColumn26.FieldName = "Discount";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 3;
     this.gridColumn26.Width = 110;
     //
     // repositoryItemCalcEditDetialDiscount
     //
     this.repositoryItemCalcEditDetialDiscount.AutoHeight = false;
     this.repositoryItemCalcEditDetialDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditDetialDiscount.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialDiscount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialDiscount.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialDiscount.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialDiscount.Mask.EditMask = "f2";
     this.repositoryItemCalcEditDetialDiscount.Name = "repositoryItemCalcEditDetialDiscount";
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "ترتيب";
     this.gridColumn27.ColumnEdit = this.repositoryItemButtonEditDetialSortNo;
     this.gridColumn27.FieldName = "SortNo";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn27.Width = 105;
     //
     // repositoryItemButtonEditDetialSortNo
     //
     this.repositoryItemButtonEditDetialSortNo.AutoHeight = false;
     this.repositoryItemButtonEditDetialSortNo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Up),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.repositoryItemButtonEditDetialSortNo.Name = "repositoryItemButtonEditDetialSortNo";
     this.repositoryItemButtonEditDetialSortNo.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "حـــذف";
     this.gridColumn28.ColumnEdit = this.repositoryItemButtonEditEditDetialDelete;
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 0;
     this.gridColumn28.Width = 41;
     //
     // repositoryItemButtonEditEditDetialDelete
     //
     this.repositoryItemButtonEditEditDetialDelete.AutoHeight = false;
     this.repositoryItemButtonEditEditDetialDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditEditDetialDelete.Name = "repositoryItemButtonEditEditDetialDelete";
     this.repositoryItemButtonEditEditDetialDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditEditDetialDelete.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditEditDetialDelete_ButtonClick);
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "المجموع";
     this.gridColumn29.DisplayFormat.FormatString = "c2";
     this.gridColumn29.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn29.FieldName = "Total";
     this.gridColumn29.GroupFormat.FormatString = "c2";
     this.gridColumn29.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.ReadOnly = true;
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 2;
     this.gridColumn29.Width = 78;
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "حفظ تعديل";
     this.gridColumn30.ColumnEdit = this.repositoryItemButtonEditDetialUpdate;
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 1;
     this.gridColumn30.Width = 59;
     //
     // repositoryItemButtonEditDetialUpdate
     //
     this.repositoryItemButtonEditDetialUpdate.AutoHeight = false;
     this.repositoryItemButtonEditDetialUpdate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditDetialUpdate.Name = "repositoryItemButtonEditDetialUpdate";
     this.repositoryItemButtonEditDetialUpdate.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDetialUpdate.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDetialUpdate_ButtonClick);
     //
     // DataBillFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(792, 566);
     this.Controls.Add(this.xtraTabControlEditor);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "DataBillFrm";
     this.Text = "فاتورة مشتريات";
     this.Load += new System.EventHandler(this.DataBillFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSalesUnitID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditSortNo1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mastergridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditPERSONID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditEMPID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditTotalkasm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditExtraFees)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditEditREM)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditStoreID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditBillPayTypeID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditBillDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditBillEdit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlEditor)).EndInit();
     this.xtraTabControlEditor.ResumeLayout(false);
     this.xtraTabPageAdd.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlAddDetials)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSort)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtREM.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtExtraFees.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtTotalkasm.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEStoreID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEBillPayType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEEMPID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEPERSONID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDDAY.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDTYPE.Properties)).EndInit();
     this.xtraTabPageEdit.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditorDetial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewEditDetial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDetialSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditDetailQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialSortNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditDetialDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialUpdate)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 56
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridPTPackage = new DevExpress.XtraGrid.GridControl();
     this.gvPTPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvPTPackageRank = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Employee = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvPTPackageSalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvPTPackageTotalSales = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView7 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.label6 = new System.Windows.Forms.Label();
     this.RGPTPackage = new DevExpress.XtraEditors.RadioGroup();
     this.label79 = new System.Windows.Forms.Label();
     this.label80 = new System.Windows.Forms.Label();
     this.Month = new DevExpress.XtraEditors.ComboBoxEdit();
     this.Year = new DevExpress.XtraEditors.ComboBoxEdit();
     this.button1 = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.gridPTPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPTPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGPTPackage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridPTPackage
     //
     this.gridPTPackage.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridPTPackage.Location = new System.Drawing.Point(0, 96);
     this.gridPTPackage.MainView = this.gvPTPackage;
     this.gridPTPackage.Name = "gridPTPackage";
     this.gridPTPackage.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_Employee});
     this.gridPTPackage.Size = new System.Drawing.Size(960, 384);
     this.gridPTPackage.TabIndex = 16;
     this.gridPTPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPTPackage,
     this.gridView7});
     //
     // gvPTPackage
     //
     this.gvPTPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gvPTPackageRank,
     this.gridColumn11,
     this.gridColumn12,
     this.gvPTPackageSalesPercentage,
     this.gvPTPackageTotalSales});
     this.gvPTPackage.GridControl = this.gridPTPackage;
     this.gvPTPackage.Name = "gvPTPackage";
     this.gvPTPackage.OptionsBehavior.Editable = false;
     this.gvPTPackage.OptionsCustomization.AllowFilter = false;
     this.gvPTPackage.OptionsCustomization.AllowGroup = false;
     this.gvPTPackage.OptionsCustomization.AllowSort = false;
     this.gvPTPackage.OptionsView.ShowGroupPanel = false;
     this.gvPTPackage.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gvPTPackage_CustomUnboundColumnData);
     this.gvPTPackage.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvPTPackage_FocusedRowChanged);
     //
     // gvPTPackageRank
     //
     this.gvPTPackageRank.Caption = "Rank";
     this.gvPTPackageRank.FieldName = "gridColumn1";
     this.gvPTPackageRank.Name = "gvPTPackageRank";
     this.gvPTPackageRank.SummaryItem.DisplayFormat = "{0}";
     this.gvPTPackageRank.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.gvPTPackageRank.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.gvPTPackageRank.Visible = true;
     this.gvPTPackageRank.VisibleIndex = 0;
     this.gvPTPackageRank.Width = 50;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Employee Name";
     this.gridColumn11.ColumnEdit = this.lk_Employee;
     this.gridColumn11.FieldName = "nSalesPersonID";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 1;
     this.gridColumn11.Width = 54;
     //
     // lk_Employee
     //
     this.lk_Employee.AutoHeight = false;
     this.lk_Employee.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Employee.Name = "lk_Employee";
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Branch Code";
     this.gridColumn12.FieldName = "strBranchCode";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 4;
     this.gridColumn12.Width = 72;
     //
     // gvPTPackageSalesPercentage
     //
     this.gvPTPackageSalesPercentage.Caption = "Sales Percentage";
     this.gvPTPackageSalesPercentage.FieldName = "SalesPercentage";
     this.gvPTPackageSalesPercentage.Name = "gvPTPackageSalesPercentage";
     this.gvPTPackageSalesPercentage.Visible = true;
     this.gvPTPackageSalesPercentage.VisibleIndex = 2;
     this.gvPTPackageSalesPercentage.Width = 54;
     //
     // gvPTPackageTotalSales
     //
     this.gvPTPackageTotalSales.Caption = "Total Sales";
     this.gvPTPackageTotalSales.FieldName = "TotalSales";
     this.gvPTPackageTotalSales.Name = "gvPTPackageTotalSales";
     this.gvPTPackageTotalSales.Visible = true;
     this.gvPTPackageTotalSales.VisibleIndex = 3;
     this.gvPTPackageTotalSales.Width = 54;
     //
     // gridView7
     //
     this.gridView7.GridControl = this.gridPTPackage;
     this.gridView7.Name = "gridView7";
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label6.Location = new System.Drawing.Point(0, 40);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(944, 24);
     this.label6.TabIndex = 18;
     this.label6.Text = "Ranking of Personal Trainer Sales";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // RGPTPackage
     //
     this.RGPTPackage.EditValue = 0;
     this.RGPTPackage.Location = new System.Drawing.Point(0, 64);
     this.RGPTPackage.Name = "RGPTPackage";
     this.RGPTPackage.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.RGPTPackage.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RGPTPackage.Properties.Appearance.Options.UseBackColor = true;
     this.RGPTPackage.Properties.Appearance.Options.UseFont = true;
     this.RGPTPackage.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.RGPTPackage.Properties.Columns = 2;
     this.RGPTPackage.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Personal Trainer Sales By %"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual Personal Trainer Sales")});
     this.RGPTPackage.Size = new System.Drawing.Size(496, 32);
     this.RGPTPackage.TabIndex = 17;
     this.RGPTPackage.SelectedIndexChanged += new System.EventHandler(this.RGPTPackage_SelectedIndexChanged);
     this.RGPTPackage.Click += new System.EventHandler(this.RGPTPackage_Click);
     //
     // label79
     //
     this.label79.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label79.Location = new System.Drawing.Point(144, 8);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(48, 23);
     this.label79.TabIndex = 35;
     this.label79.Text = "Year";
     //
     // label80
     //
     this.label80.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label80.Location = new System.Drawing.Point(8, 8);
     this.label80.Name = "label80";
     this.label80.Size = new System.Drawing.Size(56, 23);
     this.label80.TabIndex = 34;
     this.label80.Text = "Month";
     //
     // Month
     //
     this.Month.EditValue = "1";
     this.Month.Location = new System.Drawing.Point(64, 8);
     this.Month.Name = "Month";
     this.Month.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Month.Properties.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.Month.Size = new System.Drawing.Size(72, 20);
     this.Month.TabIndex = 33;
     this.Month.SelectedIndexChanged += new System.EventHandler(this.Month_SelectedIndexChanged);
     //
     // Year
     //
     this.Year.EditValue = "";
     this.Year.Location = new System.Drawing.Point(192, 8);
     this.Year.Name = "Year";
     this.Year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Year.Size = new System.Drawing.Size(96, 20);
     this.Year.TabIndex = 32;
     this.Year.SelectedIndexChanged += new System.EventHandler(this.Year_SelectedIndexChanged);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(492, 67);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 36;
     this.button1.Text = "Print";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // frmSRPTPackage
     //
     this.ClientSize = new System.Drawing.Size(960, 480);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.label79);
     this.Controls.Add(this.label80);
     this.Controls.Add(this.Month);
     this.Controls.Add(this.Year);
     this.Controls.Add(this.gridPTPackage);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.RGPTPackage);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmSRPTPackage";
     this.Text = "frmSRPTPackage";
     this.Load += new System.EventHandler(this.frmSRPTPackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridPTPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPTPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGPTPackage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.tblWarasaAmanatBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsRetirementCenter = new RetirementCenter.DataSources.dsRetirementCenter();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPersonId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfAId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditDofatSarfAId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.cdDofaatAmanatBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDofatSarfA = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditPersonId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.LSMSTBLWarasa = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonId1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanatrem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditamanatrem = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.colamanatmony = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditdatein = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.coluserin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEdituserin = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.usersBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSave = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.colaccReview = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colestktaa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmostahek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsefa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coluseracc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamantvisa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfcheek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditDofatSarfId = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LSMSDofatSarfId = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfAId1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanattypeid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditamanattypeid = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LSMScd_amanattype = new DevExpress.Data.Linq.LinqServerModeSource();
     this.coldateReview = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditf2 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemGridLookUpEditSyndicateId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditn0 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.repositoryItemCheckEditCardType = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.colEDARET = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEDARET1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colnkapaMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnNew = new DevExpress.XtraEditors.SimpleButton();
     this.tblWarasaAmanatTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TblWarasaAmanatTableAdapter();
     this.cdDofaatAmanatTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.CdDofaatAmanatTableAdapter();
     this.usersTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.UsersTableAdapter();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblWarasaAmanatBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditDofatSarfAId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cdDofaatAmanatBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditPersonId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLWarasa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditamanatrem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDofatSarfId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDofatSarfId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditamanattypeid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMScd_amanattype)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn0)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditCardType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.DataSource = this.tblWarasaAmanatBindingSource;
     this.gridControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlData.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.Location = new System.Drawing.Point(2, 21);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemCalcEditf2,
     this.repositoryItemDateEditDMY,
     this.repositoryItemGridLookUpEditSyndicateId,
     this.repositoryItemCalcEditn0,
     this.repositoryItemDateEditdatein,
     this.repositoryItemGridLookUpEdituserin,
     this.repositoryItemMemoExEditamanatrem,
     this.repositoryItemCheckEditCardType,
     this.repositoryItemGridLookUpEditPersonId,
     this.repositoryItemGridLookUpEditDofatSarfAId,
     this.repositoryItemLookUpEditDofatSarfId,
     this.repositoryItemLookUpEditamanattypeid});
     this.gridControlData.Size = new System.Drawing.Size(756, 273);
     this.gridControlData.TabIndex = 0;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     this.gridControlData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // tblWarasaAmanatBindingSource
     //
     this.tblWarasaAmanatBindingSource.DataMember = "TblWarasaAmanat";
     this.tblWarasaAmanatBindingSource.DataSource = this.dsRetirementCenter;
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName = "dsRetirementCenter";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colPersonId,
     this.colDofatSarfAId,
     this.colMMashatId,
     this.colamanatrem,
     this.colamanatmony,
     this.coldatein,
     this.coluserin,
     this.gridColumnSave,
     this.gridColumnDelete,
     this.colaccReview,
     this.colestktaa,
     this.colmostahek,
     this.colsefa,
     this.coluseracc,
     this.colamantvisa,
     this.colsarfcheek,
     this.colDofatSarfId,
     this.gridColumn1,
     this.gridColumn3,
     this.colDofatSarfAId1,
     this.colamanattypeid,
     this.coldateReview,
     this.gridColumn4});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.NewItemRowText = "اضغط لاضافة جديد";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowDetailButtons = false;
     this.gridViewData.InvalidRowException += new DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventHandler(this.gridViewData_InvalidRowException);
     //
     // colPersonId
     //
     this.colPersonId.AppearanceCell.Options.UseTextOptions = true;
     this.colPersonId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId.AppearanceHeader.Options.UseTextOptions = true;
     this.colPersonId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId.Caption = "كود";
     this.colPersonId.FieldName = "PersonId";
     this.colPersonId.Name = "colPersonId";
     this.colPersonId.Visible = true;
     this.colPersonId.VisibleIndex = 1;
     //
     // colDofatSarfAId
     //
     this.colDofatSarfAId.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfAId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfAId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId.Caption = "الدفعة";
     this.colDofatSarfAId.ColumnEdit = this.repositoryItemGridLookUpEditDofatSarfAId;
     this.colDofatSarfAId.FieldName = "DofatSarfAId";
     this.colDofatSarfAId.Name = "colDofatSarfAId";
     this.colDofatSarfAId.OptionsColumn.ReadOnly = true;
     this.colDofatSarfAId.Visible = true;
     this.colDofatSarfAId.VisibleIndex = 3;
     this.colDofatSarfAId.Width = 128;
     //
     // repositoryItemGridLookUpEditDofatSarfAId
     //
     this.repositoryItemGridLookUpEditDofatSarfAId.AutoHeight = false;
     this.repositoryItemGridLookUpEditDofatSarfAId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditDofatSarfAId.DataSource = this.cdDofaatAmanatBindingSource;
     this.repositoryItemGridLookUpEditDofatSarfAId.DisplayMember = "DofatSarfA";
     this.repositoryItemGridLookUpEditDofatSarfAId.Name = "repositoryItemGridLookUpEditDofatSarfAId";
     this.repositoryItemGridLookUpEditDofatSarfAId.ValueMember = "DofatSarfAId";
     this.repositoryItemGridLookUpEditDofatSarfAId.View = this.gridView3;
     //
     // cdDofaatAmanatBindingSource
     //
     this.cdDofaatAmanatBindingSource.DataMember = "CdDofaatAmanat";
     this.cdDofaatAmanatBindingSource.DataSource = this.dsRetirementCenter;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDofatSarfA});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // colDofatSarfA
     //
     this.colDofatSarfA.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfA.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfA.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfA.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfA.Caption = "الاسم";
     this.colDofatSarfA.FieldName = "DofatSarfA";
     this.colDofatSarfA.Name = "colDofatSarfA";
     this.colDofatSarfA.Visible = true;
     this.colDofatSarfA.VisibleIndex = 0;
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "الاسم";
     this.colMMashatId.ColumnEdit = this.repositoryItemGridLookUpEditPersonId;
     this.colMMashatId.FieldName = "PersonId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.OptionsColumn.ReadOnly = true;
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 4;
     this.colMMashatId.Width = 150;
     //
     // repositoryItemGridLookUpEditPersonId
     //
     this.repositoryItemGridLookUpEditPersonId.AutoHeight = false;
     this.repositoryItemGridLookUpEditPersonId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditPersonId.DataSource = this.LSMSTBLWarasa;
     this.repositoryItemGridLookUpEditPersonId.DisplayMember = "personName";
     this.repositoryItemGridLookUpEditPersonId.Name = "repositoryItemGridLookUpEditPersonId";
     this.repositoryItemGridLookUpEditPersonId.ValueMember = "PersonId";
     this.repositoryItemGridLookUpEditPersonId.View = this.gridView1;
     //
     // LSMSTBLWarasa
     //
     this.LSMSTBLWarasa.ElementType = typeof(RetirementCenter.DataSources.Linq.vTBLWarasa_TBLMashat);
     this.LSMSTBLWarasa.KeyExpression = "PersonId";
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMMashatName,
     this.colPersonId1,
     this.colpersonName,
     this.colsarfnumber,
     this.colSyndicate1,
     this.colSubCommitte});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // colMMashatName
     //
     this.colMMashatName.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.Caption = "الاب";
     this.colMMashatName.FieldName = "MMashatName";
     this.colMMashatName.Name = "colMMashatName";
     this.colMMashatName.Visible = true;
     this.colMMashatName.VisibleIndex = 0;
     //
     // colPersonId1
     //
     this.colPersonId1.AppearanceCell.Options.UseTextOptions = true;
     this.colPersonId1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId1.AppearanceHeader.Options.UseTextOptions = true;
     this.colPersonId1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId1.Caption = "كود";
     this.colPersonId1.FieldName = "PersonId";
     this.colPersonId1.Name = "colPersonId1";
     this.colPersonId1.Visible = true;
     this.colPersonId1.VisibleIndex = 1;
     //
     // colpersonName
     //
     this.colpersonName.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.Caption = "الاسم";
     this.colpersonName.FieldName = "personName";
     this.colpersonName.Name = "colpersonName";
     this.colpersonName.Visible = true;
     this.colpersonName.VisibleIndex = 2;
     //
     // colsarfnumber
     //
     this.colsarfnumber.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.Caption = "رقم صرف";
     this.colsarfnumber.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 3;
     //
     // colSyndicate1
     //
     this.colSyndicate1.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate1.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate1.Caption = "فرعية";
     this.colSyndicate1.FieldName = "Syndicate";
     this.colSyndicate1.Name = "colSyndicate1";
     this.colSyndicate1.Visible = true;
     this.colSyndicate1.VisibleIndex = 4;
     //
     // colSubCommitte
     //
     this.colSubCommitte.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.Caption = "لجنة";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 5;
     //
     // colamanatrem
     //
     this.colamanatrem.AppearanceCell.Options.UseTextOptions = true;
     this.colamanatrem.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatrem.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanatrem.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatrem.Caption = "ملاحظات";
     this.colamanatrem.ColumnEdit = this.repositoryItemMemoExEditamanatrem;
     this.colamanatrem.FieldName = "amanatrem";
     this.colamanatrem.Name = "colamanatrem";
     this.colamanatrem.OptionsColumn.ReadOnly = true;
     this.colamanatrem.Visible = true;
     this.colamanatrem.VisibleIndex = 5;
     //
     // repositoryItemMemoExEditamanatrem
     //
     this.repositoryItemMemoExEditamanatrem.AutoHeight = false;
     this.repositoryItemMemoExEditamanatrem.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditamanatrem.Name = "repositoryItemMemoExEditamanatrem";
     //
     // colamanatmony
     //
     this.colamanatmony.AppearanceCell.Options.UseTextOptions = true;
     this.colamanatmony.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatmony.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanatmony.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatmony.Caption = "المبلغ";
     this.colamanatmony.FieldName = "amanatmony";
     this.colamanatmony.Name = "colamanatmony";
     this.colamanatmony.OptionsColumn.ReadOnly = true;
     this.colamanatmony.Visible = true;
     this.colamanatmony.VisibleIndex = 6;
     this.colamanatmony.Width = 81;
     //
     // coldatein
     //
     this.coldatein.AppearanceCell.Options.UseTextOptions = true;
     this.coldatein.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatein.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.Caption = "تاريخ الادخال";
     this.coldatein.ColumnEdit = this.repositoryItemDateEditdatein;
     this.coldatein.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.OptionsColumn.AllowEdit = false;
     this.coldatein.OptionsColumn.ReadOnly = true;
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 11;
     this.coldatein.Width = 94;
     //
     // repositoryItemDateEditdatein
     //
     this.repositoryItemDateEditdatein.AutoHeight = false;
     this.repositoryItemDateEditdatein.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditdatein.DisplayFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.EditFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.Mask.EditMask = "g";
     this.repositoryItemDateEditdatein.Name = "repositoryItemDateEditdatein";
     this.repositoryItemDateEditdatein.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // coluserin
     //
     this.coluserin.AppearanceCell.Options.UseTextOptions = true;
     this.coluserin.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.AppearanceHeader.Options.UseTextOptions = true;
     this.coluserin.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.Caption = "مسئول الادخال";
     this.coluserin.ColumnEdit = this.repositoryItemGridLookUpEdituserin;
     this.coluserin.FieldName = "userin";
     this.coluserin.Name = "coluserin";
     this.coluserin.OptionsColumn.AllowEdit = false;
     this.coluserin.OptionsColumn.ReadOnly = true;
     this.coluserin.Visible = true;
     this.coluserin.VisibleIndex = 12;
     this.coluserin.Width = 97;
     //
     // repositoryItemGridLookUpEdituserin
     //
     this.repositoryItemGridLookUpEdituserin.AutoHeight = false;
     this.repositoryItemGridLookUpEdituserin.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEdituserin.DataSource = this.usersBindingSource;
     this.repositoryItemGridLookUpEdituserin.DisplayMember = "RealName";
     this.repositoryItemGridLookUpEdituserin.Name = "repositoryItemGridLookUpEdituserin";
     this.repositoryItemGridLookUpEdituserin.NullText = "";
     this.repositoryItemGridLookUpEdituserin.ValueMember = "UserID";
     this.repositoryItemGridLookUpEdituserin.View = this.gridView2;
     //
     // usersBindingSource
     //
     this.usersBindingSource.DataMember = "Users";
     this.usersBindingSource.DataSource = this.dsRetirementCenter;
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colRealName});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // colRealName
     //
     this.colRealName.FieldName = "RealName";
     this.colRealName.Name = "colRealName";
     this.colRealName.Visible = true;
     this.colRealName.VisibleIndex = 0;
     //
     // gridColumnSave
     //
     this.gridColumnSave.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.Caption = "تعديل";
     this.gridColumnSave.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumnSave.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnSave.Name = "gridColumnSave";
     this.gridColumnSave.Visible = true;
     this.gridColumnSave.VisibleIndex = 21;
     this.gridColumnSave.Width = 55;
     //
     // repositoryItemButtonEditSave
     //
     this.repositoryItemButtonEditSave.AutoHeight = false;
     this.repositoryItemButtonEditSave.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEditSave.Name = "repositoryItemButtonEditSave";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     //
     // gridColumnDelete
     //
     this.gridColumnDelete.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.Caption = "حذف";
     this.gridColumnDelete.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumnDelete.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Visible = true;
     this.gridColumnDelete.VisibleIndex = 22;
     this.gridColumnDelete.Width = 51;
     //
     // repositoryItemButtonEditDel
     //
     this.repositoryItemButtonEditDel.AutoHeight = false;
     this.repositoryItemButtonEditDel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDel.Name = "repositoryItemButtonEditDel";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     //
     // colaccReview
     //
     this.colaccReview.AppearanceCell.Options.UseTextOptions = true;
     this.colaccReview.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colaccReview.AppearanceHeader.Options.UseTextOptions = true;
     this.colaccReview.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colaccReview.Caption = "مراجعة (حسابات)";
     this.colaccReview.FieldName = "accReview";
     this.colaccReview.Name = "colaccReview";
     this.colaccReview.OptionsColumn.ReadOnly = true;
     this.colaccReview.Visible = true;
     this.colaccReview.VisibleIndex = 7;
     this.colaccReview.Width = 100;
     //
     // colestktaa
     //
     this.colestktaa.AppearanceCell.Options.UseTextOptions = true;
     this.colestktaa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colestktaa.AppearanceHeader.Options.UseTextOptions = true;
     this.colestktaa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colestktaa.Caption = "استقطاع";
     this.colestktaa.FieldName = "estktaa";
     this.colestktaa.Name = "colestktaa";
     this.colestktaa.OptionsColumn.ReadOnly = true;
     this.colestktaa.Visible = true;
     this.colestktaa.VisibleIndex = 8;
     //
     // colmostahek
     //
     this.colmostahek.AppearanceCell.Options.UseTextOptions = true;
     this.colmostahek.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostahek.AppearanceHeader.Options.UseTextOptions = true;
     this.colmostahek.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostahek.Caption = "مستحق";
     this.colmostahek.FieldName = "mostahek";
     this.colmostahek.Name = "colmostahek";
     this.colmostahek.OptionsColumn.ReadOnly = true;
     this.colmostahek.Visible = true;
     this.colmostahek.VisibleIndex = 9;
     //
     // colsefa
     //
     this.colsefa.AppearanceCell.Options.UseTextOptions = true;
     this.colsefa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsefa.AppearanceHeader.Options.UseTextOptions = true;
     this.colsefa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsefa.Caption = "صفة";
     this.colsefa.FieldName = "sefa";
     this.colsefa.Name = "colsefa";
     this.colsefa.OptionsColumn.ReadOnly = true;
     this.colsefa.Visible = true;
     this.colsefa.VisibleIndex = 10;
     //
     // coluseracc
     //
     this.coluseracc.AppearanceCell.Options.UseTextOptions = true;
     this.coluseracc.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluseracc.AppearanceHeader.Options.UseTextOptions = true;
     this.coluseracc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluseracc.Caption = "مسئول الادخال (حسابات)";
     this.coluseracc.ColumnEdit = this.repositoryItemGridLookUpEdituserin;
     this.coluseracc.FieldName = "useracc";
     this.coluseracc.Name = "coluseracc";
     this.coluseracc.OptionsColumn.ReadOnly = true;
     this.coluseracc.Visible = true;
     this.coluseracc.VisibleIndex = 13;
     this.coluseracc.Width = 136;
     //
     // colamantvisa
     //
     this.colamantvisa.AppearanceCell.Options.UseTextOptions = true;
     this.colamantvisa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamantvisa.AppearanceHeader.Options.UseTextOptions = true;
     this.colamantvisa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamantvisa.Caption = "امانات فيزا";
     this.colamantvisa.FieldName = "amantvisa";
     this.colamantvisa.Name = "colamantvisa";
     this.colamantvisa.Visible = true;
     this.colamantvisa.VisibleIndex = 15;
     //
     // colsarfcheek
     //
     this.colsarfcheek.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfcheek.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfcheek.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfcheek.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfcheek.Caption = "تصرف بشيك";
     this.colsarfcheek.FieldName = "sarfcheek";
     this.colsarfcheek.Name = "colsarfcheek";
     this.colsarfcheek.Visible = true;
     this.colsarfcheek.VisibleIndex = 16;
     this.colsarfcheek.Width = 77;
     //
     // colDofatSarfId
     //
     this.colDofatSarfId.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfId.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfId.Caption = "الدفعة المستحقه";
     this.colDofatSarfId.ColumnEdit = this.repositoryItemLookUpEditDofatSarfId;
     this.colDofatSarfId.FieldName = "DofatSarfId";
     this.colDofatSarfId.Name = "colDofatSarfId";
     this.colDofatSarfId.Visible = true;
     this.colDofatSarfId.VisibleIndex = 17;
     this.colDofatSarfId.Width = 99;
     //
     // repositoryItemLookUpEditDofatSarfId
     //
     this.repositoryItemLookUpEditDofatSarfId.AutoHeight = false;
     this.repositoryItemLookUpEditDofatSarfId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditDofatSarfId.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("DofatSarf", "الاسم", 61, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.repositoryItemLookUpEditDofatSarfId.DataSource = this.LSMSDofatSarfId;
     this.repositoryItemLookUpEditDofatSarfId.DisplayMember = "DofatSarf";
     this.repositoryItemLookUpEditDofatSarfId.Name = "repositoryItemLookUpEditDofatSarfId";
     this.repositoryItemLookUpEditDofatSarfId.NullText = "";
     this.repositoryItemLookUpEditDofatSarfId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditDofatSarfId.ValueMember = "DofatSarfId";
     //
     // LSMSDofatSarfId
     //
     this.LSMSDofatSarfId.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLDofatSarf);
     this.LSMSDofatSarfId.KeyExpression = "[DofatSarfId]";
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.Caption = "رقم صرف";
     this.gridColumn1.FieldName = "sarfnumber";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 18;
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.Caption = "كود الاب";
     this.gridColumn3.FieldName = "MMashatId";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 19;
     //
     // colDofatSarfAId1
     //
     this.colDofatSarfAId1.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfAId1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId1.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfAId1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId1.Caption = "كود الدفعة";
     this.colDofatSarfAId1.FieldName = "DofatSarfAId";
     this.colDofatSarfAId1.Name = "colDofatSarfAId1";
     this.colDofatSarfAId1.Visible = true;
     this.colDofatSarfAId1.VisibleIndex = 2;
     //
     // colamanattypeid
     //
     this.colamanattypeid.AppearanceCell.Options.UseTextOptions = true;
     this.colamanattypeid.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanattypeid.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanattypeid.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanattypeid.Caption = "نوع الامانات";
     this.colamanattypeid.ColumnEdit = this.repositoryItemLookUpEditamanattypeid;
     this.colamanattypeid.FieldName = "amanattypeid";
     this.colamanattypeid.Name = "colamanattypeid";
     this.colamanattypeid.Visible = true;
     this.colamanattypeid.VisibleIndex = 20;
     //
     // repositoryItemLookUpEditamanattypeid
     //
     this.repositoryItemLookUpEditamanattypeid.AutoHeight = false;
     this.repositoryItemLookUpEditamanattypeid.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditamanattypeid.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("amanattype", "الاسم", 68, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.repositoryItemLookUpEditamanattypeid.DataSource = this.LSMScd_amanattype;
     this.repositoryItemLookUpEditamanattypeid.DisplayMember = "amanattype";
     this.repositoryItemLookUpEditamanattypeid.Name = "repositoryItemLookUpEditamanattypeid";
     this.repositoryItemLookUpEditamanattypeid.NullText = "";
     this.repositoryItemLookUpEditamanattypeid.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditamanattypeid.ValueMember = "amanattypeid";
     //
     // LSMScd_amanattype
     //
     this.LSMScd_amanattype.ElementType = typeof(RetirementCenter.DataSources.Linq.cd_amanattype);
     this.LSMScd_amanattype.KeyExpression = "[amanattypeid]";
     //
     // coldateReview
     //
     this.coldateReview.AppearanceCell.Options.UseTextOptions = true;
     this.coldateReview.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldateReview.AppearanceHeader.Options.UseTextOptions = true;
     this.coldateReview.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldateReview.Caption = "تاريخ مراجعة حسابات";
     this.coldateReview.ColumnEdit = this.repositoryItemDateEditdatein;
     this.coldateReview.FieldName = "dateReview";
     this.coldateReview.Name = "coldateReview";
     this.coldateReview.Visible = true;
     this.coldateReview.VisibleIndex = 14;
     this.coldateReview.Width = 116;
     //
     // repositoryItemCalcEditf2
     //
     this.repositoryItemCalcEditf2.AutoHeight = false;
     this.repositoryItemCalcEditf2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditf2.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.Mask.EditMask = "f2";
     this.repositoryItemCalcEditf2.Name = "repositoryItemCalcEditf2";
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemGridLookUpEditSyndicateId
     //
     this.repositoryItemGridLookUpEditSyndicateId.AutoHeight = false;
     this.repositoryItemGridLookUpEditSyndicateId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.repositoryItemGridLookUpEditSyndicateId.DisplayMember = "Syndicate";
     this.repositoryItemGridLookUpEditSyndicateId.Name = "repositoryItemGridLookUpEditSyndicateId";
     this.repositoryItemGridLookUpEditSyndicateId.NullText = "";
     this.repositoryItemGridLookUpEditSyndicateId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditSyndicateId.ValueMember = "SyndicateId";
     this.repositoryItemGridLookUpEditSyndicateId.View = this.repositoryItemGridLookUpEdit1View;
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicate});
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعيه";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 0;
     //
     // repositoryItemCalcEditn0
     //
     this.repositoryItemCalcEditn0.AutoHeight = false;
     this.repositoryItemCalcEditn0.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditn0.DisplayFormat.FormatString = "n0";
     this.repositoryItemCalcEditn0.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditn0.EditFormat.FormatString = "n0";
     this.repositoryItemCalcEditn0.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditn0.Mask.EditMask = "n0";
     this.repositoryItemCalcEditn0.Name = "repositoryItemCalcEditn0";
     //
     // repositoryItemCheckEditCardType
     //
     this.repositoryItemCheckEditCardType.AutoHeight = false;
     this.repositoryItemCheckEditCardType.Name = "repositoryItemCheckEditCardType";
     //
     // colEDARET
     //
     this.colEDARET.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.Caption = "اسم الاداره";
     this.colEDARET.FieldName = "EDARET";
     this.colEDARET.Name = "colEDARET";
     this.colEDARET.Visible = true;
     this.colEDARET.VisibleIndex = 0;
     //
     // colEDARET1
     //
     this.colEDARET1.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.Caption = "الادارة";
     this.colEDARET1.FieldName = "EDARET";
     this.colEDARET1.Name = "colEDARET1";
     this.colEDARET1.Visible = true;
     this.colEDARET1.VisibleIndex = 0;
     //
     // colEdaraMandopName
     //
     this.colEdaraMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.Caption = "الاسم";
     this.colEdaraMandopName.FieldName = "EdaraMandopName";
     this.colEdaraMandopName.Name = "colEdaraMandopName";
     this.colEdaraMandopName.Visible = true;
     this.colEdaraMandopName.VisibleIndex = 0;
     //
     // colnkapaMandopName
     //
     this.colnkapaMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.Caption = "الاسم";
     this.colnkapaMandopName.FieldName = "nkapaMandopName";
     this.colnkapaMandopName.Name = "colnkapaMandopName";
     this.colnkapaMandopName.Visible = true;
     this.colnkapaMandopName.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption = "اسم الشهر";
     this.gridColumn2.FieldName = "MonthName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.gridControlData);
     this.groupControl1.Location = new System.Drawing.Point(12, 12);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(760, 296);
     this.groupControl1.TabIndex = 1;
     //
     // groupControl2
     //
     this.groupControl2.AllowTouchScroll = true;
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.btnNew);
     this.groupControl2.Location = new System.Drawing.Point(12, 314);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(760, 62);
     this.groupControl2.TabIndex = 2;
     //
     // btnNew
     //
     this.btnNew.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnNew.Image = global::RetirementCenter.Properties.Resources.Add;
     this.btnNew.Location = new System.Drawing.Point(555, 23);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(200, 35);
     this.btnNew.TabIndex = 0;
     this.btnNew.Text = "جديد";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // tblWarasaAmanatTableAdapter
     //
     this.tblWarasaAmanatTableAdapter.ClearBeforeFill = true;
     //
     // cdDofaatAmanatTableAdapter
     //
     this.cdDofaatAmanatTableAdapter.ClearBeforeFill = true;
     //
     // usersTableAdapter
     //
     this.usersTableAdapter.ClearBeforeFill = true;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.Caption = "كود 60";
     this.gridColumn4.FieldName = "code60";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 0;
     //
     // TblWarasaAmanatFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 388);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Name = "TblWarasaAmanatFrm";
     this.Text = "امانات الورثة";
     this.Load += new System.EventHandler(this.FormFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblWarasaAmanatBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditDofatSarfAId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cdDofaatAmanatBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditPersonId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLWarasa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditamanatrem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDofatSarfId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDofatSarfId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditamanattypeid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMScd_amanattype)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn0)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditCardType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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(ManageRequisitionForm));
     this.boxSizedList = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.lblIssueType = new DevExpress.XtraEditors.LabelControl();
     this.lblNoOfReq = new DevExpress.XtraEditors.LabelControl();
     this.lblLastVisit = new DevExpress.XtraEditors.LabelControl();
     this.lblStatus = new DevExpress.XtraEditors.LabelControl();
     this.lblRequestedDate = new DevExpress.XtraEditors.LabelControl();
     this.lblRequestedBy = new DevExpress.XtraEditors.LabelControl();
     this.lblRegion = new DevExpress.XtraEditors.LabelControl();
     this.lblOwnership = new DevExpress.XtraEditors.LabelControl();
     this.lblZone = new DevExpress.XtraEditors.LabelControl();
     this.lblPaymentType = new DevExpress.XtraEditors.LabelControl();
     this.lblWoreda = new DevExpress.XtraEditors.LabelControl();
     this.lblMode = new DevExpress.XtraEditors.LabelControl();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.btnCenterRequisition = new DevExpress.XtraEditors.SimpleButton();
     this.btnDeleteRequisition = new DevExpress.XtraEditors.SimpleButton();
     this.btnEditRequistion = new DevExpress.XtraEditors.SimpleButton();
     this.btnSubmitWishlist = new DevExpress.XtraEditors.SimpleButton();
     this.gridRequisitionDetails = new DevExpress.XtraGrid.GridControl();
     this.gridReqisitionDetailsView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colStockCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSOH = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colExpired = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDamaged = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridRequisitions = new DevExpress.XtraGrid.GridControl();
     this.gridRequisitionListView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDateRequested = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chkShowSubmitted = new DevExpress.XtraEditors.CheckEdit();
     this.btnNewRequisition = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutCenterRequisition = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.headerSection = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.emptySpaceItem15 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup8 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup9 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup10 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem10 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem22 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem23 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printOrder = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.dxValidation1stTab = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = 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.layoutControlGroup5 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.lRequestedDate = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup6 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem19 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup7 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem18 = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridRequisitionDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridReqisitionDetailsView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridRequisitions)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridRequisitionListView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkShowSubmitted.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutCenterRequisition)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.headerSection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printOrder.ImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidation1stTab)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).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.layoutControlGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lRequestedDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).BeginInit();
     this.SuspendLayout();
     //
     // boxSizedList
     //
     this.boxSizedList.AutoHeight = false;
     this.boxSizedList.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.boxSizedList.DisplayMember = "Name";
     this.boxSizedList.Name = "boxSizedList";
     this.boxSizedList.ValueMember = "ID";
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // repositoryItemDateEdit3
     //
     this.repositoryItemDateEdit3.AutoHeight = false;
     this.repositoryItemDateEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit3.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;
     //
     // layoutControl1
     //
     this.layoutControl1.AllowCustomizationMenu = false;
     this.layoutControl1.Controls.Add(this.lblIssueType);
     this.layoutControl1.Controls.Add(this.lblNoOfReq);
     this.layoutControl1.Controls.Add(this.lblLastVisit);
     this.layoutControl1.Controls.Add(this.lblStatus);
     this.layoutControl1.Controls.Add(this.lblRequestedDate);
     this.layoutControl1.Controls.Add(this.lblRequestedBy);
     this.layoutControl1.Controls.Add(this.lblRegion);
     this.layoutControl1.Controls.Add(this.lblOwnership);
     this.layoutControl1.Controls.Add(this.lblZone);
     this.layoutControl1.Controls.Add(this.lblPaymentType);
     this.layoutControl1.Controls.Add(this.lblWoreda);
     this.layoutControl1.Controls.Add(this.lblMode);
     this.layoutControl1.Controls.Add(this.textEdit1);
     this.layoutControl1.Controls.Add(this.btnCenterRequisition);
     this.layoutControl1.Controls.Add(this.btnDeleteRequisition);
     this.layoutControl1.Controls.Add(this.btnEditRequistion);
     this.layoutControl1.Controls.Add(this.btnSubmitWishlist);
     this.layoutControl1.Controls.Add(this.gridRequisitionDetails);
     this.layoutControl1.Controls.Add(this.gridRequisitions);
     this.layoutControl1.Controls.Add(this.chkShowSubmitted);
     this.layoutControl1.Controls.Add(this.btnNewRequisition);
     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(247, 171, 250, 350);
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1119, 422);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // lblIssueType
     //
     this.lblIssueType.Location = new System.Drawing.Point(926, 137);
     this.lblIssueType.Name = "lblIssueType";
     this.lblIssueType.Size = new System.Drawing.Size(175, 16);
     this.lblIssueType.StyleController = this.layoutControl1;
     this.lblIssueType.TabIndex = 23;
     //
     // lblNoOfReq
     //
     this.lblNoOfReq.Location = new System.Drawing.Point(755, 137);
     this.lblNoOfReq.Name = "lblNoOfReq";
     this.lblNoOfReq.Size = new System.Drawing.Size(108, 16);
     this.lblNoOfReq.StyleController = this.layoutControl1;
     this.lblNoOfReq.TabIndex = 22;
     //
     // lblLastVisit
     //
     this.lblLastVisit.Location = new System.Drawing.Point(755, 117);
     this.lblLastVisit.Name = "lblLastVisit";
     this.lblLastVisit.Size = new System.Drawing.Size(108, 16);
     this.lblLastVisit.StyleController = this.layoutControl1;
     this.lblLastVisit.TabIndex = 21;
     //
     // lblStatus
     //
     this.lblStatus.Location = new System.Drawing.Point(926, 117);
     this.lblStatus.Name = "lblStatus";
     this.lblStatus.Size = new System.Drawing.Size(175, 16);
     this.lblStatus.StyleController = this.layoutControl1;
     this.lblStatus.TabIndex = 20;
     //
     // lblRequestedDate
     //
     this.lblRequestedDate.Location = new System.Drawing.Point(511, 117);
     this.lblRequestedDate.Name = "lblRequestedDate";
     this.lblRequestedDate.Size = new System.Drawing.Size(121, 16);
     this.lblRequestedDate.StyleController = this.layoutControl1;
     this.lblRequestedDate.TabIndex = 19;
     //
     // lblRequestedBy
     //
     this.lblRequestedBy.Location = new System.Drawing.Point(511, 137);
     this.lblRequestedBy.Name = "lblRequestedBy";
     this.lblRequestedBy.Size = new System.Drawing.Size(121, 16);
     this.lblRequestedBy.StyleController = this.layoutControl1;
     this.lblRequestedBy.TabIndex = 18;
     //
     // lblRegion
     //
     this.lblRegion.Location = new System.Drawing.Point(946, 83);
     this.lblRegion.Name = "lblRegion";
     this.lblRegion.Size = new System.Drawing.Size(155, 16);
     this.lblRegion.StyleController = this.layoutControl1;
     this.lblRegion.TabIndex = 17;
     //
     // lblOwnership
     //
     this.lblOwnership.Location = new System.Drawing.Point(946, 63);
     this.lblOwnership.Name = "lblOwnership";
     this.lblOwnership.Size = new System.Drawing.Size(155, 16);
     this.lblOwnership.StyleController = this.layoutControl1;
     this.lblOwnership.TabIndex = 16;
     //
     // lblZone
     //
     this.lblZone.Location = new System.Drawing.Point(709, 83);
     this.lblZone.Name = "lblZone";
     this.lblZone.Size = new System.Drawing.Size(166, 16);
     this.lblZone.StyleController = this.layoutControl1;
     this.lblZone.TabIndex = 15;
     //
     // lblPaymentType
     //
     this.lblPaymentType.Location = new System.Drawing.Point(708, 63);
     this.lblPaymentType.Name = "lblPaymentType";
     this.lblPaymentType.Size = new System.Drawing.Size(167, 16);
     this.lblPaymentType.StyleController = this.layoutControl1;
     this.lblPaymentType.TabIndex = 14;
     //
     // lblWoreda
     //
     this.lblWoreda.Appearance.ForeColor = System.Drawing.Color.Black;
     this.lblWoreda.Location = new System.Drawing.Point(466, 83);
     this.lblWoreda.Name = "lblWoreda";
     this.lblWoreda.Size = new System.Drawing.Size(179, 16);
     this.lblWoreda.StyleController = this.layoutControl1;
     this.lblWoreda.TabIndex = 13;
     //
     // lblMode
     //
     this.lblMode.Appearance.ForeColor = System.Drawing.Color.Black;
     this.lblMode.Location = new System.Drawing.Point(466, 63);
     this.lblMode.Name = "lblMode";
     this.lblMode.Size = new System.Drawing.Size(179, 16);
     this.lblMode.StyleController = this.layoutControl1;
     this.lblMode.TabIndex = 12;
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(49, 61);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Size = new System.Drawing.Size(327, 20);
     this.textEdit1.StyleController = this.layoutControl1;
     this.textEdit1.TabIndex = 11;
     this.textEdit1.TextChanged += new System.EventHandler(this.textEdit1_TextChanged);
     //
     // btnCenterRequisition
     //
     this.btnCenterRequisition.AllowFocus = false;
     this.btnCenterRequisition.Enabled = false;
     this.btnCenterRequisition.Image = global::HCMIS.Desktop.Properties.Resources.New;
     this.btnCenterRequisition.Location = new System.Drawing.Point(971, 4);
     this.btnCenterRequisition.Name = "btnCenterRequisition";
     this.btnCenterRequisition.Size = new System.Drawing.Size(144, 22);
     this.btnCenterRequisition.StyleController = this.layoutControl1;
     this.btnCenterRequisition.TabIndex = 5;
     this.btnCenterRequisition.Text = "Center";
     this.btnCenterRequisition.Visible = false;
     this.btnCenterRequisition.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // btnDeleteRequisition
     //
     this.btnDeleteRequisition.Image = global::HCMIS.Desktop.Properties.Resources.disk;
     this.btnDeleteRequisition.Location = new System.Drawing.Point(681, 396);
     this.btnDeleteRequisition.Name = "btnDeleteRequisition";
     this.btnDeleteRequisition.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnDeleteRequisition.Size = new System.Drawing.Size(142, 22);
     this.btnDeleteRequisition.StyleController = this.layoutControl1;
     this.btnDeleteRequisition.TabIndex = 10;
     this.btnDeleteRequisition.Text = "Submit";
     this.btnDeleteRequisition.Click += new System.EventHandler(this.btnSubmitWishlist_Click);
     //
     // btnEditRequistion
     //
     this.btnEditRequistion.Image = global::HCMIS.Desktop.Properties.Resources.Edit2;
     this.btnEditRequistion.Location = new System.Drawing.Point(827, 396);
     this.btnEditRequistion.Name = "btnEditRequistion";
     this.btnEditRequistion.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnEditRequistion.Size = new System.Drawing.Size(142, 22);
     this.btnEditRequistion.StyleController = this.layoutControl1;
     this.btnEditRequistion.TabIndex = 9;
     this.btnEditRequistion.Text = "Edit";
     this.btnEditRequistion.Click += new System.EventHandler(this.btnEditRequistion_Click);
     //
     // btnSubmitWishlist
     //
     this.btnSubmitWishlist.Image = global::HCMIS.Desktop.Properties.Resources.cross;
     this.btnSubmitWishlist.Location = new System.Drawing.Point(973, 396);
     this.btnSubmitWishlist.Name = "btnSubmitWishlist";
     this.btnSubmitWishlist.Size = new System.Drawing.Size(142, 22);
     this.btnSubmitWishlist.StyleController = this.layoutControl1;
     this.btnSubmitWishlist.TabIndex = 8;
     this.btnSubmitWishlist.Text = "Cancel";
     this.btnSubmitWishlist.Click += new System.EventHandler(this.btnDeleteRequisition_Click);
     //
     // gridRequisitionDetails
     //
     this.gridRequisitionDetails.Location = new System.Drawing.Point(400, 171);
     this.gridRequisitionDetails.MainView = this.gridReqisitionDetailsView;
     this.gridRequisitionDetails.Name = "gridRequisitionDetails";
     this.gridRequisitionDetails.Size = new System.Drawing.Size(715, 221);
     this.gridRequisitionDetails.TabIndex = 7;
     this.gridRequisitionDetails.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridReqisitionDetailsView});
     this.gridRequisitionDetails.Click += new System.EventHandler(this.gridRequisitionDetails_Click);
     //
     // gridReqisitionDetailsView
     //
     this.gridReqisitionDetailsView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colStockCode,
     this.gridColumn18,
     this.gridColumn19,
     this.gridColumn20,
     this.colSOH,
     this.colExpired,
     this.colDamaged});
     this.gridReqisitionDetailsView.GridControl = this.gridRequisitionDetails;
     this.gridReqisitionDetailsView.IndicatorWidth = 40;
     this.gridReqisitionDetailsView.Name = "gridReqisitionDetailsView";
     this.gridReqisitionDetailsView.OptionsBehavior.Editable = false;
     this.gridReqisitionDetailsView.OptionsMenu.EnableColumnMenu = false;
     this.gridReqisitionDetailsView.OptionsMenu.EnableFooterMenu = false;
     this.gridReqisitionDetailsView.OptionsMenu.EnableGroupPanelMenu = false;
     this.gridReqisitionDetailsView.OptionsMenu.ShowAutoFilterRowItem = false;
     this.gridReqisitionDetailsView.OptionsMenu.ShowDateTimeGroupIntervalItems = false;
     this.gridReqisitionDetailsView.OptionsMenu.ShowGroupSortSummaryItems = false;
     this.gridReqisitionDetailsView.OptionsMenu.ShowSplitItem = false;
     this.gridReqisitionDetailsView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridReqisitionDetailsView.OptionsView.ShowGroupPanel = false;
     this.gridReqisitionDetailsView.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridListView_CustomDrawRowIndicator);
     //
     // colStockCode
     //
     this.colStockCode.Caption = "Stock Code";
     this.colStockCode.FieldName = "StockCode";
     this.colStockCode.Name = "colStockCode";
     this.colStockCode.OptionsColumn.AllowEdit = false;
     this.colStockCode.OptionsColumn.AllowFocus = false;
     this.colStockCode.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colStockCode.OptionsColumn.AllowIncrementalSearch = false;
     this.colStockCode.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colStockCode.OptionsColumn.AllowMove = false;
     this.colStockCode.OptionsColumn.AllowShowHide = false;
     this.colStockCode.OptionsColumn.AllowSize = false;
     this.colStockCode.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colStockCode.OptionsColumn.FixedWidth = true;
     this.colStockCode.OptionsColumn.ShowInCustomizationForm = false;
     this.colStockCode.OptionsColumn.ShowInExpressionEditor = false;
     this.colStockCode.OptionsFilter.AllowAutoFilter = false;
     this.colStockCode.OptionsFilter.AllowFilter = false;
     this.colStockCode.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colStockCode.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colStockCode.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colStockCode.Visible = true;
     this.colStockCode.VisibleIndex = 0;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Item";
     this.gridColumn18.FieldName = "FullItemName";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.OptionsColumn.AllowEdit = false;
     this.gridColumn18.OptionsColumn.AllowFocus = false;
     this.gridColumn18.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn18.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn18.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn18.OptionsColumn.AllowMove = false;
     this.gridColumn18.OptionsColumn.AllowShowHide = false;
     this.gridColumn18.OptionsColumn.AllowSize = false;
     this.gridColumn18.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn18.OptionsColumn.FixedWidth = true;
     this.gridColumn18.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn18.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn18.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn18.OptionsFilter.AllowFilter = false;
     this.gridColumn18.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn18.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn18.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 1;
     this.gridColumn18.Width = 297;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Unit";
     this.gridColumn19.FieldName = "UnitText";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.AllowEdit = false;
     this.gridColumn19.OptionsColumn.AllowFocus = false;
     this.gridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn19.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsColumn.AllowMove = false;
     this.gridColumn19.OptionsColumn.AllowShowHide = false;
     this.gridColumn19.OptionsColumn.AllowSize = false;
     this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsColumn.FixedWidth = true;
     this.gridColumn19.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn19.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn19.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn19.OptionsFilter.AllowFilter = false;
     this.gridColumn19.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 2;
     this.gridColumn19.Width = 59;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Quantity";
     this.gridColumn20.DisplayFormat.FormatString = "#,###.##";
     this.gridColumn20.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn20.FieldName = "Quantity";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.OptionsColumn.AllowEdit = false;
     this.gridColumn20.OptionsColumn.AllowFocus = false;
     this.gridColumn20.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn20.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsColumn.AllowMove = false;
     this.gridColumn20.OptionsColumn.AllowShowHide = false;
     this.gridColumn20.OptionsColumn.AllowSize = false;
     this.gridColumn20.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsColumn.FixedWidth = true;
     this.gridColumn20.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn20.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn20.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn20.OptionsFilter.AllowFilter = false;
     this.gridColumn20.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 6;
     this.gridColumn20.Width = 40;
     //
     // colSOH
     //
     this.colSOH.Caption = "SOH";
     this.colSOH.DisplayFormat.FormatString = "#,###.##";
     this.colSOH.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colSOH.FieldName = "StockOnHand";
     this.colSOH.Name = "colSOH";
     this.colSOH.OptionsColumn.AllowEdit = false;
     this.colSOH.OptionsColumn.AllowFocus = false;
     this.colSOH.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsColumn.AllowIncrementalSearch = false;
     this.colSOH.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsColumn.AllowMove = false;
     this.colSOH.OptionsColumn.AllowShowHide = false;
     this.colSOH.OptionsColumn.AllowSize = false;
     this.colSOH.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsColumn.FixedWidth = true;
     this.colSOH.OptionsColumn.ShowInCustomizationForm = false;
     this.colSOH.OptionsColumn.ShowInExpressionEditor = false;
     this.colSOH.OptionsFilter.AllowAutoFilter = false;
     this.colSOH.OptionsFilter.AllowFilter = false;
     this.colSOH.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colSOH.Visible = true;
     this.colSOH.VisibleIndex = 3;
     this.colSOH.Width = 40;
     //
     // colExpired
     //
     this.colExpired.Caption = "Expired";
     this.colExpired.DisplayFormat.FormatString = "#,###.##";
     this.colExpired.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colExpired.FieldName = "ExpiredStock";
     this.colExpired.Name = "colExpired";
     this.colExpired.OptionsColumn.AllowEdit = false;
     this.colExpired.OptionsColumn.AllowFocus = false;
     this.colExpired.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsColumn.AllowIncrementalSearch = false;
     this.colExpired.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsColumn.AllowMove = false;
     this.colExpired.OptionsColumn.AllowShowHide = false;
     this.colExpired.OptionsColumn.AllowSize = false;
     this.colExpired.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsColumn.FixedWidth = true;
     this.colExpired.OptionsColumn.ShowInCustomizationForm = false;
     this.colExpired.OptionsColumn.ShowInExpressionEditor = false;
     this.colExpired.OptionsFilter.AllowAutoFilter = false;
     this.colExpired.OptionsFilter.AllowFilter = false;
     this.colExpired.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colExpired.Visible = true;
     this.colExpired.VisibleIndex = 4;
     this.colExpired.Width = 40;
     //
     // colDamaged
     //
     this.colDamaged.Caption = "Damaged";
     this.colDamaged.DisplayFormat.FormatString = "#,###.##";
     this.colDamaged.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colDamaged.FieldName = "DamagedStock";
     this.colDamaged.Name = "colDamaged";
     this.colDamaged.OptionsColumn.AllowEdit = false;
     this.colDamaged.OptionsColumn.AllowFocus = false;
     this.colDamaged.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsColumn.AllowIncrementalSearch = false;
     this.colDamaged.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsColumn.AllowMove = false;
     this.colDamaged.OptionsColumn.AllowShowHide = false;
     this.colDamaged.OptionsColumn.AllowSize = false;
     this.colDamaged.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsColumn.FixedWidth = true;
     this.colDamaged.OptionsColumn.ShowInCustomizationForm = false;
     this.colDamaged.OptionsColumn.ShowInExpressionEditor = false;
     this.colDamaged.OptionsFilter.AllowAutoFilter = false;
     this.colDamaged.OptionsFilter.AllowFilter = false;
     this.colDamaged.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colDamaged.Visible = true;
     this.colDamaged.VisibleIndex = 5;
     this.colDamaged.Width = 40;
     //
     // gridRequisitions
     //
     this.gridRequisitions.Location = new System.Drawing.Point(4, 120);
     this.gridRequisitions.MainView = this.gridRequisitionListView;
     this.gridRequisitions.Name = "gridRequisitions";
     this.gridRequisitions.Size = new System.Drawing.Size(384, 272);
     this.gridRequisitions.TabIndex = 6;
     this.gridRequisitions.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridRequisitionListView});
     //
     // gridRequisitionListView
     //
     this.gridRequisitionListView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn16,
     this.gridColumn1,
     this.colDateRequested});
     this.gridRequisitionListView.GridControl = this.gridRequisitions;
     this.gridRequisitionListView.IndicatorWidth = 40;
     this.gridRequisitionListView.Name = "gridRequisitionListView";
     this.gridRequisitionListView.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridRequisitionListView.OptionsMenu.EnableColumnMenu = false;
     this.gridRequisitionListView.OptionsMenu.EnableFooterMenu = false;
     this.gridRequisitionListView.OptionsMenu.EnableGroupPanelMenu = false;
     this.gridRequisitionListView.OptionsMenu.ShowAutoFilterRowItem = false;
     this.gridRequisitionListView.OptionsMenu.ShowDateTimeGroupIntervalItems = false;
     this.gridRequisitionListView.OptionsMenu.ShowGroupSortSummaryItems = false;
     this.gridRequisitionListView.OptionsMenu.ShowSplitItem = false;
     this.gridRequisitionListView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridRequisitionListView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridRequisitionListView.OptionsView.ShowGroupPanel = false;
     this.gridRequisitionListView.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridListView_CustomDrawRowIndicator);
     this.gridRequisitionListView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridRequisitionListView_FocusedRowChanged);
     this.gridRequisitionListView.Click += new System.EventHandler(this.gridRequisitionListView_Click);
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Ref No";
     this.gridColumn15.FieldName = "RefNo";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsColumn.AllowMove = false;
     this.gridColumn15.OptionsColumn.AllowShowHide = false;
     this.gridColumn15.OptionsColumn.AllowSize = false;
     this.gridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsColumn.FixedWidth = true;
     this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn15.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn15.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn15.OptionsFilter.AllowFilter = false;
     this.gridColumn15.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 50;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Facility";
     this.gridColumn16.FieldName = "Name";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.OptionsColumn.AllowEdit = false;
     this.gridColumn16.OptionsColumn.AllowFocus = false;
     this.gridColumn16.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn16.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn16.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn16.OptionsColumn.AllowMove = false;
     this.gridColumn16.OptionsColumn.AllowShowHide = false;
     this.gridColumn16.OptionsColumn.AllowSize = false;
     this.gridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn16.OptionsColumn.FixedWidth = true;
     this.gridColumn16.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn16.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn16.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn16.OptionsFilter.AllowFilter = false;
     this.gridColumn16.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn16.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn16.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 1;
     this.gridColumn16.Width = 194;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Status";
     this.gridColumn1.FieldName = "Status";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.AllowFocus = false;
     this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn1.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn1.OptionsColumn.AllowMove = false;
     this.gridColumn1.OptionsColumn.AllowShowHide = false;
     this.gridColumn1.OptionsColumn.AllowSize = false;
     this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn1.OptionsColumn.FixedWidth = true;
     this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn1.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn1.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn1.OptionsFilter.AllowFilter = false;
     this.gridColumn1.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn1.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn1.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 2;
     //
     // colDateRequested
     //
     this.colDateRequested.Caption = "Requested";
     this.colDateRequested.FieldName = "DateRequested";
     this.colDateRequested.Name = "colDateRequested";
     this.colDateRequested.OptionsColumn.AllowEdit = false;
     this.colDateRequested.OptionsColumn.AllowFocus = false;
     this.colDateRequested.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colDateRequested.OptionsColumn.AllowIncrementalSearch = false;
     this.colDateRequested.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colDateRequested.OptionsColumn.AllowMove = false;
     this.colDateRequested.OptionsColumn.AllowShowHide = false;
     this.colDateRequested.OptionsColumn.AllowSize = false;
     this.colDateRequested.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colDateRequested.OptionsColumn.FixedWidth = true;
     this.colDateRequested.OptionsColumn.ShowInCustomizationForm = false;
     this.colDateRequested.OptionsColumn.ShowInExpressionEditor = false;
     this.colDateRequested.OptionsFilter.AllowAutoFilter = false;
     this.colDateRequested.OptionsFilter.AllowFilter = false;
     this.colDateRequested.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colDateRequested.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colDateRequested.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colDateRequested.Visible = true;
     this.colDateRequested.VisibleIndex = 3;
     //
     // chkShowSubmitted
     //
     this.chkShowSubmitted.Location = new System.Drawing.Point(16, 85);
     this.chkShowSubmitted.Name = "chkShowSubmitted";
     this.chkShowSubmitted.Properties.Caption = "Processed ";
     this.chkShowSubmitted.Size = new System.Drawing.Size(163, 19);
     this.chkShowSubmitted.StyleController = this.layoutControl1;
     this.chkShowSubmitted.TabIndex = 5;
     this.chkShowSubmitted.CheckedChanged += new System.EventHandler(this.chkShowSubmitted_CheckedChanged);
     //
     // btnNewRequisition
     //
     this.btnNewRequisition.Image = global::HCMIS.Desktop.Properties.Resources.New;
     this.btnNewRequisition.Location = new System.Drawing.Point(4, 4);
     this.btnNewRequisition.Name = "btnNewRequisition";
     this.btnNewRequisition.Size = new System.Drawing.Size(142, 22);
     this.btnNewRequisition.StyleController = this.layoutControl1;
     this.btnNewRequisition.TabIndex = 4;
     this.btnNewRequisition.Text = "New";
     this.btnNewRequisition.Click += new System.EventHandler(this.btnNewRequisition_Click);
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "Root";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem11,
     this.layoutControlItem14,
     this.layoutControlItem15,
     this.layoutControlItem16,
     this.layoutControlItem17,
     this.layoutControlItem9,
     this.layoutCenterRequisition,
     this.emptySpaceItem2,
     this.emptySpaceItem1,
     this.layoutControlGroup2,
     this.headerSection,
     this.emptySpaceItem3});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1119, 422);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.gridRequisitions;
     this.layoutControlItem11.CustomizationFormText = "layoutControlItem11";
     this.layoutControlItem11.Location = new System.Drawing.Point(0, 116);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(388, 276);
     this.layoutControlItem11.Text = "layoutControlItem11";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem11.TextToControlDistance = 0;
     this.layoutControlItem11.TextVisible = false;
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.Control = this.gridRequisitionDetails;
     this.layoutControlItem14.CustomizationFormText = "layoutControlItem14";
     this.layoutControlItem14.Location = new System.Drawing.Point(396, 167);
     this.layoutControlItem14.MinSize = new System.Drawing.Size(104, 24);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(719, 225);
     this.layoutControlItem14.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem14.Text = "layoutControlItem14";
     this.layoutControlItem14.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem14.TextToControlDistance = 0;
     this.layoutControlItem14.TextVisible = false;
     //
     // layoutControlItem15
     //
     this.layoutControlItem15.Control = this.btnSubmitWishlist;
     this.layoutControlItem15.CustomizationFormText = "layoutControlItem15";
     this.layoutControlItem15.Location = new System.Drawing.Point(969, 392);
     this.layoutControlItem15.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem15.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem15.Name = "layoutControlItem15";
     this.layoutControlItem15.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem15.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem15.Text = "layoutControlItem15";
     this.layoutControlItem15.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem15.TextToControlDistance = 0;
     this.layoutControlItem15.TextVisible = false;
     //
     // layoutControlItem16
     //
     this.layoutControlItem16.Control = this.btnEditRequistion;
     this.layoutControlItem16.CustomizationFormText = "layoutControlItem16";
     this.layoutControlItem16.Location = new System.Drawing.Point(823, 392);
     this.layoutControlItem16.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem16.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem16.Name = "layoutControlItem16";
     this.layoutControlItem16.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem16.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem16.Text = "layoutControlItem16";
     this.layoutControlItem16.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem16.TextToControlDistance = 0;
     this.layoutControlItem16.TextVisible = false;
     //
     // layoutControlItem17
     //
     this.layoutControlItem17.Control = this.btnDeleteRequisition;
     this.layoutControlItem17.CustomizationFormText = "layoutControlItem17";
     this.layoutControlItem17.Location = new System.Drawing.Point(677, 392);
     this.layoutControlItem17.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem17.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem17.Name = "layoutControlItem17";
     this.layoutControlItem17.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem17.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem17.Text = "layoutControlItem17";
     this.layoutControlItem17.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem17.TextToControlDistance = 0;
     this.layoutControlItem17.TextVisible = false;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.btnNewRequisition;
     this.layoutControlItem9.CustomizationFormText = "layoutControlItem9";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem9.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem9.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem9.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem9.Text = "layoutControlItem9";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem9.TextToControlDistance = 0;
     this.layoutControlItem9.TextVisible = false;
     //
     // layoutCenterRequisition
     //
     this.layoutCenterRequisition.Control = this.btnCenterRequisition;
     this.layoutCenterRequisition.CustomizationFormText = "layoutControlItem1";
     this.layoutCenterRequisition.Location = new System.Drawing.Point(967, 0);
     this.layoutCenterRequisition.MinSize = new System.Drawing.Size(67, 26);
     this.layoutCenterRequisition.Name = "layoutCenterRequisition";
     this.layoutCenterRequisition.Size = new System.Drawing.Size(148, 26);
     this.layoutCenterRequisition.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutCenterRequisition.Text = "layoutCenterRequisition";
     this.layoutCenterRequisition.TextSize = new System.Drawing.Size(0, 0);
     this.layoutCenterRequisition.TextToControlDistance = 0;
     this.layoutCenterRequisition.TextVisible = false;
     this.layoutCenterRequisition.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(0, 392);
     this.emptySpaceItem2.MaxSize = new System.Drawing.Size(0, 26);
     this.emptySpaceItem2.MinSize = new System.Drawing.Size(10, 26);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(677, 26);
     this.emptySpaceItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(146, 0);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(821, 26);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "Filter";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem10,
     this.emptySpaceItem5});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 26);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(388, 90);
     this.layoutControlGroup2.Text = "Filter";
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.layoutControlItem1.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem1.Control = this.textEdit1;
     this.layoutControlItem1.CustomizationFormText = "Filter:";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(364, 24);
     this.layoutControlItem1.Text = "Filter:";
     this.layoutControlItem1.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(28, 13);
     this.layoutControlItem1.TextToControlDistance = 5;
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.Control = this.chkShowSubmitted;
     this.layoutControlItem10.CustomizationFormText = "layoutControlItem10";
     this.layoutControlItem10.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem10.MinSize = new System.Drawing.Size(79, 23);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(167, 23);
     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;
     //
     // emptySpaceItem5
     //
     this.emptySpaceItem5.AllowHotTrack = false;
     this.emptySpaceItem5.CustomizationFormText = "emptySpaceItem5";
     this.emptySpaceItem5.Location = new System.Drawing.Point(167, 24);
     this.emptySpaceItem5.MaxSize = new System.Drawing.Size(0, 23);
     this.emptySpaceItem5.MinSize = new System.Drawing.Size(10, 23);
     this.emptySpaceItem5.Name = "emptySpaceItem5";
     this.emptySpaceItem5.Size = new System.Drawing.Size(197, 23);
     this.emptySpaceItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem5.Text = "emptySpaceItem5";
     this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
     //
     // headerSection
     //
     this.headerSection.AppearanceGroup.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.headerSection.AppearanceGroup.Options.UseFont = true;
     this.headerSection.CustomizationFormText = " ";
     this.headerSection.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup3,
     this.layoutControlGroup5,
     this.layoutControlGroup6,
     this.layoutControlGroup7});
     this.headerSection.Location = new System.Drawing.Point(396, 26);
     this.headerSection.Name = "headerSection";
     this.headerSection.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.headerSection.Size = new System.Drawing.Size(719, 141);
     this.headerSection.Text = " ";
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(388, 26);
     this.emptySpaceItem3.MaxSize = new System.Drawing.Size(8, 0);
     this.emptySpaceItem3.MinSize = new System.Drawing.Size(8, 24);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.OptionsCustomization.AllowDrag = DevExpress.XtraLayout.ItemDragDropMode.Disable;
     this.emptySpaceItem3.OptionsCustomization.AllowDrop = DevExpress.XtraLayout.ItemDragDropMode.Disable;
     this.emptySpaceItem3.Size = new System.Drawing.Size(8, 366);
     this.emptySpaceItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // popupMenu1
     //
     this.popupMenu1.Name = "popupMenu1";
     //
     // emptySpaceItem15
     //
     this.emptySpaceItem15.AllowHotTrack = false;
     this.emptySpaceItem15.CustomizationFormText = "emptySpaceItem15";
     this.emptySpaceItem15.Location = new System.Drawing.Point(0, 116);
     this.emptySpaceItem15.Name = "emptySpaceItem15";
     this.emptySpaceItem15.Size = new System.Drawing.Size(717, 10);
     this.emptySpaceItem15.Text = "emptySpaceItem15";
     this.emptySpaceItem15.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup8
     //
     this.layoutControlGroup8.CustomizationFormText = "layoutControlGroup8";
     this.layoutControlGroup8.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup8.Name = "layoutControlGroup8";
     this.layoutControlGroup8.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup8.Size = new System.Drawing.Size(717, 116);
     this.layoutControlGroup8.Text = "layoutControlGroup8";
     //
     // layoutControlGroup9
     //
     this.layoutControlGroup9.CustomizationFormText = "layoutControlGroup9";
     this.layoutControlGroup9.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup9.Name = "layoutControlGroup9";
     this.layoutControlGroup9.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup9.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup9.Text = "layoutControlGroup9";
     //
     // layoutControlGroup10
     //
     this.layoutControlGroup10.CustomizationFormText = "layoutControlGroup10";
     this.layoutControlGroup10.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup10.Name = "layoutControlGroup10";
     this.layoutControlGroup10.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup10.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup10.Text = "layoutControlGroup10";
     //
     // emptySpaceItem10
     //
     this.emptySpaceItem10.AllowHotTrack = false;
     this.emptySpaceItem10.CustomizationFormText = "emptySpaceItem10";
     this.emptySpaceItem10.Location = new System.Drawing.Point(0, 0);
     this.emptySpaceItem10.Name = "emptySpaceItem10";
     this.emptySpaceItem10.Size = new System.Drawing.Size(693, 10);
     this.emptySpaceItem10.Text = "emptySpaceItem10";
     this.emptySpaceItem10.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem22
     //
     this.emptySpaceItem22.AllowHotTrack = false;
     this.emptySpaceItem22.CustomizationFormText = "emptySpaceItem22";
     this.emptySpaceItem22.Location = new System.Drawing.Point(85, 0);
     this.emptySpaceItem22.Name = "emptySpaceItem22";
     this.emptySpaceItem22.Size = new System.Drawing.Size(119, 479);
     this.emptySpaceItem22.Text = "emptySpaceItem22";
     this.emptySpaceItem22.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem23
     //
     this.emptySpaceItem23.AllowHotTrack = false;
     this.emptySpaceItem23.CustomizationFormText = "emptySpaceItem23";
     this.emptySpaceItem23.Location = new System.Drawing.Point(1179, 24);
     this.emptySpaceItem23.Name = "emptySpaceItem23";
     this.emptySpaceItem23.Size = new System.Drawing.Size(10, 455);
     this.emptySpaceItem23.Text = "emptySpaceItem23";
     this.emptySpaceItem23.TextSize = new System.Drawing.Size(0, 0);
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
     this.printableComponentLink1,
     this.printOrder});
     //
     // printableComponentLink1
     //
     //
     //
     //
     this.printableComponentLink1.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink1.ImageCollection.ImageStream")));
     this.printableComponentLink1.Landscape = true;
     this.printableComponentLink1.Margins = new System.Drawing.Printing.Margins(20, 20, 20, 20);
     this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(null, new DevExpress.XtraPrinting.PageFooterArea(new string[] {
         "[Time Printed]",
         "[Date Printed]",
         "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))), DevExpress.XtraPrinting.BrickAlignment.Near));
     this.printableComponentLink1.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printableComponentLink1.PrintingSystem = this.printingSystem1;
     this.printableComponentLink1.PrintingSystemBase = this.printingSystem1;
     this.printableComponentLink1.RtfReportHeader = resources.GetString("printableComponentLink1.RtfReportHeader");
     //
     // printOrder
     //
     //
     //
     //
     this.printOrder.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printOrder.ImageCollection.ImageStream")));
     this.printOrder.Landscape = true;
     this.printOrder.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printOrder.PrintingSystem = this.printingSystem1;
     this.printOrder.PrintingSystemBase = this.printingSystem1;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem3,
     this.layoutControlItem2,
     this.layoutControlItem4,
     this.layoutControlItem5,
     this.layoutControlItem6,
     this.layoutControlItem7});
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup3.Size = new System.Drawing.Size(705, 54);
     this.layoutControlGroup3.Text = "layoutControlGroup3";
     this.layoutControlGroup3.TextVisible = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem3.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem3.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem3.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem3.Control = this.lblWoreda;
     this.layoutControlItem3.CustomizationFormText = "Woreda:";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(235, 20);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Woreda:";
     this.layoutControlItem3.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(47, 13);
     this.layoutControlItem3.TextToControlDistance = 5;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem2.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem2.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem2.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem2.Control = this.lblMode;
     this.layoutControlItem2.CustomizationFormText = "Mode:";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(235, 20);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Mode:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(34, 13);
     this.layoutControlItem2.TextToControlDistance = 18;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem4.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem4.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem4.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem4.Control = this.lblPaymentType;
     this.layoutControlItem4.CustomizationFormText = "Payment Type:";
     this.layoutControlItem4.Location = new System.Drawing.Point(235, 0);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(230, 20);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Payment:";
     this.layoutControlItem4.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(54, 13);
     this.layoutControlItem4.TextToControlDistance = 5;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem5.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem5.Control = this.lblZone;
     this.layoutControlItem5.CustomizationFormText = "Zone:";
     this.layoutControlItem5.Location = new System.Drawing.Point(235, 20);
     this.layoutControlItem5.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(230, 20);
     this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem5.Text = "Zone:";
     this.layoutControlItem5.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem5.TextToControlDistance = 29;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem6.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem6.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem6.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem6.Control = this.lblOwnership;
     this.layoutControlItem6.CustomizationFormText = "Ownership:";
     this.layoutControlItem6.Location = new System.Drawing.Point(465, 0);
     this.layoutControlItem6.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(226, 20);
     this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem6.Text = "Ownership:";
     this.layoutControlItem6.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem6.TextSize = new System.Drawing.Size(62, 13);
     this.layoutControlItem6.TextToControlDistance = 5;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem7.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem7.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem7.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem7.Control = this.lblRegion;
     this.layoutControlItem7.CustomizationFormText = "Region:";
     this.layoutControlItem7.Location = new System.Drawing.Point(465, 20);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(226, 20);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.Text = "Region:";
     this.layoutControlItem7.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(42, 13);
     this.layoutControlItem7.TextToControlDistance = 25;
     //
     // layoutControlGroup5
     //
     this.layoutControlGroup5.CustomizationFormText = "layoutControlGroup5";
     this.layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.lRequestedDate,
     this.layoutControlItem8});
     this.layoutControlGroup5.Location = new System.Drawing.Point(0, 54);
     this.layoutControlGroup5.Name = "layoutControlGroup5";
     this.layoutControlGroup5.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup5.Size = new System.Drawing.Size(236, 54);
     this.layoutControlGroup5.Text = "layoutControlGroup5";
     this.layoutControlGroup5.TextVisible = false;
     //
     // lRequestedDate
     //
     this.lRequestedDate.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lRequestedDate.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.lRequestedDate.AppearanceItemCaption.Options.UseFont = true;
     this.lRequestedDate.AppearanceItemCaption.Options.UseForeColor = true;
     this.lRequestedDate.Control = this.lblRequestedDate;
     this.lRequestedDate.CustomizationFormText = "Requested Date:";
     this.lRequestedDate.Location = new System.Drawing.Point(0, 0);
     this.lRequestedDate.MaxSize = new System.Drawing.Size(0, 20);
     this.lRequestedDate.MinSize = new System.Drawing.Size(67, 20);
     this.lRequestedDate.Name = "lRequestedDate";
     this.lRequestedDate.Size = new System.Drawing.Size(222, 20);
     this.lRequestedDate.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.lRequestedDate.Text = "Requested Date:";
     this.lRequestedDate.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem8.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem8.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem8.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem8.Control = this.lblRequestedBy;
     this.layoutControlItem8.CustomizationFormText = "Requested By:";
     this.layoutControlItem8.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem8.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem8.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(222, 20);
     this.layoutControlItem8.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem8.Text = "Requested By:";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlGroup6
     //
     this.layoutControlGroup6.CustomizationFormText = "layoutControlGroup6";
     this.layoutControlGroup6.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem12,
     this.layoutControlItem19});
     this.layoutControlGroup6.Location = new System.Drawing.Point(467, 54);
     this.layoutControlGroup6.Name = "layoutControlGroup6";
     this.layoutControlGroup6.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup6.Size = new System.Drawing.Size(238, 54);
     this.layoutControlGroup6.Text = "layoutControlGroup6";
     this.layoutControlGroup6.TextVisible = false;
     //
     // 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.lblStatus;
     this.layoutControlItem12.CustomizationFormText = "Status:";
     this.layoutControlItem12.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem12.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Size = new System.Drawing.Size(224, 20);
     this.layoutControlItem12.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem12.Text = "Status:";
     this.layoutControlItem12.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem12.TextSize = new System.Drawing.Size(40, 13);
     this.layoutControlItem12.TextToControlDistance = 5;
     //
     // layoutControlItem19
     //
     this.layoutControlItem19.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem19.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem19.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem19.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem19.Control = this.lblIssueType;
     this.layoutControlItem19.CustomizationFormText = "Type:";
     this.layoutControlItem19.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem19.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem19.Name = "layoutControlItem19";
     this.layoutControlItem19.Size = new System.Drawing.Size(224, 20);
     this.layoutControlItem19.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem19.Text = "Type:";
     this.layoutControlItem19.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem19.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem19.TextToControlDistance = 14;
     //
     // layoutControlGroup7
     //
     this.layoutControlGroup7.CustomizationFormText = "layoutControlGroup7";
     this.layoutControlGroup7.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem13,
     this.layoutControlItem18});
     this.layoutControlGroup7.Location = new System.Drawing.Point(236, 54);
     this.layoutControlGroup7.Name = "layoutControlGroup7";
     this.layoutControlGroup7.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup7.Size = new System.Drawing.Size(231, 54);
     this.layoutControlGroup7.Text = "layoutControlGroup7";
     this.layoutControlGroup7.TextVisible = false;
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem13.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem13.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem13.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem13.Control = this.lblLastVisit;
     this.layoutControlItem13.CustomizationFormText = "Last Visit:";
     this.layoutControlItem13.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem13.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(217, 20);
     this.layoutControlItem13.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem13.Text = "Last Visit:";
     this.layoutControlItem13.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem13.TextSize = new System.Drawing.Size(54, 13);
     this.layoutControlItem13.TextToControlDistance = 51;
     //
     // 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.lblNoOfReq;
     this.layoutControlItem18.CustomizationFormText = "No. of Requisition:";
     this.layoutControlItem18.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem18.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem18.Name = "layoutControlItem18";
     this.layoutControlItem18.Size = new System.Drawing.Size(217, 20);
     this.layoutControlItem18.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem18.Text = "Past Requisitions:";
     this.layoutControlItem18.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem18.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem18.TextToControlDistance = 5;
     //
     // ManageRequisitionForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1119, 422);
     this.Controls.Add(this.layoutControl1);
     this.Name = "ManageRequisitionForm";
     this.Text = "Order";
     this.Load += new System.EventHandler(this.OrderForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridRequisitionDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridReqisitionDetailsView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridRequisitions)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridRequisitionListView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkShowSubmitted.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutCenterRequisition)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.headerSection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printOrder.ImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidation1stTab)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).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.layoutControlGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lRequestedDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNum = 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.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.vQry46BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.vQry46TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.vQry46TableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).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.vQry46BindingSource)).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.vQry46BindingSource;
     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(734, 404);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicate,
     this.colNum});
     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 = 1;
     //
     // colNum
     //
     this.colNum.AppearanceCell.Options.UseTextOptions = true;
     this.colNum.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNum.AppearanceHeader.Options.UseTextOptions = true;
     this.colNum.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNum.Caption = "العدد";
     this.colNum.FieldName = "Num";
     this.colNum.Name = "colNum";
     this.colNum.OptionsColumn.ReadOnly = true;
     this.colNum.Visible = true;
     this.colNum.VisibleIndex = 3;
     //
     // 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.btnPrintExport);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(734, 47);
     this.panelControl1.TabIndex = 3;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrintExport.Location = new System.Drawing.Point(588, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // vQry46BindingSource
     //
     this.vQry46BindingSource.DataMember = "vQry46";
     this.vQry46BindingSource.DataSource = this.dsQueries;
     //
     // vQry46TableAdapter
     //
     this.vQry46TableAdapter.ClearBeforeFill = true;
     //
     // Qry46Frm
     //
     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 = "Qry46Frm";
     this.Text = "البيانات المصدرة للبنك - احصاء 2";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Qry06Frm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.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);
     ((System.ComponentModel.ISupportInitialize)(this.vQry46BindingSource)).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(FrmQueryCheckExtInfo));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.barButtonItem1 = 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.sharedImageCollection1 = new DevExpress.Utils.SharedImageCollection(this.components);
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.rISLISTBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colIsChecked = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.colApplyNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colHospNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colItemName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colItemResult = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTechNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLabelID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTechPatID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPatNameSpell = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPatientID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCureNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSex = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.colAge = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAgeUnit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBirthday = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colExecTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCareer = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPhone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAddress = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBedNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colZip = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNation = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colIDNum = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colChargeType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colChargeTypeName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colApplyDept = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colApplyDeptName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colWard = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colWardName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colWardOrReg = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colApplyTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBriefCase = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colClinicDesc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAcceptTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colApplyDoctor = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colApplyDoctorName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAccepter = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAccepterName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colExecDoctor1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colExecDoctor1Name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colExecDoctor2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colExecDoctor2Name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colQualityDoctor = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colQualityDoctorName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colVerifyDoctor = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colVerifyDoctorName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colReportDoctor = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colReportDoctorName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colReportWriter = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colReportWriterName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colFinallyEditDoctor = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colFinallyEditDoctorName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colFinallyEditTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAuditingTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPublicTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colReportID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colReportTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInstrument = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colOrgApplyNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLockFlag = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLocker = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPrintFlag = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDeleteFlag = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colChargeFlag = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colHavingImages = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEngName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEquipmentID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInvoice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colImageTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDpSign = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldpsuggest = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colExamTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBookCenterSID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCrisisFlag = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSurveySign = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSurveySuggest = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colJCBZ = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1.ImageSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rISLISTBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Images = this.sharedImageCollection1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItem1});
     this.barManager1.MaxItemId = 1;
     //
     // bar1
     //
     this.bar1.BarName = "Tools";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem1, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)});
     this.bar1.Text = "Tools";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "保存并退出";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.ImageIndex = 88;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(979, 31);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 454);
     this.barDockControlBottom.Size = new System.Drawing.Size(979, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 31);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 423);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(979, 31);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 423);
     //
     // sharedImageCollection1
     //
     //
     //
     //
     this.sharedImageCollection1.ImageSource.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("sharedImageCollection1.ImageSource.ImageStream")));
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._1, "_1", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 0);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(0, "_1");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._10, "_10", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 1);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(1, "_10");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._100, "_100", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 2);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(2, "_100");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._101, "_101", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 3);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(3, "_101");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._102, "_102", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 4);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(4, "_102");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._103, "_103", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 5);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(5, "_103");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._104, "_104", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 6);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(6, "_104");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._105, "_105", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 7);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(7, "_105");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._106, "_106", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 8);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(8, "_106");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._107, "_107", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 9);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(9, "_107");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._108, "_108", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 10);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(10, "_108");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._11, "_11", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 11);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(11, "_11");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._12, "_12", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 12);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(12, "_12");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._13, "_13", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 13);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(13, "_13");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._14, "_14", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 14);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(14, "_14");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._15, "_15", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 15);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(15, "_15");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._16, "_16", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 16);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(16, "_16");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._17, "_17", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 17);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(17, "_17");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._18, "_18", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 18);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(18, "_18");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._19, "_19", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 19);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(19, "_19");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._2, "_2", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 20);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(20, "_2");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._20, "_20", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 21);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(21, "_20");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._21, "_21", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 22);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(22, "_21");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._22, "_22", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 23);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(23, "_22");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._23, "_23", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 24);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(24, "_23");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._24, "_24", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 25);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(25, "_24");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._25, "_25", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 26);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(26, "_25");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._26, "_26", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 27);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(27, "_26");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._27, "_27", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 28);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(28, "_27");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._28, "_28", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 29);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(29, "_28");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._29, "_29", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 30);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(30, "_29");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._3, "_3", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 31);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(31, "_3");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._30, "_30", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 32);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(32, "_30");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._31, "_31", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 33);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(33, "_31");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._32, "_32", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 34);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(34, "_32");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._33, "_33", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 35);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(35, "_33");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._34, "_34", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 36);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(36, "_34");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._35, "_35", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 37);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(37, "_35");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._36, "_36", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 38);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(38, "_36");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._37, "_37", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 39);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(39, "_37");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._38, "_38", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 40);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(40, "_38");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._39, "_39", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 41);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(41, "_39");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._4, "_4", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 42);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(42, "_4");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._40, "_40", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 43);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(43, "_40");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._41, "_41", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 44);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(44, "_41");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._42, "_42", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 45);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(45, "_42");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._43, "_43", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 46);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(46, "_43");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._44, "_44", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 47);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(47, "_44");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._45, "_45", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 48);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(48, "_45");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._46, "_46", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 49);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(49, "_46");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._47, "_47", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 50);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(50, "_47");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._48, "_48", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 51);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(51, "_48");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._49, "_49", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 52);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(52, "_49");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._5, "_5", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 53);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(53, "_5");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._50, "_50", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 54);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(54, "_50");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._51, "_51", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 55);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(55, "_51");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._52, "_52", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 56);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(56, "_52");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._53, "_53", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 57);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(57, "_53");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._54, "_54", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 58);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(58, "_54");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._55, "_55", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 59);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(59, "_55");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._56, "_56", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 60);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(60, "_56");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._57, "_57", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 61);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(61, "_57");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._58, "_58", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 62);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(62, "_58");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._59, "_59", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 63);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(63, "_59");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._6, "_6", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 64);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(64, "_6");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._60, "_60", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 65);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(65, "_60");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._61, "_61", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 66);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(66, "_61");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._62, "_62", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 67);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(67, "_62");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._63, "_63", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 68);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(68, "_63");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._64, "_64", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 69);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(69, "_64");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._65, "_65", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 70);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(70, "_65");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._66, "_66", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 71);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(71, "_66");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._67, "_67", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 72);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(72, "_67");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._68, "_68", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 73);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(73, "_68");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._69, "_69", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 74);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(74, "_69");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._7, "_7", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 75);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(75, "_7");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._70, "_70", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 76);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(76, "_70");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._71, "_71", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 77);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(77, "_71");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._72, "_72", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 78);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(78, "_72");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._73, "_73", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 79);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(79, "_73");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._74, "_74", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 80);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(80, "_74");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._75, "_75", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 81);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(81, "_75");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._76, "_76", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 82);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(82, "_76");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._77, "_77", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 83);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(83, "_77");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._78, "_78", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 84);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(84, "_78");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._79, "_79", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 85);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(85, "_79");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._8, "_8", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 86);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(86, "_8");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._80, "_80", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 87);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(87, "_80");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._81, "_81", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 88);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(88, "_81");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._82, "_82", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 89);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(89, "_82");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._83, "_83", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 90);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(90, "_83");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._84, "_84", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 91);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(91, "_84");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._85, "_85", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 92);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(92, "_85");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._86, "_86", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 93);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(93, "_86");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._87, "_87", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 94);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(94, "_87");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._88, "_88", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 95);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(95, "_88");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._89, "_89", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 96);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(96, "_89");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._9, "_9", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 97);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(97, "_9");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._90, "_90", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 98);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(98, "_90");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._91, "_91", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 99);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(99, "_91");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._92, "_92", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 100);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(100, "_92");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._93, "_93", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 101);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(101, "_93");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._94, "_94", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 102);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(102, "_94");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._95, "_95", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 103);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(103, "_95");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._96, "_96", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 104);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(104, "_96");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._97, "_97", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 105);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(105, "_97");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._98, "_98", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 106);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(106, "_98");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._99, "_99", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 107);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(107, "_99");
     this.sharedImageCollection1.ParentControl = this;
     //
     // gridControl1
     //
     this.gridControl1.DataSource = this.rISLISTBindingSource1;
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Location = new System.Drawing.Point(0, 31);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.MenuManager = this.barManager1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit1,
     this.repositoryItemCheckEdit1});
     this.gridControl1.Size = new System.Drawing.Size(979, 423);
     this.gridControl1.TabIndex = 4;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // rISLISTBindingSource1
     //
     this.rISLISTBindingSource1.DataSource = typeof(CommonServiceLibrary.RISDBModels.RIS_LIST);
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colIsChecked,
     this.colApplyNo,
     this.colHospNo,
     this.colItemName,
     this.colItemResult,
     this.colTechNo,
     this.colLabelID,
     this.colTechPatID,
     this.colPatName,
     this.colPatNameSpell,
     this.colPatientID,
     this.colCureNo,
     this.colCardNo,
     this.colSex,
     this.colAge,
     this.colAgeUnit,
     this.colBirthday,
     this.colExecTime,
     this.colCareer,
     this.colPhone,
     this.colAddress,
     this.colBedNo,
     this.colZip,
     this.colNation,
     this.colIDNum,
     this.colChargeType,
     this.colChargeTypeName,
     this.colApplyDept,
     this.colApplyDeptName,
     this.colWard,
     this.colWardName,
     this.colWardOrReg,
     this.colApplyTime,
     this.colBriefCase,
     this.colClinicDesc,
     this.colAcceptTime,
     this.colApplyDoctor,
     this.colApplyDoctorName,
     this.colAccepter,
     this.colAccepterName,
     this.colExecDoctor1,
     this.colExecDoctor1Name,
     this.colExecDoctor2,
     this.colExecDoctor2Name,
     this.colQualityDoctor,
     this.colQualityDoctorName,
     this.colVerifyDoctor,
     this.colVerifyDoctorName,
     this.colReportDoctor,
     this.colReportDoctorName,
     this.colReportWriter,
     this.colReportWriterName,
     this.colFinallyEditDoctor,
     this.colFinallyEditDoctorName,
     this.colFinallyEditTime,
     this.colAuditingTime,
     this.colPublicTime,
     this.colReportID,
     this.colReportTime,
     this.colInstrument,
     this.colOrgApplyNo,
     this.colStatus,
     this.colLockFlag,
     this.colLocker,
     this.colPrintFlag,
     this.colDeleteFlag,
     this.colChargeFlag,
     this.colHavingImages,
     this.colEngName,
     this.colEquipmentID,
     this.colInvoice,
     this.colImageTime,
     this.colDpSign,
     this.coldpsuggest,
     this.colExamTime,
     this.colBookCenterSID,
     this.colCrisisFlag,
     this.colSurveySign,
     this.colSurveySuggest,
     this.colJCBZ});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.CustomDrawCell += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.gridView1_CustomDrawCell);
     //
     // colIsChecked
     //
     this.colIsChecked.Caption = "选择";
     this.colIsChecked.ColumnEdit = this.repositoryItemCheckEdit1;
     this.colIsChecked.FieldName = "IsChecked";
     this.colIsChecked.Name = "colIsChecked";
     this.colIsChecked.Visible = true;
     this.colIsChecked.VisibleIndex = 0;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // colApplyNo
     //
     this.colApplyNo.Caption = "申请号";
     this.colApplyNo.FieldName = "ApplyNo";
     this.colApplyNo.Name = "colApplyNo";
     this.colApplyNo.Visible = true;
     this.colApplyNo.VisibleIndex = 1;
     //
     // colHospNo
     //
     this.colHospNo.Caption = "门诊号";
     this.colHospNo.FieldName = "HospNo";
     this.colHospNo.Name = "colHospNo";
     this.colHospNo.Visible = true;
     this.colHospNo.VisibleIndex = 6;
     //
     // colItemName
     //
     this.colItemName.Caption = "检查项目";
     this.colItemName.FieldName = "ItemName";
     this.colItemName.Name = "colItemName";
     this.colItemName.Visible = true;
     this.colItemName.VisibleIndex = 4;
     //
     // colItemResult
     //
     this.colItemResult.Caption = "检查结果";
     this.colItemResult.FieldName = "ItemResult";
     this.colItemResult.Name = "colItemResult";
     this.colItemResult.Visible = true;
     this.colItemResult.VisibleIndex = 5;
     //
     // colTechNo
     //
     this.colTechNo.FieldName = "TechNo";
     this.colTechNo.Name = "colTechNo";
     //
     // colLabelID
     //
     this.colLabelID.FieldName = "LabelID";
     this.colLabelID.Name = "colLabelID";
     //
     // colTechPatID
     //
     this.colTechPatID.FieldName = "TechPatID";
     this.colTechPatID.Name = "colTechPatID";
     //
     // colPatName
     //
     this.colPatName.Caption = "姓名";
     this.colPatName.FieldName = "PatName";
     this.colPatName.Name = "colPatName";
     this.colPatName.Visible = true;
     this.colPatName.VisibleIndex = 3;
     //
     // colPatNameSpell
     //
     this.colPatNameSpell.FieldName = "PatNameSpell";
     this.colPatNameSpell.Name = "colPatNameSpell";
     //
     // colPatientID
     //
     this.colPatientID.FieldName = "PatientID";
     this.colPatientID.Name = "colPatientID";
     //
     // colCureNo
     //
     this.colCureNo.FieldName = "CureNo";
     this.colCureNo.Name = "colCureNo";
     //
     // colCardNo
     //
     this.colCardNo.FieldName = "CardNo";
     this.colCardNo.Name = "colCardNo";
     //
     // colSex
     //
     this.colSex.Caption = "性别";
     this.colSex.ColumnEdit = this.repositoryItemLookUpEdit1;
     this.colSex.FieldName = "Sex";
     this.colSex.Name = "colSex";
     this.colSex.Visible = true;
     this.colSex.VisibleIndex = 7;
     //
     // 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.Name = "repositoryItemLookUpEdit1";
     //
     // colAge
     //
     this.colAge.Caption = "年龄";
     this.colAge.FieldName = "Age";
     this.colAge.Name = "colAge";
     this.colAge.Visible = true;
     this.colAge.VisibleIndex = 8;
     //
     // colAgeUnit
     //
     this.colAgeUnit.Caption = "年龄单位";
     this.colAgeUnit.FieldName = "AgeUnit";
     this.colAgeUnit.Name = "colAgeUnit";
     this.colAgeUnit.Visible = true;
     this.colAgeUnit.VisibleIndex = 9;
     //
     // colBirthday
     //
     this.colBirthday.Caption = "出生年月";
     this.colBirthday.FieldName = "Birthday";
     this.colBirthday.Name = "colBirthday";
     this.colBirthday.Visible = true;
     this.colBirthday.VisibleIndex = 10;
     //
     // colExecTime
     //
     this.colExecTime.Caption = "检查时间";
     this.colExecTime.FieldName = "ExecTime";
     this.colExecTime.Name = "colExecTime";
     this.colExecTime.Visible = true;
     this.colExecTime.VisibleIndex = 2;
     //
     // colCareer
     //
     this.colCareer.Caption = "工作";
     this.colCareer.FieldName = "Career";
     this.colCareer.Name = "colCareer";
     this.colCareer.Visible = true;
     this.colCareer.VisibleIndex = 11;
     this.colCareer.Width = 86;
     //
     // colPhone
     //
     this.colPhone.Caption = "电话";
     this.colPhone.FieldName = "Phone";
     this.colPhone.Name = "colPhone";
     this.colPhone.Visible = true;
     this.colPhone.VisibleIndex = 12;
     this.colPhone.Width = 74;
     //
     // colAddress
     //
     this.colAddress.Caption = "住址";
     this.colAddress.FieldName = "Address";
     this.colAddress.Name = "colAddress";
     this.colAddress.Visible = true;
     this.colAddress.VisibleIndex = 13;
     //
     // colBedNo
     //
     this.colBedNo.Caption = "床号";
     this.colBedNo.FieldName = "BedNo";
     this.colBedNo.Name = "colBedNo";
     this.colBedNo.Visible = true;
     this.colBedNo.VisibleIndex = 14;
     //
     // colZip
     //
     this.colZip.FieldName = "Zip";
     this.colZip.Name = "colZip";
     //
     // colNation
     //
     this.colNation.FieldName = "Nation";
     this.colNation.Name = "colNation";
     //
     // colIDNum
     //
     this.colIDNum.FieldName = "IDNum";
     this.colIDNum.Name = "colIDNum";
     //
     // colChargeType
     //
     this.colChargeType.FieldName = "ChargeType";
     this.colChargeType.Name = "colChargeType";
     //
     // colChargeTypeName
     //
     this.colChargeTypeName.FieldName = "ChargeTypeName";
     this.colChargeTypeName.Name = "colChargeTypeName";
     //
     // colApplyDept
     //
     this.colApplyDept.FieldName = "ApplyDept";
     this.colApplyDept.Name = "colApplyDept";
     //
     // colApplyDeptName
     //
     this.colApplyDeptName.FieldName = "ApplyDeptName";
     this.colApplyDeptName.Name = "colApplyDeptName";
     //
     // colWard
     //
     this.colWard.FieldName = "Ward";
     this.colWard.Name = "colWard";
     //
     // colWardName
     //
     this.colWardName.FieldName = "WardName";
     this.colWardName.Name = "colWardName";
     //
     // colWardOrReg
     //
     this.colWardOrReg.FieldName = "WardOrReg";
     this.colWardOrReg.Name = "colWardOrReg";
     //
     // colApplyTime
     //
     this.colApplyTime.FieldName = "ApplyTime";
     this.colApplyTime.Name = "colApplyTime";
     //
     // colBriefCase
     //
     this.colBriefCase.FieldName = "BriefCase";
     this.colBriefCase.Name = "colBriefCase";
     //
     // colClinicDesc
     //
     this.colClinicDesc.FieldName = "ClinicDesc";
     this.colClinicDesc.Name = "colClinicDesc";
     //
     // colAcceptTime
     //
     this.colAcceptTime.FieldName = "AcceptTime";
     this.colAcceptTime.Name = "colAcceptTime";
     //
     // colApplyDoctor
     //
     this.colApplyDoctor.FieldName = "ApplyDoctor";
     this.colApplyDoctor.Name = "colApplyDoctor";
     //
     // colApplyDoctorName
     //
     this.colApplyDoctorName.FieldName = "ApplyDoctorName";
     this.colApplyDoctorName.Name = "colApplyDoctorName";
     //
     // colAccepter
     //
     this.colAccepter.FieldName = "Accepter";
     this.colAccepter.Name = "colAccepter";
     //
     // colAccepterName
     //
     this.colAccepterName.FieldName = "AccepterName";
     this.colAccepterName.Name = "colAccepterName";
     //
     // colExecDoctor1
     //
     this.colExecDoctor1.FieldName = "ExecDoctor1";
     this.colExecDoctor1.Name = "colExecDoctor1";
     //
     // colExecDoctor1Name
     //
     this.colExecDoctor1Name.FieldName = "ExecDoctor1Name";
     this.colExecDoctor1Name.Name = "colExecDoctor1Name";
     //
     // colExecDoctor2
     //
     this.colExecDoctor2.FieldName = "ExecDoctor2";
     this.colExecDoctor2.Name = "colExecDoctor2";
     //
     // colExecDoctor2Name
     //
     this.colExecDoctor2Name.FieldName = "ExecDoctor2Name";
     this.colExecDoctor2Name.Name = "colExecDoctor2Name";
     //
     // colQualityDoctor
     //
     this.colQualityDoctor.FieldName = "QualityDoctor";
     this.colQualityDoctor.Name = "colQualityDoctor";
     //
     // colQualityDoctorName
     //
     this.colQualityDoctorName.FieldName = "QualityDoctorName";
     this.colQualityDoctorName.Name = "colQualityDoctorName";
     //
     // colVerifyDoctor
     //
     this.colVerifyDoctor.FieldName = "VerifyDoctor";
     this.colVerifyDoctor.Name = "colVerifyDoctor";
     //
     // colVerifyDoctorName
     //
     this.colVerifyDoctorName.FieldName = "VerifyDoctorName";
     this.colVerifyDoctorName.Name = "colVerifyDoctorName";
     //
     // colReportDoctor
     //
     this.colReportDoctor.FieldName = "ReportDoctor";
     this.colReportDoctor.Name = "colReportDoctor";
     //
     // colReportDoctorName
     //
     this.colReportDoctorName.FieldName = "ReportDoctorName";
     this.colReportDoctorName.Name = "colReportDoctorName";
     //
     // colReportWriter
     //
     this.colReportWriter.FieldName = "ReportWriter";
     this.colReportWriter.Name = "colReportWriter";
     //
     // colReportWriterName
     //
     this.colReportWriterName.FieldName = "ReportWriterName";
     this.colReportWriterName.Name = "colReportWriterName";
     //
     // colFinallyEditDoctor
     //
     this.colFinallyEditDoctor.FieldName = "FinallyEditDoctor";
     this.colFinallyEditDoctor.Name = "colFinallyEditDoctor";
     //
     // colFinallyEditDoctorName
     //
     this.colFinallyEditDoctorName.FieldName = "FinallyEditDoctorName";
     this.colFinallyEditDoctorName.Name = "colFinallyEditDoctorName";
     //
     // colFinallyEditTime
     //
     this.colFinallyEditTime.FieldName = "FinallyEditTime";
     this.colFinallyEditTime.Name = "colFinallyEditTime";
     //
     // colAuditingTime
     //
     this.colAuditingTime.FieldName = "AuditingTime";
     this.colAuditingTime.Name = "colAuditingTime";
     //
     // colPublicTime
     //
     this.colPublicTime.FieldName = "PublicTime";
     this.colPublicTime.Name = "colPublicTime";
     //
     // colReportID
     //
     this.colReportID.FieldName = "ReportID";
     this.colReportID.Name = "colReportID";
     //
     // colReportTime
     //
     this.colReportTime.FieldName = "ReportTime";
     this.colReportTime.Name = "colReportTime";
     //
     // colInstrument
     //
     this.colInstrument.FieldName = "Instrument";
     this.colInstrument.Name = "colInstrument";
     //
     // colOrgApplyNo
     //
     this.colOrgApplyNo.FieldName = "OrgApplyNo";
     this.colOrgApplyNo.Name = "colOrgApplyNo";
     //
     // colStatus
     //
     this.colStatus.FieldName = "Status";
     this.colStatus.Name = "colStatus";
     //
     // colLockFlag
     //
     this.colLockFlag.FieldName = "LockFlag";
     this.colLockFlag.Name = "colLockFlag";
     //
     // colLocker
     //
     this.colLocker.FieldName = "Locker";
     this.colLocker.Name = "colLocker";
     //
     // colPrintFlag
     //
     this.colPrintFlag.FieldName = "PrintFlag";
     this.colPrintFlag.Name = "colPrintFlag";
     //
     // colDeleteFlag
     //
     this.colDeleteFlag.FieldName = "DeleteFlag";
     this.colDeleteFlag.Name = "colDeleteFlag";
     //
     // colChargeFlag
     //
     this.colChargeFlag.FieldName = "ChargeFlag";
     this.colChargeFlag.Name = "colChargeFlag";
     //
     // colHavingImages
     //
     this.colHavingImages.FieldName = "HavingImages";
     this.colHavingImages.Name = "colHavingImages";
     //
     // colEngName
     //
     this.colEngName.FieldName = "EngName";
     this.colEngName.Name = "colEngName";
     //
     // colEquipmentID
     //
     this.colEquipmentID.FieldName = "EquipmentID";
     this.colEquipmentID.Name = "colEquipmentID";
     //
     // colInvoice
     //
     this.colInvoice.FieldName = "Invoice";
     this.colInvoice.Name = "colInvoice";
     //
     // colImageTime
     //
     this.colImageTime.FieldName = "ImageTime";
     this.colImageTime.Name = "colImageTime";
     //
     // colDpSign
     //
     this.colDpSign.FieldName = "DpSign";
     this.colDpSign.Name = "colDpSign";
     //
     // coldpsuggest
     //
     this.coldpsuggest.FieldName = "dpsuggest";
     this.coldpsuggest.Name = "coldpsuggest";
     //
     // colExamTime
     //
     this.colExamTime.FieldName = "ExamTime";
     this.colExamTime.Name = "colExamTime";
     //
     // colBookCenterSID
     //
     this.colBookCenterSID.FieldName = "BookCenterSID";
     this.colBookCenterSID.Name = "colBookCenterSID";
     //
     // colCrisisFlag
     //
     this.colCrisisFlag.FieldName = "CrisisFlag";
     this.colCrisisFlag.Name = "colCrisisFlag";
     //
     // colSurveySign
     //
     this.colSurveySign.FieldName = "SurveySign";
     this.colSurveySign.Name = "colSurveySign";
     //
     // colSurveySuggest
     //
     this.colSurveySuggest.FieldName = "SurveySuggest";
     this.colSurveySuggest.Name = "colSurveySuggest";
     //
     // colJCBZ
     //
     this.colJCBZ.FieldName = "JCBZ";
     this.colJCBZ.Name = "colJCBZ";
     //
     // FrmQueryCheckExtInfo
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(979, 454);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "FrmQueryCheckExtInfo";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "患者检查历史信息";
     this.Load += new System.EventHandler(this.FrmQueryCheckExtInfo_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1.ImageSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rISLISTBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     this.ResumeLayout(false);
 }