Esempio n. 1
0
 /// <summary>
 /// An di cac cot, dung sau ShowField
 /// </summary>
 /// <param name="grid"></param>
 /// <param name="fieldName"></param>
 public static void HideField(GridLookUpEdit grid, string[] fieldName)
 {
     for (int i = 0; i < fieldName.Length; i++)
     {
         grid.Properties.View.Columns[fieldName[i]].Visible = false;
     }
 }
Esempio n. 2
0
        /// <summary>
        ///  Cai dat luoi
        /// </summary>
        /// <param name="grid">GridLookupEdit cần khởi tạo</param>
        /// <param name="showFields">Tên các thuộc tính cần thể hiện</param>
        /// <param name="showFieldNames">Tên cột cho các thuộc tính cần thể hiện</param>
        /// <param name="valueMember">Tên thuộc tính giá trị</param>
        /// <param name="displayMember">Tên thuộc tính thể hiện</param>
        /// <param name="width">Chiều rộng popup</param>
        /// <param name="height">Chiều cao popup</param>
        public static void Init(GridLookUpEdit grid, string[] showFields, string[] showFieldNames, int[] columnWidth
                                , string valueMember, string displayMember, int width, int height, string nullText, object defaultValue)
        {
            //Show filter
            grid.Properties.View.OptionsView.ShowAutoFilterRow = true;
            grid.Properties.TextEditStyle   = TextEditStyles.Standard;
            grid.Properties.PopupFilterMode = PopupFilterMode.Contains;
            grid.Properties.NullText        = nullText;
            grid.Properties.View.OptionsView.ColumnAutoWidth = true;
            grid.Properties.ValueMember   = valueMember;
            grid.Properties.DisplayMember = displayMember;

            for (int i = 0; i < grid.Properties.View.Columns.Count; i++)
            {
                grid.Properties.View.Columns[i].Visible = false;
            }

            for (int i = 0; i < showFields.Length; i++)
            {
                grid.Properties.View.Columns.AddField(showFields[i]);
                grid.Properties.View.Columns[showFields[i]].Visible = true;
                grid.Properties.View.Columns[showFields[i]].Caption = showFieldNames[i];
                grid.Properties.View.Columns[showFields[i]].Width   = columnWidth[i];
                grid.Properties.View.Columns[showFields[i]].OptionsFilter.AutoFilterCondition = AutoFilterCondition.Contains;
            }

            grid.Properties.PopupFormSize = new Size(width, height);
            grid.EditValue = defaultValue;
        }
Esempio n. 3
0
 public void AddEvent()
 {
     grdTT        = data.FrmMain.Controls.Find("TinhTrang", true)[0] as GridLookUpEdit;
     grdTT.Popup += new EventHandler(grdTT_Popup);
     lc           = data.FrmMain.Controls.Find("LcMain", true)[0] as LayoutControl;
     tbMain       = data.FrmMain.Controls.Find("tcMain", true)[0] as XtraTabControl;
     //TongHoDN = data.FrmMain.Controls.Find("TSoHDN",true)[0] as SpinEdit;
     //TongVonDN = data.FrmMain.Controls.Find("TVonDNV",true)[0] as CalcEdit;
     //TvonDA = data.FrmMain.Controls.Find("TVonDA", true)[0] as CalcEdit;
     NguonVon                       = data.FrmMain.Controls.Find("NguonVon_TenBP", true) [0] as GridLookUpEdit;
     NguonVon.Popup                += new EventHandler(NguonVon_Popup);
     ghichu                         = data.FrmMain.Controls.Find("GhiChu", true)[0] as TextEdit;
     gvDetail                       = (data.FrmMain.Controls.Find("DTHoVay", true)[0] as GridControl).MainView as GridView;
     ghichu.PropertiesChanged      += new EventHandler(ghichu_PropertiesChanged);
     data.FrmMain.Shown            += new EventHandler(FrmMain_Shown);
     data.BsMain.DataSourceChanged += new EventHandler(BsMain_DataSourceChanged);
     BsMain_DataSourceChanged(data.BsMain, new EventArgs());
     if (data.BsMain.Current == null)
     {
         return;
     }
     drMaster = (data.BsMain.Current as DataRowView).Row;
     if (drMaster.RowState == DataRowState.Deleted)
     {
         return;
     }
 }
Esempio n. 4
0
        void grdTT_Popup(object sender, EventArgs e)
        {
            // ở mỗi tình trạng của dự án chỉ được change tới hoặc lui 1 mức.
            GridLookUpEdit grd = sender as GridLookUpEdit;
            GridView       gv  = grd.Properties.View as GridView;

            gv.ClearColumnsFilter();
            GridView gvTT = grd.Properties.View as GridView;

            gvTT.ClearColumnsFilter();
            drMaster = (data.BsMain.Current as DataRowView).Row;
            if (drMaster["TinhTrang"].ToString() == "1")
            {
                gvTT.ActiveFilterString = " Ma LIKE '[1-2]' ";
            }
            if (drMaster["TinhTrang"].ToString() == "2")
            {
                gvTT.ActiveFilterString = " Ma LIKE '[1-23]' ";
            }
            if (drMaster["TinhTrang"].ToString() == "3")
            {
                gvTT.ActiveFilterString = "  Ma LIKE '[2-34]' ";
            }
            if (drMaster["TinhTrang"].ToString() == "4")
            {
                gvTT.ActiveFilterString = "  Ma LIKE '[3-45]' ";
            }
            if (drMaster["TinhTrang"].ToString() == "5")
            {
                gvTT.ActiveFilterString = "  Ma LIKE '[4-5]' ";
            }
        }
Esempio n. 5
0
        public void AddEvent()
        {
            //bổ sung chọn địa chỉ giao hàng, người liên hệ và số điện thoại
            cbeDCGH = data.FrmMain.Controls.Find("NguoiLH", true)[0] as ComboBoxEdit;
            cbeNLH = data.FrmMain.Controls.Find("NLH", true)[0] as ComboBoxEdit;
            cbeDT = data.FrmMain.Controls.Find("SDTNL", true)[0] as ComboBoxEdit;
            cbeDCGH.QueryPopUp += new System.ComponentModel.CancelEventHandler(cbeDCGH_QueryPopUp);
            cbeNLH.QueryPopUp += new System.ComponentModel.CancelEventHandler(cbeNLH_QueryPopUp);
            cbeNLH.EditValueChanged += new EventHandler(cbeNLH_EditValueChanged);

            gluKH = data.FrmMain.Controls.Find("MaKH", true)[0] as GridLookUpEdit;


            //gluKH.CloseUp += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(gluKH_CloseUp);

            gcMain = data.FrmMain.Controls.Find("gcMain", true)[0] as GridControl;
            gvMain = gcMain.MainView as GridView;
            RepositoryItemGridLookUpEdit gluDVT = gcMain.RepositoryItems["MaDVT"] as RepositoryItemGridLookUpEdit;
            gluDVT.QueryCloseUp += new System.ComponentModel.CancelEventHandler(gluDVT_QueryCloseUp);
            gvMain.FocusedColumnChanged += new DevExpress.XtraGrid.Views.Base.FocusedColumnChangedEventHandler(gvMain_FocusedColumnChanged);

            data.BsMain.DataSourceChanged += new EventHandler(BsMain_DataSourceChanged);
            BsMain_DataSourceChanged(data.BsMain, new EventArgs());
            //them chuc nang Lam tron tien
            LayoutControl lcMain = data.FrmMain.Controls.Find("lcMain", true)[0] as LayoutControl;
            SimpleButton btnLamTron = new SimpleButton();
            btnLamTron.Name = "btnLamTron";   //phai co name cua control
            btnLamTron.Text = "Làm tròn";
            LayoutControlItem lci = lcMain.AddItem("", btnLamTron);
            lci.Name = "cusLamTron"; //phai co name cua item, bat buoc phai co "cus" phai truoc
            btnLamTron.Click += new EventHandler(btnLamTron_Click);
        }
Esempio n. 6
0
 void controlClear( )
 {
     foreach (Control ct in layoutControl1.Controls)
     {
         if (ct.GetType( ) == typeof(TextEdit))
         {
             TextEdit td = ct as TextEdit;
             td.Text = string.Empty;
         }
         if (ct.GetType( ) == typeof(DateEdit))
         {
             DateEdit td = ct as DateEdit;
             td.Text = string.Empty;
         }
         if (ct.GetType( ) == typeof(ImageEdit))
         {
             ImageEdit td = ct as ImageEdit;
             td.Image = null;
         }
         if (ct.GetType( ) == typeof(GridLookUpEdit))
         {
             GridLookUpEdit gl = ct as GridLookUpEdit;
             gl.EditValue = null;
         }
     }
     gridControl1.DataSource = null;
 }
Esempio n. 7
0
        void gridLKMaTB_Popup(object sender, EventArgs e)
        {
            GridLookUpEdit gridLKHVTV = sender as GridLookUpEdit;
            GridView       gvHVTV     = gridLKHVTV.Properties.View as GridView;

            gvHVTV.ClearColumnsFilter();

            GridView gvHVDK = gridLKHVDK.Properties.View as GridView;

            gvHVDK.ClearColumnsFilter();
            drMaster = (data.BsMain.Current as DataRowView).Row; //nếu ko thêm, khi esc và thêm mới lại báo lỗi
            if (drMaster["NguonHV"].ToString() != "")
            {
                if (drMaster["NguonHV"].ToString() == "0")
                {
                    gvHVTV.ActiveFilterString = " isMoi = 1";
                }
                else if (drMaster["NguonHV"].ToString() == "1")
                {
                    gvHVDK.ActiveFilterString = " isBL = 0 and IsNghiHoc = 0 and MaCNHoc = '" + Config.GetValue("MaCN").ToString() + "'";
                }
                else if (drMaster["NguonHV"].ToString() == "2")
                {
                    gvHVDK.ActiveFilterString = "BLSoTien > 0 and IsNghiHoc = 0 and MaCNHoc = '" + Config.GetValue("MaCN").ToString() + "'";
                }
            }
        }
Esempio n. 8
0
 /// <summary>
 /// Add ellipsis Edit button to GridLookUpEdit
 /// </summary>
 /// <param name="gridLookUp"></param>
 public static void ButtonSetup(this GridLookUpEdit gridLookUp)
 {
     gridLookUp.Properties.Buttons.Add(new DevExpress.XtraEditors.Controls.EditorButton("Edit", DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis));
     gridLookUp.Properties.AutoComplete  = false;
     gridLookUp.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     gridLookUp.Properties.NullText      = string.Empty;
 }
Esempio n. 9
0
        //<summary>
        //设置GridLookUpEdit多列过滤
        //</summary>
        //<param name="repGLUEdit">GridLookUpEdit的知识库,eg:gridlookUpEdit.Properties</param>
        public void SetGridLookUpEditMoreColumnFilter(DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit repGLUEdit)
        {
            repGLUEdit.EditValueChanging += (sender, e) =>
            {
                this.BeginInvoke(new System.Windows.Forms.MethodInvoker(() =>
                {
                    GridLookUpEdit edit = sender as GridLookUpEdit;
                    DevExpress.XtraGrid.Views.Grid.GridView view = edit.Properties.View as DevExpress.XtraGrid.Views.Grid.GridView;
                    //获取GriView私有变量
                    System.Reflection.FieldInfo extraFilter = view.GetType().GetField("extraFilter", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);

                    List <DevExpress.Data.Filtering.CriteriaOperator> columnsOperators = new List <DevExpress.Data.Filtering.CriteriaOperator>();
                    foreach (GridColumn col in view.VisibleColumns)
                    {
                        //这里判断哪一种条件的列头是否可以进行搜索,你也可以自己修改自己需要的情况!
                        if (col.Visible && col.ColumnType == typeof(string))
                        {
                            columnsOperators.Add(new DevExpress.Data.Filtering.FunctionOperator(DevExpress.Data.Filtering.FunctionOperatorType.Contains,
                                                                                                new DevExpress.Data.Filtering.OperandProperty(col.FieldName),
                                                                                                new DevExpress.Data.Filtering.OperandValue(edit.Text)));
                        }
                    }

                    string filterCondition = new DevExpress.Data.Filtering.GroupOperator(DevExpress.Data.Filtering.GroupOperatorType.Or, columnsOperators).ToString();

                    extraFilter.SetValue(view, filterCondition);
                    //获取GriView中处理列过滤的私有方法
                    System.Reflection.MethodInfo ApplyColumnsFilterEx = view.GetType().GetMethod("ApplyColumnsFilterEx", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);
                    ApplyColumnsFilterEx.Invoke(view, null);
                }));
            };
        }
Esempio n. 10
0
File: PR.cs Progetto: AskariSoft/ERP
        private void repositoryItemGridLookUpEdit1_CloseUp(object sender, DevExpress.XtraEditors.Controls.CloseUpEventArgs e)
        {
            if (gridView1 == null)
            {
                return;
            }
            GridView view = gridView1;

            GridLookUpEdit gridLookUpEdit = sender as GridLookUpEdit;
            DataRow        lookupRow      = gridLookUpEdit.Properties.View.GetFocusedDataRow();

            if (lookupRow != null)
            {
                int SCat_ID = Convert.ToInt32(lookupRow["SCat_ID"]);
                if (SCat_ID != 0)
                {
                    string SCat_DD = lookupRow["SCat_ID"].ToString();

                    view.SetRowCellValue(view.FocusedRowHandle, view.Columns["SCat_ID"], SCat_ID);
                    view.SetRowCellValue(view.FocusedRowHandle, view.Columns["SCat_DD"], SCat_DD);

                    for (int i = 2; i <= gridView1.Columns["R_Qty"].VisibleIndex; i++)
                    {
                        gridView1.SetRowCellValue(gridView1.FocusedRowHandle, gridView1.Columns[i], "");
                    }
                    Fill_Items(SCat_ID);
                }
            }
            if (gridView1.GetRowCellValue(view.FocusedRowHandle, gridView1.Columns["SCat_ID"]) != null)
            {
                gridView1.FocusedColumn = gridView1.Columns["Item_ID"];
            }
            gridView1.ShowEditor();
        }
Esempio n. 11
0
        /// <summary>
        /// 焦点事件
        /// </summary>
        private void UpEdit_Enter(object sender, EventArgs e)
        {
            GridLookUpEdit UpEdit = (GridLookUpEdit)sender;

            base.OnEnter(e);
            BeginInvoke(new Action(() => { Library.DataBinderTools.Bound.BoundData(UpEdit); }));
        }
Esempio n. 12
0
        void glu_Popup(object sender, EventArgs e)
        {
            GridLookUpEdit glu = sender as GridLookUpEdit;

            glu.Properties.View.ClearColumnsFilter();
            glu.Properties.View.ActiveFilterString = "[IsBanSP] = 0";
        }
Esempio n. 13
0
 public static void GridLookUpEditControlNotNull(GridLookUpEdit gridLookUpEdit, string title)
 {
     gridLookUpEdit.Properties.Appearance.BorderColor = System.Drawing.Color.Red;
     gridLookUpEdit.Focus();
     gridLookUpEdit.SelectAll();
     MessageBox.Show(string.Format("Vui lòng chọn {0}!", title), Resource.MessageBoxErrorMessageTitle, MessageBoxButtons.OK, MessageBoxIcon.Error);
 }
Esempio n. 14
0
 public static void GridLookUpEditControlNotNull(GridLookUpEdit gridLookUpEdit, string title)
 {
     gridLookUpEdit.Properties.Appearance.BorderColor = System.Drawing.Color.Red;
     gridLookUpEdit.Focus();
     gridLookUpEdit.SelectAll();
     MessageBox.Show(string.Format("Vui lòng chọn {0}!", title), Resources.MessageBoxErrorMessageTitle, MessageBoxButtons.OK, MessageBoxIcon.Error);
 }
        private void Cmb_Running_EditValueChanged(object sender, EventArgs e)
        {
            GridLookUpEdit G_Run = sender as GridLookUpEdit;

            if (G_Run.EditValue == null)
            {
                return;
            }
            _RunningID = G_Run.EditValue.ToString();
            using (var db = new DocumentRunningService(Utility.ConnSDB))
            {
                if (_RunningID == "" || _Menu_ID == "")
                {
                    return;
                }
                DEntRun = db.GetFind(Convert.ToInt32(_RunningID), _Menu_ID);//db.GetRunning(Convert.ToInt32(_RunningID), _Menu_ID);
            }
            if (DEntRun == null)
            {
                return;
            }
            txt_DocNoTran.Text = Db_Run.GetRunningDisplay(DEntRun);

            if (txt_DocNoTran.Text != "")
            {
                btn_Select.Enabled = true;
            }
        }
Esempio n. 16
0
 private void DeveloverRepositoryItemGridLookUpEdit_Closed(object sender, DevExpress.XtraEditors.Controls.ClosedEventArgs e)
 {
     edt = ((GridLookUpEdit)sender);
     edt.Properties.View.DoubleClick -= View_DoubleClick;
     edt.Properties.View.Click       -= View_DoubleClick;
     edt = null;
 }
Esempio n. 17
0
        private void TypeLookUp_SizeChanged(object sender, EventArgs e)
        {
            GridLookUpEdit editor = (GridLookUpEdit)sender;
            RepositoryItemGridLookUpEdit properties = editor.Properties;

            properties.PopupFormSize = new Size(editor.Width, properties.PopupFormSize.Height);
        }
Esempio n. 18
0
        //tab.Name = "tcMain";
        //XtraTabPage tabPage = new XtraTabPage();

        public void AddEvent()
        {
            if (data.BsMain == null)
            {
                return;
            }
            lc       = data.FrmMain.Controls.Find("lcMain", true)[0] as LayoutControl;
            drMaster = (data.BsMain.Current as DataRowView).Row;
            // Nút tính ngày kết thúc
            SimpleButton btnNgayKT = new SimpleButton();

            btnNgayKT.Name = "btnNgayKT";   //phai co name cua control
            btnNgayKT.Text = "Tính ngày KT";
            LayoutControlItem lci1 = lc.AddItem("", btnNgayKT);

            lci1.Name        = "cusNgayKT"; //phai co name cua item, bat buoc phai co "cus" phai truoc
            btnNgayKT.Click += new EventHandler(btnNgayKT_Click);
            // -----------------------
            // Nút lấy dữ liệu ngày nghỉ
            SimpleButton btnNapDL = new SimpleButton();

            btnNapDL.Name = "btnNapDL";   //phai co name cua control
            btnNapDL.Text = "Nạp lịch nghỉ";
            LayoutControlItem lci2 = lc.AddItem("", btnNapDL);

            lci2.Name       = "cusNapDL"; //phai co name cua item, bat buoc phai co "cus" phai truoc
            btnNapDL.Click += new EventHandler(btnNapDL_Click);
            // -----------------------

            if (drMaster == null)
            {
                return;
            }
            if (drMaster.RowState == DataRowState.Deleted)
            {
                return;
            }
            data.FrmMain.Shown += new EventHandler(FrmMain_Shown);
            chkIsCT             = data.FrmMain.Controls.Find("IsCT", true)[0] as CheckEdit;
            if (chkIsCT != null)
            {
                chkIsCT.EditValueChanged += new EventHandler(chkIsCT_EditValueChanged);
            }

            dateNgayKT  = data.FrmMain.Controls.Find("NgayKTKhoa", true)[0] as DateEdit;
            dateNgayBD  = data.FrmMain.Controls.Find("NgayBDKhoa", true)[0] as DateEdit;
            GluMaGioHoc = data.FrmMain.Controls.Find("MaGioHoc", true)[0] as GridLookUpEdit;
            calSobuoi   = data.FrmMain.Controls.Find("SoBuoi", true)[0] as CalcEdit;
            gvNgayNghi  = (data.FrmMain.Controls.Find("TLNgayNghiLop", true)[0] as GridControl).MainView as GridView;

            // Tab thời hạn thanh toán của lớp doanh nghiệp
            tab = data.FrmMain.Controls.Find("tcMain", true)[0] as XtraTabControl;

            GluMaGioHoc.EditValueChanged  += new EventHandler(GluMaGioHoc_EditValueChanged);
            dateNgayBD.EditValueChanged   += new EventHandler(dateNgayBD_EditValueChanged);
            calSobuoi.EditValueChanged    += new EventHandler(calSobuoi_EditValueChanged);
            gvNgayNghi.CellValueChanged   += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(gvNgayNghi_CellValueChanged);
            data.BsMain.DataSourceChanged += new EventHandler(BsMain_DataSourceChanged);
            BsMain_DataSourceChanged(data.BsMain, new EventArgs());
        }
        private void zoneNameGridLookUpEdit_QueryPopUp(object sender, CancelEventArgs e)
        {
            GridLookUpEdit editor = (GridLookUpEdit)sender;
            RepositoryItemGridLookUpEdit properties = editor.Properties;

            properties.PopupFormSize = new Size(editor.Width - 4, properties.PopupFormSize.Height);
        }
Esempio n. 20
0
        public void AddEvent()
        {
            //if (data.BsMain.Current == null)
            //    return;
            lc = data.FrmMain.Controls.Find("LcMain", true)[0] as LayoutControl;

            gluMaNL = data.FrmMain.Controls.Find("MaNL", true)[0] as GridLookUpEdit;
            gluMaNL.EditValueChanged += new EventHandler(gluMaNL_EditValueChanged);

            calSobo = data.FrmMain.Controls.Find("SoLuong", true)[0] as CalcEdit;
            calSobo.EditValueChanged += new EventHandler(calSobo_EditValueChanged);

            raHTMUA = data.FrmMain.Controls.Find("HTMua", true)[0] as RadioGroup;
            if (raHTMUA != null)
            {
                raHTMUA.EditValueChanged += new EventHandler(raHTMUA_EditValueChanged);
            }
            CalThucThu = data.FrmMain.Controls.Find("ThucNop", true)[0] as CalcEdit;
            CalThucThu.EditValueChanged += new EventHandler(CalThucThu_EditValueChanged);

            data.FrmMain.Shown            += new EventHandler(FrmMain_Shown);
            data.BsMain.DataSourceChanged += new EventHandler(BsMain_DataSourceChanged);
            BsMain_DataSourceChanged(data.BsMain, new EventArgs());
            //GridControl gc = data.FrmMain.Controls.Find("gcMain",true)[0] as GridControl;
            //gc.MainView[0]
            gv = (data.FrmMain.Controls.Find("gcMain", true)[0] as GridControl).MainView as GridView;
            //gv = (data.FrmMain.Controls.Find("gcMain", true)[0] as GridControl).MainView as GridView;
            gvvt = (data.FrmMain.Controls.Find("DTCL", true)[0] as GridControl).MainView as GridView;
            gv.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(gv_CellValueChanged);
        }
Esempio n. 21
0
        private void ilgFRCrepositoryItemGridLookUpEdit_Popup(object sender, EventArgs e)
        {
            GridLookUpEdit editor = (GridLookUpEdit)sender;
            GridView       view   = kkoGridView;

            editor.Properties.View.ActiveFilterString = string.Format("[FRTID] = {0}", view.GetFocusedRowCellValue("ILGFRTID"));
        }
Esempio n. 22
0
        public static void ObjectGeneral(object value, GridLookUpEdit gridLookUpEdit, GridView gridView, string displayMember, string valueMember)
        {
            var listColumn = new List <XtraColumn>()
            {
                new XtraColumn {
                    ColumnName = displayMember, ColumnCaption = "", ColumnPosition = 1, ColumnVisible = true
                }
            };

            HideVisibleColumn(value, listColumn, gridLookUpEdit, gridView, displayMember, valueMember);
            // custom for ObjectGeneral
            int height = 20;

            gridView.OptionsView.ShowAutoFilterRow = false;
            gridLookUpEdit.Properties.View.OptionsView.ShowColumnHeaders = false;
            gridLookUpEdit.Properties.PopupFormMinSize = new Size(gridLookUpEdit.Size.Width, height);
            gridLookUpEdit.Properties.TextEditStyle    = TextEditStyles.DisableTextEditor;
            IList        source       = (IList)gridLookUpEdit.Properties.DataSource;
            GridViewInfo gridViewInfo = gridView.GetViewInfo() as GridViewInfo;

            if (gridViewInfo != null)
            {
                height = source.Count * gridViewInfo.ColumnRowHeight - source.Count;
            }

            gridLookUpEdit.Properties.PopupFormSize = new Size(gridLookUpEdit.Size.Width, height);
        }
Esempio n. 23
0
        private void repositoryItemGridLookUpEdit1_CloseUp(object sender, DevExpress.XtraEditors.Controls.CloseUpEventArgs e)
        {
            GridView view = gridControl1.FocusedView as GridView;

            GridLookUpEdit gridLookUpEdit = sender as GridLookUpEdit;
            int            row            = Convert.ToInt32(view.FocusedRowHandle);
            DataRow        lookupRow      = gridLookUpEdit.Properties.View.GetFocusedDataRow();

            if (lookupRow == null)
            {
                return;
            }
            string D_ID     = lookupRow["Detail_ID"].ToString();
            string S_ID     = lookupRow["Sub_ID"].ToString();
            string D_Code   = lookupRow["Detail_Code"].ToString();
            string S_Code   = lookupRow["Sub_Code"].ToString();
            string AC_Name  = lookupRow["Acc_Name"].ToString();
            string AC_FCY   = lookupRow["FCY"].ToString();
            string D_Ledger = lookupRow["Detail_SubLedger"].ToString();

            view.SetRowCellValue(view.FocusedRowHandle, view.Columns["Acc_Name"], AC_Name);
            view.SetRowCellValue(view.FocusedRowHandle, view.Columns["Detail_ID"], D_ID);
            view.SetRowCellValue(view.FocusedRowHandle, view.Columns["Sub_ID"], S_ID);
            view.SetRowCellValue(view.FocusedRowHandle, view.Columns["Detail_Code"], D_Code);
            view.SetRowCellValue(view.FocusedRowHandle, view.Columns["Sub_Code"], S_Code);
            view.SetRowCellValue(view.FocusedRowHandle, view.Columns["FCY"], AC_FCY);
            view.SetRowCellValue(view.FocusedRowHandle, view.Columns["Detail_Ledger"], D_Ledger);
        }
Esempio n. 24
0
        void cbKH_EditValueChanged(object sender, EventArgs e)
        {
            GridLookUpEdit cbKH = sender as GridLookUpEdit;

            if (cbKH.Properties.ReadOnly == true)
            {
                return;
            }
            DataRowView drMaster = _data.BsMain.Current as DataRowView;

            if (drMaster.Row.RowState == DataRowState.Unchanged)
            {
                return;
            }

            string maKH = drMaster.Row["MaKH"].ToString();

            if (!string.IsNullOrEmpty(maKH))
            {
                for (int i = 0; i < gvMain.DataRowCount; i++)
                {
                    var    maSP   = gvMain.GetRowCellValue(i, "MaSP").ToString();
                    double dongia = getGiaDH(maKH, maSP);
                    if (dongia.Equals((double)-1))
                    {
                        gvMain.SetRowCellValue(i, "DonGia", null);
                        gvMain.SetRowCellValue(i, "ThanhTien", null);
                    }
                    else
                    {
                        gvMain.SetRowCellValue(i, "DonGia", dongia);
                    }
                }
            }
        }
Esempio n. 25
0
        public void FilterLookup(object sender)
        {
            GridLookUpEdit edit = sender as GridLookUpEdit;

            GridView gridView = edit.Properties.View as GridView;

            System.Reflection.FieldInfo fi = gridView.GetType().GetField("extraFilter", BindingFlags.NonPublic | BindingFlags.Instance);
            var columnsList = gridView.Columns.ToList();
            List <CriteriaOperator> cpList = new List <CriteriaOperator>();

            foreach (var columns in columnsList)
            {
                BinaryOperator op1 = new BinaryOperator(columns.FieldName, "%" + edit.AutoSearchText + "%", BinaryOperatorType.Like);
                cpList.Add(op1);
            }
            string filterCondition = new GroupOperator(GroupOperatorType.Or, cpList).ToString();

            //BinaryOperator op1 = new BinaryOperator("InputCode1", "%" + edit.AutoSearchText + "%", BinaryOperatorType.Like);
            //BinaryOperator op2 = new BinaryOperator("InputCode2", "%" + edit.AutoSearchText + "%", BinaryOperatorType.Like);
            //BinaryOperator op3 = new BinaryOperator("InputCode3", "%" + edit.AutoSearchText + "%", BinaryOperatorType.Like);
            //BinaryOperator op4 = new BinaryOperator("Value", "%" + edit.AutoSearchText + "%", BinaryOperatorType.Like);
            //string filterCondition = new GroupOperator(GroupOperatorType.Or, new CriteriaOperator[] { op1, op2, op3 }).ToString();
            fi.SetValue(gridView, filterCondition);

            MethodInfo mi = gridView.GetType().GetMethod("ApplyColumnsFilterEx", BindingFlags.NonPublic | BindingFlags.Instance);

            mi.Invoke(gridView, null);
        }
Esempio n. 26
0
        void riCode_CloseUp(object sender, DevExpress.XtraEditors.Controls.CloseUpEventArgs e)
        {
            if (e.CloseMode != PopupCloseMode.Normal)
            {
                return;
            }
            object o = gvCT.GetFocusedRowCellValue("NX");

            if (o == null || o.ToString() == "N")
            {
                return;
            }
            GridLookUpEdit glu = sender as GridLookUpEdit;

            if (glu.Properties.View.FocusedRowHandle < 0)
            {
                return;
            }
            DataRowView drHH = glu.Properties.View.GetRow(glu.Properties.View.FocusedRowHandle) as DataRowView;
            string      code = drHH["PNo"].ToString();
            string      nhom = drHH["Nhom"].ToString();
            string      bac  = drHH["Bac"].ToString();

            if (nhom == "" || bac == "")
            {
                return;
            }
            DataTable dt = (glu.Properties.DataSource as BindingSource).DataSource as DataTable;

            DataRow[] drs = dt.Select("Pno = '" + code + "' and Nhom = '" + nhom + "' and Bac > " + bac, "Bac asc");
            if (drs.Length == 0)
            {
                return;
            }
            if (XtraMessageBox.Show("Bạn có muốn xuất tất cả các bậc còn lại không?",
                                    Config.GetValue("PackageName").ToString(), MessageBoxButtons.YesNo) == DialogResult.No)
            {
                return;
            }
            gvCT.SetFocusedRowCellValue(gvCT.Columns["Code"], code);
            gvCT.AddNewRow();
            for (int i = 0; i < drs.Length; i++)
            {
                DataRow dr = drs[i];
                gvCT.UpdateCurrentRow();
                gvCT.SetFocusedRowCellValue(gvCT.Columns["NX"], "X");
                gvCT.SetFocusedRowCellValue(gvCT.Columns["Code"], dr["Pno"]);
                gvCT.SetFocusedRowCellValue(gvCT.Columns["NgayNhap"], dr["NgayCT"]);
                gvCT.SetFocusedRowCellValue(gvCT.Columns["Nhom"], dr["Nhom"]);
                gvCT.SetFocusedRowCellValue(gvCT.Columns["Rong"], dr["Rong"]);
                gvCT.SetFocusedRowCellValue(gvCT.Columns["Dai"], dr["Dai"]);
                gvCT.SetFocusedRowCellValue(gvCT.Columns["Day"], dr["Day"]);
                gvCT.SetFocusedRowCellValue(gvCT.Columns["MaKe"], dr["MaKe"]);
                gvCT.SetFocusedRowCellValue(gvCT.Columns["MaNgan"], dr["MaNgan"]);
                if (i < drs.Length - 1)
                {
                    gvCT.AddNewRow();
                }
            }
        }
Esempio n. 27
0
        /// <summary>
        /// 设置GridLookUpEdit下拉列表
        /// </summary>
        /// <param name="ykgridLookUp"></param>
        /// <param name="listData">查询数据源</param>
        /// <param name="inputitemCount">记住码个数</param>
        public void SetGridLookUpEdit(GridLookUpEdit ykgridLookUp, List <InputItem> listData, int inputitemCount, bool IsNewValue = true)
        {
            ykgridLookUp.Properties.View.Columns.Clear();
            ykgridLookUp.Properties.DataSource = listData;
            //初始化一些状态
            GridColumn col1 = ykgridLookUp.Properties.View.Columns.AddField("DisPlayName");

            col1.VisibleIndex = 0;
            col1.Caption      = "描述";
            for (int i = 1; i <= inputitemCount; i++)
            {
                GridColumn col = ykgridLookUp.Properties.View.Columns.AddField("InputCode" + i);
                col.VisibleIndex = i;
                col.Caption      = "记住码" + i;
            }
            ykgridLookUp.Properties.NullText = "";
            ykgridLookUp.Properties.View.OptionsBehavior.AutoPopulateColumns = false;
            ykgridLookUp.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
            ykgridLookUp.Properties.View.BestFitColumns();
            ykgridLookUp.Properties.ShowFooter = false;
            ykgridLookUp.Properties.View.OptionsView.ShowAutoFilterRow = false;
            ykgridLookUp.Properties.AutoComplete    = false;
            ykgridLookUp.Properties.ImmediatePopup  = true;
            ykgridLookUp.Properties.PopupFilterMode = PopupFilterMode.Contains;
            ykgridLookUp.Properties.TextEditStyle   = TextEditStyles.Standard;
            ykgridLookUp.Properties.DisplayMember   = "DisPlayName";
            ykgridLookUp.Properties.ValueMember     = "Value";
            ykgridLookUp.EditValueChanging         += new ChangingEventHandler(ykgridLookUp_EditValueChanging);
            if (IsNewValue)
            {
                ykgridLookUp.ProcessNewValue += new ProcessNewValueEventHandler(ykgridLookUp_ProcessNewValue);
            }
        }
Esempio n. 28
0
        private void FilterDMCN(GridLookUpEdit gluDMCN)
        {
            if (!_data.DrTable.Table.Columns.Contains("ExtraSQL"))
            {
                return;
            }
            string filter = _data.DrTable["ExtraSQL"].ToString();
            RepositoryItemGridLookUpEdit ri = gluDMCN.Properties;

            if ((ri.Tag as GrdSingle) != null)
            {
                CDTData data = (ri.Tag as GrdSingle).Data;
                if (data.FullData)
                {
                    return;
                }
                if (data.Condition != string.Empty)
                {
                    data.Condition = data.Condition + " and " + filter;
                }
                else
                {
                    data.Condition = filter;
                }
                data.GetData();
                data.FullData = true;
                BindingSource bs = ri.DataSource as BindingSource;
                bs.DataSource = data.DsData.Tables[0];
                ri.View.BestFitColumns();
            }
        }
Esempio n. 29
0
        private void repositoryItemGridLookUpEdit2_CloseUp(object sender, DevExpress.XtraEditors.Controls.CloseUpEventArgs e)
        {
            if (gridView1 == null)
            {
                return;
            }
            GridView view = gridView1;

            GridLookUpEdit gridLookUpEdit = sender as GridLookUpEdit;
            DataRow        lookupRow      = gridLookUpEdit.Properties.View.GetFocusedDataRow();

            //string ID = gridView1.GetRowCellValue(gridView1.FocusedRowHandle, "SCat_ID").ToString();
            //if (ID == "" && !(gridView1.IsFirstRow))
            //{
            //    int PreRow = gridView1.GetPrevVisibleRow(gridView1.FocusedRowHandle);
            //    string SCat_ID = gridView1.GetRowCellValue(PreRow, "SCat_ID").ToString();
            //    if (SCat_ID != "")
            //    {
            //        //string SCat_D = gridView1.GetRowCellValue(PreRow, "SCat_D").ToString();
            //        string SCat_DD = gridView1.GetRowCellValue(PreRow, "SCat_DD").ToString();

            //        view.SetRowCellValue(view.FocusedRowHandle, view.Columns["SCat_DD"], SCat_DD);
            //        //view.SetRowCellValue(view.FocusedRowHandle, view.Columns["SCat_D"], SCat_D);
            //        view.SetRowCellValue(view.FocusedRowHandle, view.Columns["SCat_ID"], SCat_ID);
            //    }
            //}

            if (lookupRow != null)
            {
                int item_ID = Convert.ToInt32(lookupRow["Item_ID"]);
                if (item_ID != 0)
                {
                    string Sub_ID    = lookupRow["SCat_ID"].ToString();
                    string Item_Name = lookupRow["Item_DD"].ToString();
                    string item_Code = lookupRow["Item_D"].ToString();
                    string color     = lookupRow["Color_DD"].ToString();
                    string Unit      = lookupRow["Item_Unit"].ToString();
                    string Rate      = lookupRow["Item_Rate"].ToString();

                    view.SetRowCellValue(view.FocusedRowHandle, view.Columns["SCat_ID"], Sub_ID);
                    view.SetRowCellValue(view.FocusedRowHandle, view.Columns["Item_ID"], item_ID);
                    view.SetRowCellValue(view.FocusedRowHandle, view.Columns["Item_D"], item_Code);
                    view.SetRowCellValue(view.FocusedRowHandle, view.Columns["Color_DD"], color);
                    view.SetRowCellValue(view.FocusedRowHandle, view.Columns["Item_Unit"], Unit);
                    view.SetRowCellValue(view.FocusedRowHandle, view.Columns["R_Rate"], Rate);
                    view.SetRowCellValue(view.FocusedRowHandle, view.Columns["Item_DD"], Item_Name);
                }
            }
            else
            {
                view.SetRowCellValue(view.FocusedRowHandle, view.Columns["Item_DD"], string.Empty);
            }
            if (view.GetRowCellValue(view.FocusedRowHandle, view.Columns["Item_DD"]).ToString() != "")
            {
                gridView1.FocusedColumn = gridView1.Columns["I_Qty"];
            }
            gridView1.ShowEditor();
        }
Esempio n. 30
0
        public void AddGridLookupEdit(GridLookUpEdit gridlookup)
        {
            DataTable dataTable = new DataTable();

            dataTable = this.GetList();
            gridlookup.Properties.DataSource    = dataTable;
            gridlookup.Properties.DisplayMember = "PositionName";
            gridlookup.Properties.ValueMember   = "PositionCode";
        }
Esempio n. 31
0
        public void AddEvent()
        {
            GridLookUpEdit glueSoQD = data.FrmMain.Controls.Find("SoQD", true)[0] as GridLookUpEdit;

            if (glueSoQD.EditValue.ToString() != "" || !string.IsNullOrEmpty(glueSoQD.EditValue.ToString()))
            {
                glueSoQD.Popup += new EventHandler(glueSoQD_Popup);
            }
        }
Esempio n. 32
0
        private void SetPrecioUnitario( GridLookUpEdit gle )
        {
            CommonUtils.ConexionBD.AbrirConexion( );

            string sqlVentas = "SELECT PrecioVenta FROM Producto WHERE ProductoId =" + gle.EditValue.ToString();

            SqlDataReader reader = CommonUtils.ConexionBD.EjecutarConsultaReader( sqlVentas );
            
            if ( reader.HasRows )
            {
                while ( reader.Read( ) )
                {
                    costoUnitario = Convert.ToDecimal( reader.GetValue( 0 ) );

                    this.gridView1.SetRowCellValue( -2147483647 , this.gridView1.Columns[ 2 ].FieldName , reader.GetValue( 0 ) );
                    this.gridView1.SetRowCellValue( -2147483647 , this.gridView1.Columns[ 1 ].FieldName , 1 );
                    this.gridView1.SetRowCellValue( -2147483647 , this.gridView1.Columns[ 4 ].FieldName , reader.GetValue( 0 ) );
                }
            }
            CommonUtils.ConexionBD.CerrarConexion( );
        }
Esempio n. 33
0
 public static void ChangeCaptionGridLookUpEdit(string parent_name, string language, GridLookUpEdit grid_lookup_edit)
 {
     grid_lookup_edit.Properties.NullText = "[" + CaptionEngine.GetControlCaption(parent_name, grid_lookup_edit.Name, BaseConstant.CONTROL_TEXT, language) + "]";
     var columnList = CaptionEngine.GetControlCaptionList(parent_name, grid_lookup_edit.Name, BaseConstant.GRID_COLUMN, language);
     if (columnList != null && columnList.Count > 0)
     {
         foreach (GridColumn column in grid_lookup_edit.Properties.View.Columns)
         {
             var caption = (from item in columnList
                            where item.Name.ToLower().Equals(column.Name.ToLower())
                            select item.Caption).FirstOrDefault();
             if (!string.IsNullOrEmpty(caption))
                 column.Caption = caption;
         }
     }
     grid_lookup_edit.Popup += new EventHandler(gridLookUpEdit_Popup);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DispatchConfirmation));
     this.colVoidReq = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     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.lblVoidConfirmedBy = new DevExpress.XtraEditors.LabelControl();
     this.lblVoidConfirmedDate = new DevExpress.XtraEditors.LabelControl();
     this.lblDispatchedDate = new DevExpress.XtraEditors.LabelControl();
     this.lblIssueStatus = new DevExpress.XtraEditors.LabelControl();
     this.lblIssueType = new DevExpress.XtraEditors.LabelControl();
     this.lblRequistedDate = new DevExpress.XtraEditors.LabelControl();
     this.lblVoidRequestedBy = new DevExpress.XtraEditors.LabelControl();
     this.lblDocumentedType = new DevExpress.XtraEditors.LabelControl();
     this.lblOwnership = new DevExpress.XtraEditors.LabelControl();
     this.lblPaymentType = new DevExpress.XtraEditors.LabelControl();
     this.lblInstitutionType = new DevExpress.XtraEditors.LabelControl();
     this.lblSTVDate = new DevExpress.XtraEditors.LabelControl();
     this.lblActivity = new DevExpress.XtraEditors.LabelControl();
     this.lblSubAccount = new DevExpress.XtraEditors.LabelControl();
     this.lblAccount = new DevExpress.XtraEditors.LabelControl();
     this.lblDispatchConfirmedBy = new DevExpress.XtraEditors.LabelControl();
     this.lblSTVPrintedBy = new DevExpress.XtraEditors.LabelControl();
     this.lblSTVNo = new DevExpress.XtraEditors.LabelControl();
     this.lblWoreda = new DevExpress.XtraEditors.LabelControl();
     this.lblZone = new DevExpress.XtraEditors.LabelControl();
     this.lblRegion = new DevExpress.XtraEditors.LabelControl();
     this.lblMode = new DevExpress.XtraEditors.LabelControl();
     this.btnGoSTV = new DevExpress.XtraEditors.SimpleButton();
     this.tEditSTVNo = new DevExpress.XtraEditors.TextEdit();
     this.dateTo = new CalendarLib.DateTimePickerEx();
     this.dateFrom = new CalendarLib.DateTimePickerEx();
     this.btnGo = new DevExpress.XtraEditors.SimpleButton();
     this.lkAccount = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn96 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn97 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn98 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.txtPreprintedInvoiceNo = new DevExpress.XtraEditors.TextEdit();
     this.btnCancelVoidRequest = new DevExpress.XtraEditors.SimpleButton();
     this.txtFacilityNameFilter = new DevExpress.XtraEditors.TextEdit();
     this.gridUndispatchedIssues = new DevExpress.XtraGrid.GridControl();
     this.gridUndispatchedIssuesView = 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.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnConfirmIssue1 = new DevExpress.XtraEditors.SimpleButton();
     this.btnApproveVoidRequest = new DevExpress.XtraEditors.SimpleButton();
     this.txtConfirmFromStore = new DevExpress.XtraEditors.TextEdit();
     this.btnMarkAsVoid = new DevExpress.XtraEditors.SimpleButton();
     this.txtSTVInvoiceNo = new DevExpress.XtraEditors.TextEdit();
     this.txtRemarks = new DevExpress.XtraEditors.MemoEdit();
     this.gridUndispatchedIssueDetails = new DevExpress.XtraGrid.GridControl();
     this.gridViewUndispatchedIssueDetails = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.Unit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     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.colActuallyIssuedNoOfPack = new DevExpress.XtraGrid.Columns.GridColumn();
     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.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.txtIssuedBy = new DevExpress.XtraEditors.TextEdit();
     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.layoutControlItem21 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem25 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem20 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem58 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem27 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup7 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup13 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem19 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.FacilityGroup = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem43 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem38 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem45 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem31 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem40 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem37 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem33 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem47 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem30 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup5 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem60 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem62 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup6 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem54 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem56 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem49 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem52 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup19 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem50 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem22 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.lcRequestVoid = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.lcApprovalCancel = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcApproval = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcDispatchConfirm = new DevExpress.XtraLayout.LayoutControlItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.dxValidationProvider1 = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(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.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.LastVisitlayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.NoRequisitionlayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem41 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem42 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem34 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem23 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem36 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem39 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem44 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem46 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.layoutControlItem28 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem29 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem35 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem32 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem48 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem51 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem53 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem55 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem57 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem59 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem61 = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((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.tEditSTVNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkAccount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPreprintedInvoiceNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFacilityNameFilter.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridUndispatchedIssues)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridUndispatchedIssuesView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmFromStore.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSTVInvoiceNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridUndispatchedIssueDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewUndispatchedIssueDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIssuedBy.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.layoutControlItem21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem58)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.FacilityGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem43)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem45)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem33)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem47)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem60)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem62)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem54)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem56)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem49)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem52)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem50)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcRequestVoid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcApprovalCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcApproval)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcDispatchConfirm)).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();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastVisitlayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoRequisitionlayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem41)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem42)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem34)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem44)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem46)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem48)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem51)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem53)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem55)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem57)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem59)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem61)).BeginInit();
     this.SuspendLayout();
     //
     // colVoidReq
     //
     this.colVoidReq.Caption = "VoidRequest";
     this.colVoidReq.FieldName = "VoidRequest";
     this.colVoidReq.Name = "colVoidReq";
     //
     // repositoryItemMemoEdit3
     //
     this.repositoryItemMemoEdit3.LookAndFeel.SkinName = "Seven";
     this.repositoryItemMemoEdit3.Name = "repositoryItemMemoEdit3";
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     //
     // 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.lblVoidConfirmedBy);
     this.layoutControl3.Controls.Add(this.lblVoidConfirmedDate);
     this.layoutControl3.Controls.Add(this.lblDispatchedDate);
     this.layoutControl3.Controls.Add(this.lblIssueStatus);
     this.layoutControl3.Controls.Add(this.lblIssueType);
     this.layoutControl3.Controls.Add(this.lblRequistedDate);
     this.layoutControl3.Controls.Add(this.lblVoidRequestedBy);
     this.layoutControl3.Controls.Add(this.lblDocumentedType);
     this.layoutControl3.Controls.Add(this.lblOwnership);
     this.layoutControl3.Controls.Add(this.lblPaymentType);
     this.layoutControl3.Controls.Add(this.lblInstitutionType);
     this.layoutControl3.Controls.Add(this.lblSTVDate);
     this.layoutControl3.Controls.Add(this.lblActivity);
     this.layoutControl3.Controls.Add(this.lblSubAccount);
     this.layoutControl3.Controls.Add(this.lblAccount);
     this.layoutControl3.Controls.Add(this.lblDispatchConfirmedBy);
     this.layoutControl3.Controls.Add(this.lblSTVPrintedBy);
     this.layoutControl3.Controls.Add(this.lblSTVNo);
     this.layoutControl3.Controls.Add(this.lblWoreda);
     this.layoutControl3.Controls.Add(this.lblZone);
     this.layoutControl3.Controls.Add(this.lblRegion);
     this.layoutControl3.Controls.Add(this.lblMode);
     this.layoutControl3.Controls.Add(this.btnGoSTV);
     this.layoutControl3.Controls.Add(this.tEditSTVNo);
     this.layoutControl3.Controls.Add(this.dateTo);
     this.layoutControl3.Controls.Add(this.dateFrom);
     this.layoutControl3.Controls.Add(this.btnGo);
     this.layoutControl3.Controls.Add(this.lkAccount);
     this.layoutControl3.Controls.Add(this.txtPreprintedInvoiceNo);
     this.layoutControl3.Controls.Add(this.btnCancelVoidRequest);
     this.layoutControl3.Controls.Add(this.txtFacilityNameFilter);
     this.layoutControl3.Controls.Add(this.gridUndispatchedIssues);
     this.layoutControl3.Controls.Add(this.btnConfirmIssue1);
     this.layoutControl3.Controls.Add(this.btnApproveVoidRequest);
     this.layoutControl3.Controls.Add(this.txtConfirmFromStore);
     this.layoutControl3.Controls.Add(this.btnMarkAsVoid);
     this.layoutControl3.Controls.Add(this.txtSTVInvoiceNo);
     this.layoutControl3.Controls.Add(this.txtRemarks);
     this.layoutControl3.Controls.Add(this.gridUndispatchedIssueDetails);
     this.layoutControl3.Controls.Add(this.txtIssuedBy);
     this.layoutControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl3.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem18,
     this.tabbedControlGroup1,
     this.layoutControlItem26,
     this.layoutControlItem21,
     this.layoutControlItem25,
     this.layoutControlItem20,
     this.layoutControlItem58,
     this.layoutControlItem27});
     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(237, 213, 474, 421);
     this.layoutControl3.Root = this.layoutControlGroup7;
     this.layoutControl3.Size = new System.Drawing.Size(1123, 385);
     this.layoutControl3.TabIndex = 37;
     this.layoutControl3.Text = "layoutControl3";
     //
     // lblVoidConfirmedBy
     //
     this.lblVoidConfirmedBy.Location = new System.Drawing.Point(825, 129);
     this.lblVoidConfirmedBy.Name = "lblVoidConfirmedBy";
     this.lblVoidConfirmedBy.Size = new System.Drawing.Size(61, 16);
     this.lblVoidConfirmedBy.StyleController = this.layoutControl3;
     this.lblVoidConfirmedBy.TabIndex = 106;
     //
     // lblVoidConfirmedDate
     //
     this.lblVoidConfirmedDate.Location = new System.Drawing.Point(825, 109);
     this.lblVoidConfirmedDate.Name = "lblVoidConfirmedDate";
     this.lblVoidConfirmedDate.Size = new System.Drawing.Size(61, 16);
     this.lblVoidConfirmedDate.StyleController = this.layoutControl3;
     this.lblVoidConfirmedDate.TabIndex = 105;
     //
     // lblDispatchedDate
     //
     this.lblDispatchedDate.Location = new System.Drawing.Point(803, 129);
     this.lblDispatchedDate.Name = "lblDispatchedDate";
     this.lblDispatchedDate.Size = new System.Drawing.Size(87, 16);
     this.lblDispatchedDate.StyleController = this.layoutControl3;
     this.lblDispatchedDate.TabIndex = 104;
     //
     // lblIssueStatus
     //
     this.lblIssueStatus.Location = new System.Drawing.Point(949, 109);
     this.lblIssueStatus.Name = "lblIssueStatus";
     this.lblIssueStatus.Size = new System.Drawing.Size(158, 16);
     this.lblIssueStatus.StyleController = this.layoutControl3;
     this.lblIssueStatus.TabIndex = 103;
     //
     // lblIssueType
     //
     this.lblIssueType.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.lblIssueType.Location = new System.Drawing.Point(949, 129);
     this.lblIssueType.Name = "lblIssueType";
     this.lblIssueType.Size = new System.Drawing.Size(158, 16);
     this.lblIssueType.StyleController = this.layoutControl3;
     this.lblIssueType.TabIndex = 102;
     //
     // lblRequistedDate
     //
     this.lblRequistedDate.Location = new System.Drawing.Point(619, 109);
     this.lblRequistedDate.Name = "lblRequistedDate";
     this.lblRequistedDate.Size = new System.Drawing.Size(65, 16);
     this.lblRequistedDate.StyleController = this.layoutControl3;
     this.lblRequistedDate.TabIndex = 101;
     //
     // lblVoidRequestedBy
     //
     this.lblVoidRequestedBy.Location = new System.Drawing.Point(619, 129);
     this.lblVoidRequestedBy.Name = "lblVoidRequestedBy";
     this.lblVoidRequestedBy.Size = new System.Drawing.Size(65, 16);
     this.lblVoidRequestedBy.StyleController = this.layoutControl3;
     this.lblVoidRequestedBy.TabIndex = 100;
     //
     // lblDocumentedType
     //
     this.lblDocumentedType.Location = new System.Drawing.Point(596, 55);
     this.lblDocumentedType.Name = "lblDocumentedType";
     this.lblDocumentedType.Size = new System.Drawing.Size(103, 16);
     this.lblDocumentedType.StyleController = this.layoutControl3;
     this.lblDocumentedType.TabIndex = 99;
     //
     // lblOwnership
     //
     this.lblOwnership.Location = new System.Drawing.Point(974, 55);
     this.lblOwnership.Name = "lblOwnership";
     this.lblOwnership.Size = new System.Drawing.Size(133, 16);
     this.lblOwnership.StyleController = this.layoutControl3;
     this.lblOwnership.TabIndex = 98;
     //
     // lblPaymentType
     //
     this.lblPaymentType.Location = new System.Drawing.Point(344, 55);
     this.lblPaymentType.Name = "lblPaymentType";
     this.lblPaymentType.Size = new System.Drawing.Size(151, 16);
     this.lblPaymentType.StyleController = this.layoutControl3;
     this.lblPaymentType.TabIndex = 96;
     //
     // lblInstitutionType
     //
     this.lblInstitutionType.Location = new System.Drawing.Point(781, 55);
     this.lblInstitutionType.Name = "lblInstitutionType";
     this.lblInstitutionType.Size = new System.Drawing.Size(122, 16);
     this.lblInstitutionType.StyleController = this.layoutControl3;
     this.lblInstitutionType.TabIndex = 95;
     //
     // lblSTVDate
     //
     this.lblSTVDate.Location = new System.Drawing.Point(364, 109);
     this.lblSTVDate.Name = "lblSTVDate";
     this.lblSTVDate.Size = new System.Drawing.Size(115, 16);
     this.lblSTVDate.StyleController = this.layoutControl3;
     this.lblSTVDate.TabIndex = 94;
     //
     // lblActivity
     //
     this.lblActivity.Location = new System.Drawing.Point(974, 35);
     this.lblActivity.Name = "lblActivity";
     this.lblActivity.Size = new System.Drawing.Size(133, 16);
     this.lblActivity.StyleController = this.layoutControl3;
     this.lblActivity.TabIndex = 93;
     //
     // lblSubAccount
     //
     this.lblSubAccount.Location = new System.Drawing.Point(781, 35);
     this.lblSubAccount.Name = "lblSubAccount";
     this.lblSubAccount.Size = new System.Drawing.Size(122, 16);
     this.lblSubAccount.StyleController = this.layoutControl3;
     this.lblSubAccount.TabIndex = 92;
     //
     // lblAccount
     //
     this.lblAccount.Location = new System.Drawing.Point(596, 35);
     this.lblAccount.Name = "lblAccount";
     this.lblAccount.Size = new System.Drawing.Size(103, 16);
     this.lblAccount.StyleController = this.layoutControl3;
     this.lblAccount.TabIndex = 91;
     //
     // lblDispatchConfirmedBy
     //
     this.lblDispatchConfirmedBy.Location = new System.Drawing.Point(803, 129);
     this.lblDispatchConfirmedBy.Name = "lblDispatchConfirmedBy";
     this.lblDispatchConfirmedBy.Size = new System.Drawing.Size(87, 16);
     this.lblDispatchConfirmedBy.StyleController = this.layoutControl3;
     this.lblDispatchConfirmedBy.TabIndex = 90;
     //
     // lblSTVPrintedBy
     //
     this.lblSTVPrintedBy.Location = new System.Drawing.Point(364, 129);
     this.lblSTVPrintedBy.Name = "lblSTVPrintedBy";
     this.lblSTVPrintedBy.Size = new System.Drawing.Size(115, 16);
     this.lblSTVPrintedBy.StyleController = this.layoutControl3;
     this.lblSTVPrintedBy.TabIndex = 86;
     //
     // lblSTVNo
     //
     this.lblSTVNo.Location = new System.Drawing.Point(369, 109);
     this.lblSTVNo.Name = "lblSTVNo";
     this.lblSTVNo.Size = new System.Drawing.Size(119, 16);
     this.lblSTVNo.StyleController = this.layoutControl3;
     this.lblSTVNo.TabIndex = 85;
     this.lblSTVNo.Text = " ";
     //
     // lblWoreda
     //
     this.lblWoreda.Location = new System.Drawing.Point(344, 75);
     this.lblWoreda.Name = "lblWoreda";
     this.lblWoreda.Size = new System.Drawing.Size(151, 16);
     this.lblWoreda.StyleController = this.layoutControl3;
     this.lblWoreda.TabIndex = 84;
     //
     // lblZone
     //
     this.lblZone.Location = new System.Drawing.Point(596, 75);
     this.lblZone.Name = "lblZone";
     this.lblZone.Size = new System.Drawing.Size(103, 16);
     this.lblZone.StyleController = this.layoutControl3;
     this.lblZone.TabIndex = 83;
     //
     // lblRegion
     //
     this.lblRegion.Location = new System.Drawing.Point(781, 75);
     this.lblRegion.Name = "lblRegion";
     this.lblRegion.Size = new System.Drawing.Size(326, 16);
     this.lblRegion.StyleController = this.layoutControl3;
     this.lblRegion.TabIndex = 82;
     //
     // lblMode
     //
     this.lblMode.Location = new System.Drawing.Point(344, 35);
     this.lblMode.Name = "lblMode";
     this.lblMode.Size = new System.Drawing.Size(151, 16);
     this.lblMode.StyleController = this.layoutControl3;
     this.lblMode.TabIndex = 80;
     //
     // btnGoSTV
     //
     this.btnGoSTV.Image = global::HCMIS.Desktop.Properties.Resources.Search;
     this.btnGoSTV.Location = new System.Drawing.Point(106, 134);
     this.btnGoSTV.MinimumSize = new System.Drawing.Size(0, 20);
     this.btnGoSTV.Name = "btnGoSTV";
     this.btnGoSTV.Size = new System.Drawing.Size(142, 22);
     this.btnGoSTV.StyleController = this.layoutControl3;
     this.btnGoSTV.TabIndex = 76;
     this.btnGoSTV.Text = "Search";
     this.btnGoSTV.Click += new System.EventHandler(this.btnGoSTV_Click);
     //
     // tEditSTVNo
     //
     this.tEditSTVNo.EditValue = "";
     this.dxValidationProvider1.SetIconAlignment(this.tEditSTVNo, System.Windows.Forms.ErrorIconAlignment.MiddleRight);
     this.tEditSTVNo.Location = new System.Drawing.Point(18, 135);
     this.tEditSTVNo.Margin = new System.Windows.Forms.Padding(0);
     this.tEditSTVNo.MinimumSize = new System.Drawing.Size(0, 20);
     this.tEditSTVNo.Name = "tEditSTVNo";
     this.tEditSTVNo.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.tEditSTVNo.Properties.NullValuePrompt = "Invoice No:";
     this.tEditSTVNo.Properties.NullValuePromptShowForEmptyValue = true;
     this.tEditSTVNo.Size = new System.Drawing.Size(83, 20);
     this.tEditSTVNo.StyleController = this.layoutControl3;
     this.tEditSTVNo.TabIndex = 75;
     //
     // dateTo
     //
     this.dateTo.CalendarFont = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.dateTo.CalendarForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     this.dateTo.DayOfWeekCharacters = 1;
     this.dateTo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     this.dateTo.Location = new System.Drawing.Point(17, 84);
     this.dateTo.Name = "dateTo";
     this.dateTo.PopUpFontSize = 11F;
     this.dateTo.Size = new System.Drawing.Size(231, 20);
     this.dateTo.TabIndex = 74;
     this.dateTo.Value = new System.DateTime(2014, 10, 5, 0, 0, 0, 0);
     //
     // dateFrom
     //
     this.dateFrom.CalendarFont = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.dateFrom.CalendarForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     this.dateFrom.DayOfWeekCharacters = 1;
     this.dateFrom.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     this.dateFrom.Location = new System.Drawing.Point(17, 60);
     this.dateFrom.Name = "dateFrom";
     this.dateFrom.PopUpFontSize = 11F;
     this.dateFrom.Size = new System.Drawing.Size(231, 20);
     this.dateFrom.TabIndex = 73;
     this.dateFrom.Value = new System.DateTime(2014, 10, 5, 0, 0, 0, 0);
     //
     // btnGo
     //
     this.btnGo.Image = global::HCMIS.Desktop.Properties.Resources.Forward;
     this.btnGo.Location = new System.Drawing.Point(106, 108);
     this.btnGo.Name = "btnGo";
     this.btnGo.Size = new System.Drawing.Size(142, 22);
     this.btnGo.StyleController = this.layoutControl3;
     this.btnGo.TabIndex = 72;
     this.btnGo.Text = "Go";
     this.btnGo.Click += new System.EventHandler(this.btnGo_Click);
     //
     // lkAccount
     //
     this.lkAccount.Location = new System.Drawing.Point(17, 36);
     this.lkAccount.Name = "lkAccount";
     this.lkAccount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkAccount.Properties.DisplayMember = "StoreNameConcat";
     this.lkAccount.Properties.NullText = "Select Account";
     this.lkAccount.Properties.ShowFooter = false;
     this.lkAccount.Properties.ValueMember = "ID";
     this.lkAccount.Properties.View = this.gridView2;
     this.lkAccount.Size = new System.Drawing.Size(231, 20);
     this.lkAccount.StyleController = this.layoutControl3;
     this.lkAccount.TabIndex = 69;
     this.lkAccount.EditValueChanged += new System.EventHandler(this.lkAccount_EditValueChanged);
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn9,
     this.gridColumn96,
     this.gridColumn10,
     this.gridColumn97,
     this.gridColumn98});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.GroupCount = 3;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsBehavior.AutoExpandAllGroups = true;
     this.gridView2.OptionsMenu.EnableFooterMenu = false;
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     this.gridView2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn10, DevExpress.Data.ColumnSortOrder.Ascending),
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn97, DevExpress.Data.ColumnSortOrder.Ascending),
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn96, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "ID";
     this.gridColumn9.FieldName = "ID";
     this.gridColumn9.Name = "gridColumn9";
     //
     // gridColumn96
     //
     this.gridColumn96.Caption = "Sub Account";
     this.gridColumn96.FieldName = "StoreGroupDivision";
     this.gridColumn96.Name = "gridColumn96";
     this.gridColumn96.Visible = true;
     this.gridColumn96.VisibleIndex = 0;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Mode";
     this.gridColumn10.FieldName = "StoreType";
     this.gridColumn10.Name = "gridColumn10";
     //
     // gridColumn97
     //
     this.gridColumn97.Caption = "Account";
     this.gridColumn97.FieldName = "StoreGroup";
     this.gridColumn97.Name = "gridColumn97";
     //
     // gridColumn98
     //
     this.gridColumn98.Caption = "SSA";
     this.gridColumn98.FieldName = "Name";
     this.gridColumn98.Name = "gridColumn98";
     this.gridColumn98.Visible = true;
     this.gridColumn98.VisibleIndex = 0;
     this.gridColumn98.Width = 83;
     //
     // txtPreprintedInvoiceNo
     //
     this.txtPreprintedInvoiceNo.Location = new System.Drawing.Point(1020, 161);
     this.txtPreprintedInvoiceNo.Name = "txtPreprintedInvoiceNo";
     this.txtPreprintedInvoiceNo.Size = new System.Drawing.Size(99, 20);
     this.txtPreprintedInvoiceNo.StyleController = this.layoutControl3;
     this.txtPreprintedInvoiceNo.TabIndex = 48;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "Please fill this box";
     this.dxValidationProvider1.SetValidationRule(this.txtPreprintedInvoiceNo, conditionValidationRule1);
     this.txtPreprintedInvoiceNo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPreprintedInvoiceNo_KeyDown);
     //
     // btnCancelVoidRequest
     //
     this.btnCancelVoidRequest.Image = global::HCMIS.Desktop.Properties.Resources.cross;
     this.btnCancelVoidRequest.Location = new System.Drawing.Point(977, 359);
     this.btnCancelVoidRequest.Name = "btnCancelVoidRequest";
     this.btnCancelVoidRequest.Size = new System.Drawing.Size(142, 22);
     this.btnCancelVoidRequest.StyleController = this.layoutControl3;
     this.btnCancelVoidRequest.TabIndex = 46;
     this.btnCancelVoidRequest.Text = "Cancel Void Request";
     this.btnCancelVoidRequest.Click += new System.EventHandler(this.btnCancelVoidRequest_Click);
     //
     // txtFacilityNameFilter
     //
     this.txtFacilityNameFilter.CausesValidation = false;
     this.txtFacilityNameFilter.Location = new System.Drawing.Point(57, 172);
     this.txtFacilityNameFilter.Name = "txtFacilityNameFilter";
     this.txtFacilityNameFilter.Size = new System.Drawing.Size(203, 20);
     this.txtFacilityNameFilter.StyleController = this.layoutControl3;
     this.txtFacilityNameFilter.TabIndex = 44;
     this.txtFacilityNameFilter.EditValueChanged += new System.EventHandler(this.txtFacilityNameFilter_EditValueChanged);
     //
     // gridUndispatchedIssues
     //
     this.gridUndispatchedIssues.Location = new System.Drawing.Point(5, 196);
     this.gridUndispatchedIssues.MainView = this.gridUndispatchedIssuesView;
     this.gridUndispatchedIssues.Name = "gridUndispatchedIssues";
     this.gridUndispatchedIssues.Size = new System.Drawing.Size(255, 157);
     this.gridUndispatchedIssues.TabIndex = 15;
     this.gridUndispatchedIssues.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridUndispatchedIssuesView});
     //
     // gridUndispatchedIssuesView
     //
     this.gridUndispatchedIssuesView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn48,
     this.gridColumn49,
     this.gridColumn46,
     this.gridColumn1,
     this.colVoidReq});
     styleFormatCondition1.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     styleFormatCondition1.Appearance.Options.UseForeColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Column = this.colVoidReq;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
     styleFormatCondition1.Value1 = "True";
     this.gridUndispatchedIssuesView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.gridUndispatchedIssuesView.GridControl = this.gridUndispatchedIssues;
     this.gridUndispatchedIssuesView.GroupCount = 1;
     this.gridUndispatchedIssuesView.GroupFormat = "[#image]{1} {2}";
     this.gridUndispatchedIssuesView.Name = "gridUndispatchedIssuesView";
     this.gridUndispatchedIssuesView.OptionsBehavior.Editable = false;
     this.gridUndispatchedIssuesView.OptionsCustomization.AllowColumnMoving = false;
     this.gridUndispatchedIssuesView.OptionsCustomization.AllowColumnResizing = false;
     this.gridUndispatchedIssuesView.OptionsCustomization.AllowFilter = false;
     this.gridUndispatchedIssuesView.OptionsCustomization.AllowGroup = false;
     this.gridUndispatchedIssuesView.OptionsCustomization.AllowQuickHideColumns = false;
     this.gridUndispatchedIssuesView.OptionsCustomization.AllowSort = false;
     this.gridUndispatchedIssuesView.OptionsMenu.EnableColumnMenu = false;
     this.gridUndispatchedIssuesView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridUndispatchedIssuesView.OptionsSelection.UseIndicatorForSelection = false;
     this.gridUndispatchedIssuesView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridUndispatchedIssuesView.OptionsView.ShowGroupPanel = false;
     this.gridUndispatchedIssuesView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn49, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridUndispatchedIssuesView.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.OnUndispatchedIssueClicked);
     //
     // gridColumn48
     //
     this.gridColumn48.Caption = "Invoice";
     this.gridColumn48.FieldName = "IDPrinted";
     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.OptionsColumn.TabStop = false;
     this.gridColumn48.Visible = true;
     this.gridColumn48.VisibleIndex = 0;
     //
     // gridColumn49
     //
     this.gridColumn49.FieldName = "RequestedBy";
     this.gridColumn49.Name = "gridColumn49";
     this.gridColumn49.Width = 159;
     //
     // gridColumn46
     //
     this.gridColumn46.Caption = "Account Type";
     this.gridColumn46.FieldName = "StoreName";
     this.gridColumn46.Name = "gridColumn46";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "STVID";
     this.gridColumn1.FieldName = "STVID";
     this.gridColumn1.Name = "gridColumn1";
     //
     // btnConfirmIssue1
     //
     this.btnConfirmIssue1.Image = ((System.Drawing.Image)(resources.GetObject("btnConfirmIssue1.Image")));
     this.btnConfirmIssue1.Location = new System.Drawing.Point(539, 359);
     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 Dispatch";
     this.btnConfirmIssue1.Click += new System.EventHandler(this.btnConfirmIssue_Click);
     //
     // btnApproveVoidRequest
     //
     this.btnApproveVoidRequest.Image = global::HCMIS.Desktop.Properties.Resources.icon_accept;
     this.btnApproveVoidRequest.Location = new System.Drawing.Point(831, 359);
     this.btnApproveVoidRequest.Name = "btnApproveVoidRequest";
     this.btnApproveVoidRequest.Size = new System.Drawing.Size(142, 22);
     this.btnApproveVoidRequest.StyleController = this.layoutControl3;
     this.btnApproveVoidRequest.TabIndex = 47;
     this.btnApproveVoidRequest.Text = "Confirm Void Request";
     this.btnApproveVoidRequest.Click += new System.EventHandler(this.btnApproveVoidRequest_Click);
     //
     // 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;
     //
     // btnMarkAsVoid
     //
     this.btnMarkAsVoid.Image = global::HCMIS.Desktop.Properties.Resources.Unmark;
     this.btnMarkAsVoid.Location = new System.Drawing.Point(685, 359);
     this.btnMarkAsVoid.Name = "btnMarkAsVoid";
     this.btnMarkAsVoid.Size = new System.Drawing.Size(142, 22);
     this.btnMarkAsVoid.StyleController = this.layoutControl3;
     this.btnMarkAsVoid.TabIndex = 45;
     this.btnMarkAsVoid.Text = "Request a Void";
     this.btnMarkAsVoid.Click += new System.EventHandler(this.btnMarkAsVoid_Click);
     //
     // txtSTVInvoiceNo
     //
     this.txtSTVInvoiceNo.Enabled = false;
     this.txtSTVInvoiceNo.Location = new System.Drawing.Point(638, 100);
     this.txtSTVInvoiceNo.Name = "txtSTVInvoiceNo";
     this.txtSTVInvoiceNo.Size = new System.Drawing.Size(359, 20);
     this.txtSTVInvoiceNo.StyleController = this.layoutControl3;
     this.txtSTVInvoiceNo.TabIndex = 37;
     //
     // 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(56, 358);
     this.txtRemarks.Name = "txtRemarks";
     this.txtRemarks.Size = new System.Drawing.Size(203, 21);
     this.txtRemarks.StyleController = this.layoutControl3;
     this.txtRemarks.TabIndex = 32;
     //
     // gridUndispatchedIssueDetails
     //
     this.gridUndispatchedIssueDetails.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.gridUndispatchedIssueDetails.Location = new System.Drawing.Point(273, 185);
     this.gridUndispatchedIssueDetails.MainView = this.gridViewUndispatchedIssueDetails;
     this.gridUndispatchedIssueDetails.Name = "gridUndispatchedIssueDetails";
     this.gridUndispatchedIssueDetails.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1});
     this.gridUndispatchedIssueDetails.Size = new System.Drawing.Size(846, 170);
     this.gridUndispatchedIssueDetails.TabIndex = 13;
     this.gridUndispatchedIssueDetails.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewUndispatchedIssueDetails});
     //
     // gridViewUndispatchedIssueDetails
     //
     this.gridViewUndispatchedIssueDetails.Appearance.GroupFooter.BackColor = System.Drawing.Color.White;
     this.gridViewUndispatchedIssueDetails.Appearance.GroupFooter.BackColor2 = System.Drawing.Color.White;
     this.gridViewUndispatchedIssueDetails.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.gridViewUndispatchedIssueDetails.Appearance.GroupFooter.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.gridViewUndispatchedIssueDetails.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewUndispatchedIssueDetails.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewUndispatchedIssueDetails.Appearance.GroupFooter.Options.UseTextOptions = true;
     this.gridViewUndispatchedIssueDetails.Appearance.GroupFooter.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewUndispatchedIssueDetails.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Unit,
     this.gridColumn22,
     this.gridColumn23,
     this.gridColumn35,
     this.gridColumn36,
     this.gridColumn37,
     this.gridColumn38,
     this.gridColumn39,
     this.gridColumn40,
     this.colActuallyIssuedNoOfPack,
     this.colBUPicked,
     this.gridColumn47,
     this.colCost,
     this.gridColumn60,
     this.gridColumn62,
     this.gridColumn50,
     this.gridColumn2});
     this.gridViewUndispatchedIssueDetails.GridControl = this.gridUndispatchedIssueDetails;
     this.gridViewUndispatchedIssueDetails.GroupCount = 1;
     this.gridViewUndispatchedIssueDetails.Name = "gridViewUndispatchedIssueDetails";
     this.gridViewUndispatchedIssueDetails.OptionsBehavior.AutoExpandAllGroups = true;
     this.gridViewUndispatchedIssueDetails.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewUndispatchedIssueDetails.OptionsCustomization.AllowColumnResizing = false;
     this.gridViewUndispatchedIssueDetails.OptionsDetail.AllowExpandEmptyDetails = true;
     this.gridViewUndispatchedIssueDetails.OptionsMenu.EnableColumnMenu = false;
     this.gridViewUndispatchedIssueDetails.OptionsView.AllowCellMerge = true;
     this.gridViewUndispatchedIssueDetails.OptionsView.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.Hidden;
     this.gridViewUndispatchedIssueDetails.OptionsView.RowAutoHeight = true;
     this.gridViewUndispatchedIssueDetails.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewUndispatchedIssueDetails.OptionsView.ShowGroupPanel = false;
     this.gridViewUndispatchedIssueDetails.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn22, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewUndispatchedIssueDetails.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView2_CellValueChanged);
     //
     // Unit
     //
     this.Unit.Caption = "Unit";
     this.Unit.FieldName = "Unit";
     this.Unit.Name = "Unit";
     this.Unit.OptionsColumn.AllowEdit = false;
     this.Unit.OptionsColumn.AllowFocus = false;
     this.Unit.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.Unit.OptionsColumn.AllowIncrementalSearch = false;
     this.Unit.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.Unit.OptionsColumn.AllowMove = false;
     this.Unit.OptionsColumn.AllowShowHide = false;
     this.Unit.OptionsColumn.AllowSize = false;
     this.Unit.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.Unit.OptionsColumn.ShowInCustomizationForm = false;
     this.Unit.OptionsColumn.ShowInExpressionEditor = false;
     this.Unit.OptionsColumn.TabStop = false;
     this.Unit.OptionsFilter.AllowAutoFilter = false;
     this.Unit.OptionsFilter.AllowFilter = false;
     this.Unit.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.Unit.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.Unit.Visible = true;
     this.Unit.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.True;
     this.gridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.ShowInCustomizationForm = 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.Width = 84;
     //
     // gridColumn23
     //
     this.gridColumn23.AppearanceCell.BackColor = System.Drawing.Color.White;
     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.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsColumn.AllowShowHide = false;
     this.gridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsColumn.ShowInCustomizationForm = 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.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.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsColumn.ShowInCustomizationForm = 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.Width = 120;
     //
     // gridColumn36
     //
     this.gridColumn36.AppearanceCell.BackColor = System.Drawing.Color.White;
     this.gridColumn36.Caption = "Quantity Printed";
     this.gridColumn36.DisplayFormat.FormatString = "#,##0.###0";
     this.gridColumn36.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn36.FieldName = "NoOfPack";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.OptionsColumn.AllowEdit = false;
     this.gridColumn36.OptionsColumn.AllowFocus = false;
     this.gridColumn36.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsColumn.ShowInCustomizationForm = 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.Visible = true;
     this.gridColumn36.VisibleIndex = 5;
     this.gridColumn36.Width = 101;
     //
     // gridColumn37
     //
     this.gridColumn37.AppearanceCell.BackColor = System.Drawing.Color.White;
     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.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsColumn.ShowInCustomizationForm = 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.Visible = true;
     this.gridColumn37.VisibleIndex = 1;
     this.gridColumn37.Width = 67;
     //
     // gridColumn38
     //
     this.gridColumn38.AppearanceCell.BackColor = System.Drawing.Color.White;
     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.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsColumn.ShowInCustomizationForm = 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.Visible = true;
     this.gridColumn38.VisibleIndex = 2;
     this.gridColumn38.Width = 99;
     //
     // gridColumn39
     //
     this.gridColumn39.ColumnEdit = this.repositoryItemButtonEdit4;
     this.gridColumn39.Name = "gridColumn39";
     this.gridColumn39.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsColumn.ShowInCustomizationForm = 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.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.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsColumn.ShowInCustomizationForm = 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;
     //
     // colActuallyIssuedNoOfPack
     //
     this.colActuallyIssuedNoOfPack.AppearanceCell.BackColor = System.Drawing.Color.PaleTurquoise;
     this.colActuallyIssuedNoOfPack.AppearanceCell.Options.UseBackColor = true;
     this.colActuallyIssuedNoOfPack.Caption = "Actually Issued";
     this.colActuallyIssuedNoOfPack.ColumnEdit = this.repositoryItemTextEdit2;
     this.colActuallyIssuedNoOfPack.DisplayFormat.FormatString = "#,##0.###0";
     this.colActuallyIssuedNoOfPack.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colActuallyIssuedNoOfPack.FieldName = "ActuallyIssuedNoOfPack";
     this.colActuallyIssuedNoOfPack.Name = "colActuallyIssuedNoOfPack";
     this.colActuallyIssuedNoOfPack.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colActuallyIssuedNoOfPack.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colActuallyIssuedNoOfPack.OptionsColumn.ShowInCustomizationForm = false;
     this.colActuallyIssuedNoOfPack.OptionsFilter.AllowAutoFilter = false;
     this.colActuallyIssuedNoOfPack.OptionsFilter.AllowFilter = false;
     this.colActuallyIssuedNoOfPack.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colActuallyIssuedNoOfPack.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colActuallyIssuedNoOfPack.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum)});
     this.colActuallyIssuedNoOfPack.Visible = true;
     this.colActuallyIssuedNoOfPack.VisibleIndex = 6;
     this.colActuallyIssuedNoOfPack.Width = 78;
     //
     // 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.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsColumn.ShowInCustomizationForm = 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.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.White;
     this.gridColumn47.Caption = "Location";
     this.gridColumn47.FieldName = "PalletLocation";
     this.gridColumn47.Name = "gridColumn47";
     this.gridColumn47.OptionsColumn.AllowEdit = false;
     this.gridColumn47.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsColumn.ShowInCustomizationForm = 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.Visible = true;
     this.gridColumn47.VisibleIndex = 3;
     this.gridColumn47.Width = 100;
     //
     // colCost
     //
     this.colCost.AppearanceCell.BackColor = System.Drawing.Color.White;
     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.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsColumn.ShowInCustomizationForm = 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.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Cost", "{0:#,###.##}")});
     this.colCost.Visible = true;
     this.colCost.VisibleIndex = 8;
     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.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn60.OptionsColumn.ShowInCustomizationForm = 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;
     //
     // 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.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.OptionsColumn.ShowInCustomizationForm = 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.Visible = true;
     this.gridColumn62.VisibleIndex = 7;
     //
     // 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.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.OptionsColumn.ShowInCustomizationForm = 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.Width = 77;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "IssueDocID";
     this.gridColumn2.FieldName = "IssueDocID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn2.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn2.OptionsFilter.AllowFilter = false;
     this.gridColumn2.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.ValueGrayed = false;
     //
     // 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(638, 100);
     this.txtIssuedBy.Name = "txtIssuedBy";
     this.txtIssuedBy.Size = new System.Drawing.Size(156, 20);
     this.txtIssuedBy.StyleController = this.layoutControl3;
     this.txtIssuedBy.TabIndex = 31;
     //
     // 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;
     //
     // layoutControlItem21
     //
     this.layoutControlItem21.Control = this.txtIssuedBy;
     this.layoutControlItem21.CustomizationFormText = "Dispatch Confirmed By:";
     this.layoutControlItem21.Location = new System.Drawing.Point(86, 0);
     this.layoutControlItem21.MaxSize = new System.Drawing.Size(277, 24);
     this.layoutControlItem21.MinSize = new System.Drawing.Size(277, 24);
     this.layoutControlItem21.Name = "layoutControlItem21";
     this.layoutControlItem21.Size = new System.Drawing.Size(277, 24);
     this.layoutControlItem21.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem21.Text = "Dispatch Confirmed By";
     this.layoutControlItem21.TextSize = new System.Drawing.Size(112, 13);
     this.layoutControlItem21.TextToControlDistance = 5;
     //
     // layoutControlItem25
     //
     this.layoutControlItem25.Control = this.txtSTVInvoiceNo;
     this.layoutControlItem25.CustomizationFormText = "layoutControlItem25";
     this.layoutControlItem25.Location = new System.Drawing.Point(86, 0);
     this.layoutControlItem25.MinSize = new System.Drawing.Size(171, 24);
     this.layoutControlItem25.Name = "layoutControlItem25";
     this.layoutControlItem25.Size = new System.Drawing.Size(480, 40);
     this.layoutControlItem25.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem25.Text = "STV/Invoice No:";
     this.layoutControlItem25.TextSize = new System.Drawing.Size(112, 13);
     this.layoutControlItem25.TextToControlDistance = 5;
     //
     // layoutControlItem20
     //
     this.layoutControlItem20.Control = this.lblSTVNo;
     this.layoutControlItem20.CustomizationFormText = "STV/Invoice No:";
     this.layoutControlItem20.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem20.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem20.MinSize = new System.Drawing.Size(89, 20);
     this.layoutControlItem20.Name = "layoutControlItem20";
     this.layoutControlItem20.Size = new System.Drawing.Size(207, 20);
     this.layoutControlItem20.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem20.Text = "STV/Invoice No:";
     this.layoutControlItem20.TextSize = new System.Drawing.Size(79, 13);
     this.layoutControlItem20.TextToControlDistance = 5;
     //
     // layoutControlItem58
     //
     this.layoutControlItem58.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem58.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem58.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem58.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem58.Control = this.lblDispatchedDate;
     this.layoutControlItem58.CustomizationFormText = "Dispatched Date:";
     this.layoutControlItem58.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem58.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem58.MinSize = new System.Drawing.Size(123, 20);
     this.layoutControlItem58.Name = "layoutControlItem58";
     this.layoutControlItem58.Size = new System.Drawing.Size(192, 20);
     this.layoutControlItem58.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem58.Text = "Dispatched Date:";
     this.layoutControlItem58.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem58.TextSize = new System.Drawing.Size(96, 13);
     this.layoutControlItem58.TextToControlDistance = 5;
     //
     // layoutControlItem27
     //
     this.layoutControlItem27.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem27.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem27.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem27.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem27.Control = this.lblDispatchConfirmedBy;
     this.layoutControlItem27.CustomizationFormText = "Dispatch By:";
     this.layoutControlItem27.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem27.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem27.MinSize = new System.Drawing.Size(107, 20);
     this.layoutControlItem27.Name = "layoutControlItem27";
     this.layoutControlItem27.Size = new System.Drawing.Size(192, 40);
     this.layoutControlItem27.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem27.Text = "Dispatched By:";
     this.layoutControlItem27.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem27.TextSize = new System.Drawing.Size(83, 13);
     this.layoutControlItem27.TextToControlDistance = 18;
     //
     // 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.layoutControlGroup13,
     this.layoutControlGroup19,
     this.lcRequestVoid,
     this.emptySpaceItem5,
     this.emptySpaceItem4,
     this.lcApprovalCancel,
     this.lcApproval,
     this.lcDispatchConfirm});
     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, 385);
     this.layoutControlGroup7.Text = "Root";
     this.layoutControlGroup7.TextVisible = false;
     //
     // layoutControlGroup13
     //
     this.layoutControlGroup13.CustomizationFormText = "Pick List Confirmation";
     this.layoutControlGroup13.GroupBordersVisible = false;
     this.layoutControlGroup13.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem19,
     this.layoutControlItem1,
     this.emptySpaceItem2,
     this.FacilityGroup});
     this.layoutControlGroup13.Location = new System.Drawing.Point(269, 0);
     this.layoutControlGroup13.Name = "layoutControlGroup13";
     this.layoutControlGroup13.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup13.Size = new System.Drawing.Size(850, 355);
     this.layoutControlGroup13.Text = "Pick List Confirmation";
     //
     // layoutControlItem19
     //
     this.layoutControlItem19.Control = this.gridUndispatchedIssueDetails;
     this.layoutControlItem19.CustomizationFormText = "layoutControlItem19";
     this.layoutControlItem19.Location = new System.Drawing.Point(0, 181);
     this.layoutControlItem19.MinSize = new System.Drawing.Size(104, 24);
     this.layoutControlItem19.Name = "layoutControlItem19";
     this.layoutControlItem19.Size = new System.Drawing.Size(850, 174);
     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;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.txtPreprintedInvoiceNo;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(630, 157);
     this.layoutControlItem1.MaxSize = new System.Drawing.Size(0, 24);
     this.layoutControlItem1.MinSize = new System.Drawing.Size(171, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(220, 24);
     this.layoutControlItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem1.Text = "Pre-Printed Invoice No:";
     this.layoutControlItem1.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(112, 13);
     this.layoutControlItem1.TextToControlDistance = 5;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(0, 157);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(630, 24);
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // FacilityGroup
     //
     this.FacilityGroup.AppearanceGroup.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.FacilityGroup.AppearanceGroup.Options.UseFont = true;
     this.FacilityGroup.CustomizationFormText = "Facility";
     this.FacilityGroup.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2,
     this.layoutControlGroup3,
     this.layoutControlGroup5,
     this.layoutControlGroup6,
     this.layoutControlGroup4});
     this.FacilityGroup.Location = new System.Drawing.Point(0, 0);
     this.FacilityGroup.Name = "FacilityGroup";
     this.FacilityGroup.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.FacilityGroup.Size = new System.Drawing.Size(850, 157);
     this.FacilityGroup.Text = " ";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem43,
     this.layoutControlItem12,
     this.layoutControlItem14,
     this.layoutControlItem38,
     this.layoutControlItem45,
     this.layoutControlItem16,
     this.layoutControlItem31,
     this.layoutControlItem40,
     this.layoutControlItem37,
     this.layoutControlItem10,
     this.layoutControlItem33});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup2.Size = new System.Drawing.Size(840, 74);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // layoutControlItem43
     //
     this.layoutControlItem43.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem43.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem43.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem43.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem43.Control = this.lblMode;
     this.layoutControlItem43.CustomizationFormText = "Mode:";
     this.layoutControlItem43.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem43.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem43.MinSize = new System.Drawing.Size(59, 20);
     this.layoutControlItem43.Name = "layoutControlItem43";
     this.layoutControlItem43.Size = new System.Drawing.Size(214, 20);
     this.layoutControlItem43.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem43.Text = "Mode:";
     this.layoutControlItem43.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem43.TextSize = new System.Drawing.Size(34, 13);
     this.layoutControlItem43.TextToControlDistance = 25;
     //
     // 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.lblAccount;
     this.layoutControlItem12.CustomizationFormText = "Account:";
     this.layoutControlItem12.Location = new System.Drawing.Point(214, 0);
     this.layoutControlItem12.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem12.MinSize = new System.Drawing.Size(98, 20);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Size = new System.Drawing.Size(204, 20);
     this.layoutControlItem12.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem12.Text = "Account:";
     this.layoutControlItem12.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem12.TextSize = new System.Drawing.Size(49, 13);
     this.layoutControlItem12.TextToControlDistance = 48;
     //
     // 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.lblSubAccount;
     this.layoutControlItem14.CustomizationFormText = "Sub Account:";
     this.layoutControlItem14.Location = new System.Drawing.Point(418, 0);
     this.layoutControlItem14.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem14.MinSize = new System.Drawing.Size(85, 20);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(204, 20);
     this.layoutControlItem14.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem14.Text = "Sub Account:";
     this.layoutControlItem14.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem14.TextSize = new System.Drawing.Size(73, 13);
     this.layoutControlItem14.TextToControlDistance = 5;
     //
     // layoutControlItem38
     //
     this.layoutControlItem38.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem38.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem38.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem38.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem38.Control = this.lblActivity;
     this.layoutControlItem38.CustomizationFormText = "Activity:";
     this.layoutControlItem38.Location = new System.Drawing.Point(622, 0);
     this.layoutControlItem38.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem38.MinSize = new System.Drawing.Size(104, 20);
     this.layoutControlItem38.Name = "layoutControlItem38";
     this.layoutControlItem38.Size = new System.Drawing.Size(204, 20);
     this.layoutControlItem38.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem38.Text = "Activity:";
     this.layoutControlItem38.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem38.TextSize = new System.Drawing.Size(47, 13);
     this.layoutControlItem38.TextToControlDistance = 20;
     //
     // layoutControlItem45
     //
     this.layoutControlItem45.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem45.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem45.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem45.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem45.Control = this.lblZone;
     this.layoutControlItem45.CustomizationFormText = "Zone:";
     this.layoutControlItem45.Location = new System.Drawing.Point(214, 40);
     this.layoutControlItem45.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem45.MinSize = new System.Drawing.Size(98, 20);
     this.layoutControlItem45.Name = "layoutControlItem45";
     this.layoutControlItem45.Size = new System.Drawing.Size(204, 20);
     this.layoutControlItem45.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem45.Text = "Zone:";
     this.layoutControlItem45.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem45.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem45.TextToControlDistance = 66;
     //
     // 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.lblWoreda;
     this.layoutControlItem16.CustomizationFormText = "Woreda:";
     this.layoutControlItem16.Location = new System.Drawing.Point(0, 40);
     this.layoutControlItem16.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem16.MinSize = new System.Drawing.Size(59, 20);
     this.layoutControlItem16.Name = "layoutControlItem16";
     this.layoutControlItem16.Size = new System.Drawing.Size(214, 20);
     this.layoutControlItem16.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem16.Text = "Woreda:";
     this.layoutControlItem16.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem16.TextSize = new System.Drawing.Size(47, 13);
     this.layoutControlItem16.TextToControlDistance = 12;
     //
     // 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.lblPaymentType;
     this.layoutControlItem31.CustomizationFormText = "Payment Type:";
     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(97, 20);
     this.layoutControlItem31.Name = "layoutControlItem31";
     this.layoutControlItem31.Size = new System.Drawing.Size(214, 20);
     this.layoutControlItem31.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem31.Text = "Payment:";
     this.layoutControlItem31.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem31.TextSize = new System.Drawing.Size(54, 13);
     this.layoutControlItem31.TextToControlDistance = 5;
     //
     // layoutControlItem40
     //
     this.layoutControlItem40.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem40.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem40.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem40.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem40.Control = this.lblOwnership;
     this.layoutControlItem40.CustomizationFormText = "Ownership:";
     this.layoutControlItem40.Location = new System.Drawing.Point(622, 20);
     this.layoutControlItem40.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem40.MinSize = new System.Drawing.Size(84, 20);
     this.layoutControlItem40.Name = "layoutControlItem40";
     this.layoutControlItem40.Size = new System.Drawing.Size(204, 20);
     this.layoutControlItem40.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem40.Text = "Ownership:";
     this.layoutControlItem40.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem40.TextSize = new System.Drawing.Size(62, 13);
     this.layoutControlItem40.TextToControlDistance = 5;
     //
     // layoutControlItem37
     //
     this.layoutControlItem37.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem37.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem37.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem37.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem37.Control = this.lblRegion;
     this.layoutControlItem37.CustomizationFormText = "Region:";
     this.layoutControlItem37.Location = new System.Drawing.Point(418, 40);
     this.layoutControlItem37.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem37.MinSize = new System.Drawing.Size(84, 20);
     this.layoutControlItem37.Name = "layoutControlItem37";
     this.layoutControlItem37.Size = new System.Drawing.Size(408, 20);
     this.layoutControlItem37.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem37.Text = "Region:";
     this.layoutControlItem37.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem37.TextSize = new System.Drawing.Size(42, 13);
     this.layoutControlItem37.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.lblInstitutionType;
     this.layoutControlItem10.CustomizationFormText = "Inst. Type:";
     this.layoutControlItem10.Location = new System.Drawing.Point(418, 20);
     this.layoutControlItem10.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem10.MinSize = new System.Drawing.Size(59, 20);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(204, 20);
     this.layoutControlItem10.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem10.Text = "Inst. Type:";
     this.layoutControlItem10.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem10.TextSize = new System.Drawing.Size(60, 13);
     this.layoutControlItem10.TextToControlDistance = 18;
     //
     // layoutControlItem33
     //
     this.layoutControlItem33.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem33.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem33.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem33.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem33.Control = this.lblDocumentedType;
     this.layoutControlItem33.CustomizationFormText = "Documented Type:";
     this.layoutControlItem33.Location = new System.Drawing.Point(214, 20);
     this.layoutControlItem33.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem33.MinSize = new System.Drawing.Size(104, 20);
     this.layoutControlItem33.Name = "layoutControlItem33";
     this.layoutControlItem33.Size = new System.Drawing.Size(204, 20);
     this.layoutControlItem33.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem33.Text = "Document Type:";
     this.layoutControlItem33.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem33.TextSize = new System.Drawing.Size(92, 13);
     this.layoutControlItem33.TextToControlDistance = 5;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem47,
     this.layoutControlItem30});
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 74);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup3.Size = new System.Drawing.Size(212, 54);
     this.layoutControlGroup3.Text = "layoutControlGroup3";
     this.layoutControlGroup3.TextVisible = false;
     //
     // layoutControlItem47
     //
     this.layoutControlItem47.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem47.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem47.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem47.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem47.Control = this.lblSTVDate;
     this.layoutControlItem47.CustomizationFormText = "Date:";
     this.layoutControlItem47.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem47.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem47.MinSize = new System.Drawing.Size(113, 20);
     this.layoutControlItem47.Name = "layoutControlItem47";
     this.layoutControlItem47.Size = new System.Drawing.Size(198, 20);
     this.layoutControlItem47.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem47.Text = "Printed Date:";
     this.layoutControlItem47.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem47.TextSize = new System.Drawing.Size(74, 13);
     this.layoutControlItem47.TextToControlDistance = 5;
     //
     // 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.lblSTVPrintedBy;
     this.layoutControlItem30.CustomizationFormText = "Letter Number:";
     this.layoutControlItem30.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem30.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem30.MinSize = new System.Drawing.Size(86, 20);
     this.layoutControlItem30.Name = "layoutControlItem30";
     this.layoutControlItem30.Size = new System.Drawing.Size(198, 20);
     this.layoutControlItem30.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem30.Text = "Printed By:";
     this.layoutControlItem30.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem30.TextSize = new System.Drawing.Size(61, 13);
     this.layoutControlItem30.TextToControlDistance = 18;
     //
     // layoutControlGroup5
     //
     this.layoutControlGroup5.CustomizationFormText = "layoutControlGroup5";
     this.layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem60,
     this.layoutControlItem62});
     this.layoutControlGroup5.Location = new System.Drawing.Point(417, 74);
     this.layoutControlGroup5.Name = "layoutControlGroup5";
     this.layoutControlGroup5.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup5.Size = new System.Drawing.Size(202, 54);
     this.layoutControlGroup5.Text = "layoutControlGroup5";
     this.layoutControlGroup5.TextVisible = false;
     //
     // layoutControlItem60
     //
     this.layoutControlItem60.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem60.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem60.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem60.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem60.Control = this.lblVoidConfirmedDate;
     this.layoutControlItem60.CustomizationFormText = "Void Confirmed Date:";
     this.layoutControlItem60.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem60.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem60.MinSize = new System.Drawing.Size(127, 20);
     this.layoutControlItem60.Name = "layoutControlItem60";
     this.layoutControlItem60.Size = new System.Drawing.Size(188, 20);
     this.layoutControlItem60.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem60.Text = "Void Confirmed Date:";
     this.layoutControlItem60.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem60.TextSize = new System.Drawing.Size(118, 13);
     this.layoutControlItem60.TextToControlDistance = 5;
     //
     // layoutControlItem62
     //
     this.layoutControlItem62.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem62.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem62.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem62.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem62.Control = this.lblVoidConfirmedBy;
     this.layoutControlItem62.CustomizationFormText = "Void Confirmed By:";
     this.layoutControlItem62.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem62.MinSize = new System.Drawing.Size(114, 17);
     this.layoutControlItem62.Name = "layoutControlItem62";
     this.layoutControlItem62.Size = new System.Drawing.Size(188, 20);
     this.layoutControlItem62.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem62.Text = "Void Confirmed By:";
     this.layoutControlItem62.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem62.TextSize = new System.Drawing.Size(105, 13);
     this.layoutControlItem62.TextToControlDistance = 18;
     //
     // layoutControlGroup6
     //
     this.layoutControlGroup6.CustomizationFormText = "layoutControlGroup6";
     this.layoutControlGroup6.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem54,
     this.layoutControlItem56});
     this.layoutControlGroup6.Location = new System.Drawing.Point(619, 74);
     this.layoutControlGroup6.Name = "layoutControlGroup6";
     this.layoutControlGroup6.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup6.Size = new System.Drawing.Size(221, 54);
     this.layoutControlGroup6.Text = "layoutControlGroup6";
     this.layoutControlGroup6.TextVisible = false;
     //
     // layoutControlItem54
     //
     this.layoutControlItem54.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem54.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem54.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem54.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem54.Control = this.lblIssueType;
     this.layoutControlItem54.CustomizationFormText = "Type:";
     this.layoutControlItem54.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem54.MinSize = new System.Drawing.Size(69, 4);
     this.layoutControlItem54.Name = "layoutControlItem54";
     this.layoutControlItem54.Size = new System.Drawing.Size(207, 20);
     this.layoutControlItem54.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem54.Text = "Type:";
     this.layoutControlItem54.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem54.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem54.TextToControlDistance = 14;
     //
     // layoutControlItem56
     //
     this.layoutControlItem56.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem56.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem56.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem56.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem56.Control = this.lblIssueStatus;
     this.layoutControlItem56.CustomizationFormText = "Issue Status:";
     this.layoutControlItem56.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem56.MaxSize = new System.Drawing.Size(207, 20);
     this.layoutControlItem56.MinSize = new System.Drawing.Size(207, 20);
     this.layoutControlItem56.Name = "layoutControlItem56";
     this.layoutControlItem56.Size = new System.Drawing.Size(207, 20);
     this.layoutControlItem56.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem56.Text = "Status:";
     this.layoutControlItem56.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem56.TextSize = new System.Drawing.Size(40, 13);
     this.layoutControlItem56.TextToControlDistance = 5;
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "layoutControlGroup4";
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem49,
     this.layoutControlItem52});
     this.layoutControlGroup4.Location = new System.Drawing.Point(212, 74);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup4.Size = new System.Drawing.Size(205, 54);
     this.layoutControlGroup4.Text = "layoutControlGroup4";
     this.layoutControlGroup4.TextVisible = false;
     //
     // layoutControlItem49
     //
     this.layoutControlItem49.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem49.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem49.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem49.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem49.Control = this.lblVoidRequestedBy;
     this.layoutControlItem49.CustomizationFormText = "Void Requested By:";
     this.layoutControlItem49.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem49.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem49.MinSize = new System.Drawing.Size(113, 20);
     this.layoutControlItem49.Name = "layoutControlItem49";
     this.layoutControlItem49.Size = new System.Drawing.Size(191, 20);
     this.layoutControlItem49.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem49.Text = "Void Requested By:";
     this.layoutControlItem49.TextSize = new System.Drawing.Size(117, 13);
     this.layoutControlItem49.TextToControlDistance = 5;
     //
     // layoutControlItem52
     //
     this.layoutControlItem52.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem52.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem52.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem52.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem52.Control = this.lblRequistedDate;
     this.layoutControlItem52.CustomizationFormText = "Void Requisted Date:";
     this.layoutControlItem52.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem52.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem52.MinSize = new System.Drawing.Size(113, 20);
     this.layoutControlItem52.Name = "layoutControlItem52";
     this.layoutControlItem52.Size = new System.Drawing.Size(191, 20);
     this.layoutControlItem52.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem52.Text = "Void Requisted Date:";
     this.layoutControlItem52.TextSize = new System.Drawing.Size(117, 13);
     this.layoutControlItem52.TextToControlDistance = 5;
     //
     // layoutControlGroup19
     //
     this.layoutControlGroup19.CustomizationFormText = "Outstanding Pick Lists";
     this.layoutControlGroup19.ExpandOnDoubleClick = true;
     this.layoutControlGroup19.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem50,
     this.layoutControlGroup1,
     this.layoutControlItem22,
     this.layoutControlItem2,
     this.emptySpaceItem1});
     this.layoutControlGroup19.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup19.Name = "layoutControlGroup19";
     this.layoutControlGroup19.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup19.Size = new System.Drawing.Size(261, 381);
     this.layoutControlGroup19.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup19.Text = "Unconfirmed STVs";
     this.layoutControlGroup19.TextLocation = DevExpress.Utils.Locations.Left;
     this.layoutControlGroup19.TextVisible = false;
     //
     // layoutControlItem50
     //
     this.layoutControlItem50.Control = this.gridUndispatchedIssues;
     this.layoutControlItem50.CustomizationFormText = "layoutControlItem50";
     this.layoutControlItem50.Location = new System.Drawing.Point(0, 191);
     this.layoutControlItem50.MinSize = new System.Drawing.Size(104, 24);
     this.layoutControlItem50.Name = "layoutControlItem50";
     this.layoutControlItem50.Size = new System.Drawing.Size(259, 161);
     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;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "Date Filter";
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem3,
     this.layoutControlItem7,
     this.layoutControlItem4,
     this.layoutControlItem6,
     this.layoutControlItem8,
     this.layoutControlItem5,
     this.emptySpaceItem3});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Size = new System.Drawing.Size(259, 167);
     this.layoutControlGroup1.Text = "Filter";
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.lkAccount;
     this.layoutControlItem3.CustomizationFormText = "Account";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(235, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(235, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(235, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Account";
     this.layoutControlItem3.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.dateFrom;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(235, 24);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(235, 24);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(235, 24);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.Text = "layoutControlItem7";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.dateTo;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(235, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(235, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(235, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnGo;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(89, 72);
     this.layoutControlItem6.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem6.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem6.Text = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible = false;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.btnGoSTV;
     this.layoutControlItem8.CustomizationFormText = "layoutControlItem8";
     this.layoutControlItem8.Location = new System.Drawing.Point(89, 98);
     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;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.tEditSTVNo;
     this.layoutControlItem5.ControlAlignment = System.Drawing.ContentAlignment.BottomCenter;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 98);
     this.layoutControlItem5.MinSize = new System.Drawing.Size(56, 22);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlItem5.Size = new System.Drawing.Size(89, 26);
     this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem5.Text = "STV/Invoice:";
     this.layoutControlItem5.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem5.TextLocation = DevExpress.Utils.Locations.Default;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(0, 72);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(89, 26);
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem22
     //
     this.layoutControlItem22.Control = this.txtRemarks;
     this.layoutControlItem22.CustomizationFormText = "Remarks";
     this.layoutControlItem22.Location = new System.Drawing.Point(0, 352);
     this.layoutControlItem22.MaxSize = new System.Drawing.Size(259, 27);
     this.layoutControlItem22.MinSize = new System.Drawing.Size(259, 27);
     this.layoutControlItem22.Name = "layoutControlItem22";
     this.layoutControlItem22.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlItem22.Size = new System.Drawing.Size(259, 27);
     this.layoutControlItem22.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem22.Text = "Remarks:";
     this.layoutControlItem22.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem22.TextSize = new System.Drawing.Size(45, 13);
     this.layoutControlItem22.TextToControlDistance = 5;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.txtFacilityNameFilter;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(19, 167);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(240, 24);
     this.layoutControlItem2.Text = "Filter:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(28, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 167);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(19, 24);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // lcRequestVoid
     //
     this.lcRequestVoid.Control = this.btnMarkAsVoid;
     this.lcRequestVoid.CustomizationFormText = "layoutControlItem1";
     this.lcRequestVoid.Location = new System.Drawing.Point(681, 355);
     this.lcRequestVoid.MaxSize = new System.Drawing.Size(146, 26);
     this.lcRequestVoid.MinSize = new System.Drawing.Size(146, 26);
     this.lcRequestVoid.Name = "lcRequestVoid";
     this.lcRequestVoid.Size = new System.Drawing.Size(146, 26);
     this.lcRequestVoid.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.lcRequestVoid.Text = "lcRequestVoid";
     this.lcRequestVoid.TextSize = new System.Drawing.Size(0, 0);
     this.lcRequestVoid.TextToControlDistance = 0;
     this.lcRequestVoid.TextVisible = false;
     this.lcRequestVoid.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // emptySpaceItem5
     //
     this.emptySpaceItem5.AllowHotTrack = false;
     this.emptySpaceItem5.CustomizationFormText = "emptySpaceItem5";
     this.emptySpaceItem5.Location = new System.Drawing.Point(269, 355);
     this.emptySpaceItem5.Name = "emptySpaceItem5";
     this.emptySpaceItem5.Size = new System.Drawing.Size(266, 26);
     this.emptySpaceItem5.Text = "emptySpaceItem5";
     this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem4
     //
     this.emptySpaceItem4.AllowHotTrack = false;
     this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4";
     this.emptySpaceItem4.Location = new System.Drawing.Point(261, 0);
     this.emptySpaceItem4.MaxSize = new System.Drawing.Size(8, 0);
     this.emptySpaceItem4.MinSize = new System.Drawing.Size(8, 24);
     this.emptySpaceItem4.Name = "emptySpaceItem4";
     this.emptySpaceItem4.Size = new System.Drawing.Size(8, 381);
     this.emptySpaceItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem4.Text = "emptySpaceItem4";
     this.emptySpaceItem4.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
     //
     // lcApprovalCancel
     //
     this.lcApprovalCancel.Control = this.btnCancelVoidRequest;
     this.lcApprovalCancel.CustomizationFormText = "layoutControlItem3";
     this.lcApprovalCancel.Location = new System.Drawing.Point(973, 355);
     this.lcApprovalCancel.MaxSize = new System.Drawing.Size(146, 26);
     this.lcApprovalCancel.MinSize = new System.Drawing.Size(146, 26);
     this.lcApprovalCancel.Name = "lcApprovalCancel";
     this.lcApprovalCancel.Size = new System.Drawing.Size(146, 26);
     this.lcApprovalCancel.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.lcApprovalCancel.Text = "lcApprovalCancel";
     this.lcApprovalCancel.TextSize = new System.Drawing.Size(0, 0);
     this.lcApprovalCancel.TextToControlDistance = 0;
     this.lcApprovalCancel.TextVisible = false;
     this.lcApprovalCancel.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // lcApproval
     //
     this.lcApproval.Control = this.btnApproveVoidRequest;
     this.lcApproval.CustomizationFormText = "layoutControlItem4";
     this.lcApproval.Location = new System.Drawing.Point(827, 355);
     this.lcApproval.MaxSize = new System.Drawing.Size(146, 26);
     this.lcApproval.MinSize = new System.Drawing.Size(146, 26);
     this.lcApproval.Name = "lcApproval";
     this.lcApproval.Size = new System.Drawing.Size(146, 26);
     this.lcApproval.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.lcApproval.Text = "lcApproval";
     this.lcApproval.TextSize = new System.Drawing.Size(0, 0);
     this.lcApproval.TextToControlDistance = 0;
     this.lcApproval.TextVisible = false;
     this.lcApproval.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // lcDispatchConfirm
     //
     this.lcDispatchConfirm.Control = this.btnConfirmIssue1;
     this.lcDispatchConfirm.CustomizationFormText = "layoutControlItem43";
     this.lcDispatchConfirm.Location = new System.Drawing.Point(535, 355);
     this.lcDispatchConfirm.MaxSize = new System.Drawing.Size(146, 26);
     this.lcDispatchConfirm.MinSize = new System.Drawing.Size(146, 26);
     this.lcDispatchConfirm.Name = "lcDispatchConfirm";
     this.lcDispatchConfirm.Size = new System.Drawing.Size(146, 26);
     this.lcDispatchConfirm.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.lcDispatchConfirm.Text = "lcDispatchConfirm";
     this.lcDispatchConfirm.TextSize = new System.Drawing.Size(0, 0);
     this.lcDispatchConfirm.TextToControlDistance = 0;
     this.lcDispatchConfirm.TextVisible = false;
     this.lcDispatchConfirm.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // 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;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.txtSTVInvoiceNo;
     this.layoutControlItem11.CustomizationFormText = "layoutControlItem25";
     this.layoutControlItem11.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem11.MinSize = new System.Drawing.Size(171, 24);
     this.layoutControlItem11.Name = "layoutControlItem25";
     this.layoutControlItem11.Size = new System.Drawing.Size(314, 24);
     this.layoutControlItem11.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem11.Text = "STV/Invoice No:";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(112, 13);
     this.layoutControlItem11.TextToControlDistance = 5;
     //
     // LastVisitlayout
     //
     this.LastVisitlayout.CustomizationFormText = "                   Last Visit:";
     this.LastVisitlayout.Location = new System.Drawing.Point(977, 0);
     this.LastVisitlayout.Name = "LastVisitlayout";
     this.LastVisitlayout.Size = new System.Drawing.Size(138, 20);
     this.LastVisitlayout.Text = "                   Last Visit:";
     this.LastVisitlayout.TextSize = new System.Drawing.Size(120, 13);
     this.LastVisitlayout.TextToControlDistance = 5;
     //
     // NoRequisitionlayout
     //
     this.NoRequisitionlayout.CustomizationFormText = "        No of Requistion:";
     this.NoRequisitionlayout.Location = new System.Drawing.Point(839, 0);
     this.NoRequisitionlayout.Name = "NoRequisitionlayout";
     this.NoRequisitionlayout.Size = new System.Drawing.Size(138, 20);
     this.NoRequisitionlayout.Text = "        No of Requistion:";
     this.NoRequisitionlayout.TextSize = new System.Drawing.Size(120, 13);
     this.NoRequisitionlayout.TextToControlDistance = 5;
     //
     // layoutControlItem41
     //
     this.layoutControlItem41.CustomizationFormText = "        No of Requistion:";
     this.layoutControlItem41.Location = new System.Drawing.Point(839, 0);
     this.layoutControlItem41.Name = "NoRequisitionlayout";
     this.layoutControlItem41.Size = new System.Drawing.Size(138, 20);
     this.layoutControlItem41.Text = "        No of Requistion:";
     this.layoutControlItem41.TextSize = new System.Drawing.Size(120, 13);
     this.layoutControlItem41.TextToControlDistance = 5;
     //
     // layoutControlItem42
     //
     this.layoutControlItem42.Control = this.lblMode;
     this.layoutControlItem42.CustomizationFormText = "                   Last Visit:";
     this.layoutControlItem42.Location = new System.Drawing.Point(977, 0);
     this.layoutControlItem42.Name = "LastVisitlayout";
     this.layoutControlItem42.Size = new System.Drawing.Size(138, 20);
     this.layoutControlItem42.Text = "                   Last Visit:";
     this.layoutControlItem42.TextSize = new System.Drawing.Size(120, 13);
     this.layoutControlItem42.TextToControlDistance = 5;
     //
     // layoutControlItem34
     //
     this.layoutControlItem34.Control = this.lblRegion;
     this.layoutControlItem34.CustomizationFormText = "                   Last Visit:";
     this.layoutControlItem34.Location = new System.Drawing.Point(977, 0);
     this.layoutControlItem34.Name = "LastVisitlayout";
     this.layoutControlItem34.Size = new System.Drawing.Size(138, 20);
     this.layoutControlItem34.Text = "                   Last Visit:";
     this.layoutControlItem34.TextSize = new System.Drawing.Size(120, 13);
     this.layoutControlItem34.TextToControlDistance = 5;
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.Control = this.lblZone;
     this.layoutControlItem13.CustomizationFormText = "                   Last Visit:";
     this.layoutControlItem13.Location = new System.Drawing.Point(977, 0);
     this.layoutControlItem13.Name = "LastVisitlayout";
     this.layoutControlItem13.Size = new System.Drawing.Size(138, 20);
     this.layoutControlItem13.Text = "                   Last Visit:";
     this.layoutControlItem13.TextSize = new System.Drawing.Size(120, 13);
     this.layoutControlItem13.TextToControlDistance = 5;
     //
     // layoutControlItem15
     //
     this.layoutControlItem15.Control = this.lblWoreda;
     this.layoutControlItem15.CustomizationFormText = "                   Last Visit:";
     this.layoutControlItem15.Location = new System.Drawing.Point(977, 0);
     this.layoutControlItem15.Name = "LastVisitlayout";
     this.layoutControlItem15.Size = new System.Drawing.Size(138, 20);
     this.layoutControlItem15.Text = "                   Last Visit:";
     this.layoutControlItem15.TextSize = new System.Drawing.Size(120, 13);
     this.layoutControlItem15.TextToControlDistance = 5;
     //
     // layoutControlItem17
     //
     this.layoutControlItem17.Control = this.lblSTVNo;
     this.layoutControlItem17.CustomizationFormText = "                   Last Visit:";
     this.layoutControlItem17.Location = new System.Drawing.Point(977, 0);
     this.layoutControlItem17.Name = "LastVisitlayout";
     this.layoutControlItem17.Size = new System.Drawing.Size(138, 20);
     this.layoutControlItem17.Text = "                   Last Visit:";
     this.layoutControlItem17.TextSize = new System.Drawing.Size(120, 13);
     this.layoutControlItem17.TextToControlDistance = 5;
     //
     // layoutControlItem23
     //
     this.layoutControlItem23.Control = this.lblSTVPrintedBy;
     this.layoutControlItem23.CustomizationFormText = "Mode:";
     this.layoutControlItem23.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem23.Name = "layoutControlItem43";
     this.layoutControlItem23.Size = new System.Drawing.Size(825, 20);
     this.layoutControlItem23.Text = "Mode:";
     this.layoutControlItem23.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem23.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem23.TextToControlDistance = 5;
     //
     // layoutControlItem24
     //
     this.layoutControlItem24.Control = this.lblDispatchConfirmedBy;
     this.layoutControlItem24.CustomizationFormText = "Mode:";
     this.layoutControlItem24.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem24.Name = "layoutControlItem43";
     this.layoutControlItem24.Size = new System.Drawing.Size(825, 20);
     this.layoutControlItem24.Text = "Mode:";
     this.layoutControlItem24.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem24.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem24.TextToControlDistance = 5;
     //
     // layoutControlItem36
     //
     this.layoutControlItem36.Control = this.lblAccount;
     this.layoutControlItem36.CustomizationFormText = "Region:";
     this.layoutControlItem36.Location = new System.Drawing.Point(0, 40);
     this.layoutControlItem36.MinSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem36.Name = "layoutControlItem37";
     this.layoutControlItem36.Size = new System.Drawing.Size(274, 20);
     this.layoutControlItem36.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem36.Text = "Region:";
     this.layoutControlItem36.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem36.TextSize = new System.Drawing.Size(37, 13);
     this.layoutControlItem36.TextToControlDistance = 5;
     //
     // layoutControlItem39
     //
     this.layoutControlItem39.Control = this.lblSubAccount;
     this.layoutControlItem39.CustomizationFormText = "Region:";
     this.layoutControlItem39.Location = new System.Drawing.Point(0, 40);
     this.layoutControlItem39.MinSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem39.Name = "layoutControlItem37";
     this.layoutControlItem39.Size = new System.Drawing.Size(274, 20);
     this.layoutControlItem39.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem39.Text = "Region:";
     this.layoutControlItem39.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem39.TextSize = new System.Drawing.Size(37, 13);
     this.layoutControlItem39.TextToControlDistance = 5;
     //
     // layoutControlItem44
     //
     this.layoutControlItem44.Control = this.lblActivity;
     this.layoutControlItem44.CustomizationFormText = "Region:";
     this.layoutControlItem44.Location = new System.Drawing.Point(0, 40);
     this.layoutControlItem44.MinSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem44.Name = "layoutControlItem37";
     this.layoutControlItem44.Size = new System.Drawing.Size(274, 20);
     this.layoutControlItem44.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem44.Text = "Region:";
     this.layoutControlItem44.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem44.TextSize = new System.Drawing.Size(37, 13);
     this.layoutControlItem44.TextToControlDistance = 5;
     //
     // layoutControlItem46
     //
     this.layoutControlItem46.Control = this.lblSTVDate;
     this.layoutControlItem46.CustomizationFormText = "Region:";
     this.layoutControlItem46.Location = new System.Drawing.Point(0, 40);
     this.layoutControlItem46.MinSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem46.Name = "layoutControlItem37";
     this.layoutControlItem46.Size = new System.Drawing.Size(274, 20);
     this.layoutControlItem46.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem46.Text = "Region:";
     this.layoutControlItem46.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem46.TextSize = new System.Drawing.Size(37, 13);
     this.layoutControlItem46.TextToControlDistance = 5;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.lblInstitutionType;
     this.layoutControlItem9.CustomizationFormText = "Mode:";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem9.MaxSize = new System.Drawing.Size(196, 20);
     this.layoutControlItem9.MinSize = new System.Drawing.Size(196, 20);
     this.layoutControlItem9.Name = "layoutControlItem43";
     this.layoutControlItem9.Size = new System.Drawing.Size(196, 20);
     this.layoutControlItem9.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem9.Text = "Mode:";
     this.layoutControlItem9.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem9.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem9.TextToControlDistance = 5;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(560, 186);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(3, 13);
     this.labelControl2.StyleController = this.layoutControl3;
     this.labelControl2.TabIndex = 81;
     this.labelControl2.Text = " ";
     //
     // layoutControlItem28
     //
     this.layoutControlItem28.Control = this.labelControl2;
     this.layoutControlItem28.CustomizationFormText = "Mode:";
     this.layoutControlItem28.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem28.MaxSize = new System.Drawing.Size(196, 20);
     this.layoutControlItem28.MinSize = new System.Drawing.Size(196, 20);
     this.layoutControlItem28.Name = "layoutControlItem43";
     this.layoutControlItem28.Size = new System.Drawing.Size(196, 20);
     this.layoutControlItem28.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem28.Text = "Mode:";
     this.layoutControlItem28.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem28.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem28.TextToControlDistance = 5;
     //
     // layoutControlItem29
     //
     this.layoutControlItem29.Control = this.lblPaymentType;
     this.layoutControlItem29.CustomizationFormText = "Mode:";
     this.layoutControlItem29.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem29.MaxSize = new System.Drawing.Size(196, 20);
     this.layoutControlItem29.MinSize = new System.Drawing.Size(196, 20);
     this.layoutControlItem29.Name = "layoutControlItem43";
     this.layoutControlItem29.Size = new System.Drawing.Size(196, 20);
     this.layoutControlItem29.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem29.Text = "Mode:";
     this.layoutControlItem29.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem29.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem29.TextToControlDistance = 5;
     //
     // layoutControlItem35
     //
     this.layoutControlItem35.Control = this.lblOwnership;
     this.layoutControlItem35.CustomizationFormText = "Mode:";
     this.layoutControlItem35.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem35.MaxSize = new System.Drawing.Size(196, 20);
     this.layoutControlItem35.MinSize = new System.Drawing.Size(196, 20);
     this.layoutControlItem35.Name = "layoutControlItem43";
     this.layoutControlItem35.Size = new System.Drawing.Size(196, 20);
     this.layoutControlItem35.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem35.Text = "Mode:";
     this.layoutControlItem35.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem35.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem35.TextToControlDistance = 5;
     //
     // layoutControlItem32
     //
     this.layoutControlItem32.Control = this.lblDocumentedType;
     this.layoutControlItem32.CustomizationFormText = "Region:";
     this.layoutControlItem32.Location = new System.Drawing.Point(422, 40);
     this.layoutControlItem32.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem32.MinSize = new System.Drawing.Size(75, 20);
     this.layoutControlItem32.Name = "layoutControlItem37";
     this.layoutControlItem32.Size = new System.Drawing.Size(404, 20);
     this.layoutControlItem32.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem32.Text = "Region:";
     this.layoutControlItem32.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem32.TextSize = new System.Drawing.Size(37, 13);
     this.layoutControlItem32.TextToControlDistance = 31;
     //
     // layoutControlItem48
     //
     this.layoutControlItem48.Control = this.lblVoidRequestedBy;
     this.layoutControlItem48.CustomizationFormText = "STV Date:";
     this.layoutControlItem48.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem48.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem48.MinSize = new System.Drawing.Size(89, 20);
     this.layoutControlItem48.Name = "layoutControlItem47";
     this.layoutControlItem48.Size = new System.Drawing.Size(198, 20);
     this.layoutControlItem48.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem48.Text = "STV Date:";
     this.layoutControlItem48.TextSize = new System.Drawing.Size(79, 13);
     this.layoutControlItem48.TextToControlDistance = 5;
     //
     // layoutControlItem51
     //
     this.layoutControlItem51.Control = this.lblRequistedDate;
     this.layoutControlItem51.CustomizationFormText = "STV Date:";
     this.layoutControlItem51.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem51.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem51.MinSize = new System.Drawing.Size(89, 20);
     this.layoutControlItem51.Name = "layoutControlItem47";
     this.layoutControlItem51.Size = new System.Drawing.Size(198, 20);
     this.layoutControlItem51.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem51.Text = "STV Date:";
     this.layoutControlItem51.TextSize = new System.Drawing.Size(79, 13);
     this.layoutControlItem51.TextToControlDistance = 5;
     //
     // layoutControlItem53
     //
     this.layoutControlItem53.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem53.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem53.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem53.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem53.Control = this.lblIssueType;
     this.layoutControlItem53.CustomizationFormText = "Type:";
     this.layoutControlItem53.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem53.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem53.MinSize = new System.Drawing.Size(59, 20);
     this.layoutControlItem53.Name = "layoutControlItem10";
     this.layoutControlItem53.Size = new System.Drawing.Size(206, 20);
     this.layoutControlItem53.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem53.Text = "Type:";
     this.layoutControlItem53.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem53.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem53.TextToControlDistance = 21;
     //
     // layoutControlItem55
     //
     this.layoutControlItem55.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem55.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem55.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem55.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem55.Control = this.lblIssueStatus;
     this.layoutControlItem55.CustomizationFormText = "Type:";
     this.layoutControlItem55.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem55.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem55.MinSize = new System.Drawing.Size(59, 20);
     this.layoutControlItem55.Name = "layoutControlItem10";
     this.layoutControlItem55.Size = new System.Drawing.Size(206, 20);
     this.layoutControlItem55.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem55.Text = "Type:";
     this.layoutControlItem55.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem55.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem55.TextToControlDistance = 21;
     //
     // layoutControlItem57
     //
     this.layoutControlItem57.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem57.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem57.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem57.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem57.Control = this.lblDispatchedDate;
     this.layoutControlItem57.CustomizationFormText = "Dispatch By:";
     this.layoutControlItem57.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem57.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem57.MinSize = new System.Drawing.Size(124, 20);
     this.layoutControlItem57.Name = "layoutControlItem27";
     this.layoutControlItem57.Size = new System.Drawing.Size(211, 40);
     this.layoutControlItem57.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem57.Text = "Dispatched By:";
     this.layoutControlItem57.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem57.TextSize = new System.Drawing.Size(83, 13);
     this.layoutControlItem57.TextToControlDistance = 5;
     //
     // layoutControlItem59
     //
     this.layoutControlItem59.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem59.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem59.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem59.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem59.Control = this.lblVoidConfirmedDate;
     this.layoutControlItem59.CustomizationFormText = "Date:";
     this.layoutControlItem59.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem59.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem59.MinSize = new System.Drawing.Size(113, 20);
     this.layoutControlItem59.Name = "layoutControlItem47";
     this.layoutControlItem59.Size = new System.Drawing.Size(198, 20);
     this.layoutControlItem59.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem59.Text = "Printed Date:";
     this.layoutControlItem59.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem59.TextSize = new System.Drawing.Size(74, 13);
     this.layoutControlItem59.TextToControlDistance = 5;
     //
     // layoutControlItem61
     //
     this.layoutControlItem61.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem61.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem61.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem61.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem61.Control = this.lblVoidConfirmedBy;
     this.layoutControlItem61.CustomizationFormText = "Date:";
     this.layoutControlItem61.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem61.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem61.MinSize = new System.Drawing.Size(113, 20);
     this.layoutControlItem61.Name = "layoutControlItem47";
     this.layoutControlItem61.Size = new System.Drawing.Size(198, 20);
     this.layoutControlItem61.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem61.Text = "Printed Date:";
     this.layoutControlItem61.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem61.TextSize = new System.Drawing.Size(74, 13);
     this.layoutControlItem61.TextToControlDistance = 5;
     //
     // DispatchConfirmation
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1123, 385);
     this.Controls.Add(this.labelControl2);
     this.Controls.Add(this.layoutControl3);
     this.Name = "DispatchConfirmation";
     this.Text = "Order";
     this.Load += new System.EventHandler(this.OrderForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((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.tEditSTVNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkAccount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPreprintedInvoiceNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFacilityNameFilter.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridUndispatchedIssues)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridUndispatchedIssuesView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmFromStore.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSTVInvoiceNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridUndispatchedIssueDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewUndispatchedIssueDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIssuedBy.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.layoutControlItem21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem58)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.FacilityGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem43)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem45)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem33)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem47)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem60)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem62)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem54)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem56)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem49)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem52)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem50)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcRequestVoid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcApprovalCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcApproval)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcDispatchConfirm)).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();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastVisitlayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoRequisitionlayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem41)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem42)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem34)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem44)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem46)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem48)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem51)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem53)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem55)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem57)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem59)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem61)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 35
0
 private void InitializeComponent()
 {
     ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmNYDHJ));
     this.btnReset = new Button();
     this.btnSearch = new Button();
     this.panelcondition = new Panel();
     this.pan3 = new Panel();
     this.gridlokYXCF3 = new GridLookUpEdit();
     this.gridView3 = new GridView();
     this.gridColumn21 = new GridColumn();
     this.label6 = new Label();
     this.txtHL3 = new TextBox();
     this.cboUnit3 = new System.Windows.Forms.ComboBox();
     this.label5 = new Label();
     this.pan1 = new Panel();
     this.gridlokYXCF1 = new GridLookUpEdit();
     this.gridLookUpEdit1View = new GridView();
     this.gridColumn17 = new GridColumn();
     this.label1 = new Label();
     this.txtHL1 = new TextBox();
     this.cboUnit1 = new System.Windows.Forms.ComboBox();
     this.label2 = new Label();
     this.radYY = new RadioButton();
     this.pan2 = new Panel();
     this.gridlokYXCF2 = new GridLookUpEdit();
     this.gridView2 = new GridView();
     this.gridColumn20 = new GridColumn();
     this.label4 = new Label();
     this.txtHL2 = new TextBox();
     this.cboUnit2 = new System.Windows.Forms.ComboBox();
     this.label3 = new Label();
     this.lblCount = new Label();
     this.radHJ = new RadioButton();
     this.radDJ = new RadioButton();
     this.radAll = new RadioButton();
     this.panYY = new Panel();
     this.gridlokYXCF = new GridLookUpEdit();
     this.gridView4 = new GridView();
     this.gridColumn22 = new GridColumn();
     this.label8 = new Label();
     this.cboYYZL = new System.Windows.Forms.ComboBox();
     this.label7 = new Label();
     this.paneldata = new Panel();
     this.gridControl1 = new GridControl();
     this.gridView1 = new GridView();
     this.gridColumn1 = new GridColumn();
     this.gridColumn2 = new GridColumn();
     this.gridColumn3 = new GridColumn();
     this.gridColumn4 = new GridColumn();
     this.gridColumn5 = new GridColumn();
     this.gridColumn6 = new GridColumn();
     this.gridColumn7 = new GridColumn();
     this.gridColumn8 = new GridColumn();
     this.gridColumn9 = new GridColumn();
     this.gridColumn10 = new GridColumn();
     this.gridColumn11 = new GridColumn();
     this.gridColumn12 = new GridColumn();
     this.gridColumn13 = new GridColumn();
     this.gridColumn14 = new GridColumn();
     this.gridColumn15 = new GridColumn();
     this.panelmenu = new Panel();
     this.userManu1 = new UserManu();
     this.paneltop_right = new Panel();
     this.paneltop_middle = new Panel();
     this.paneltop_left = new Panel();
     this.paneltitle_right = new Panel();
     this.pictureBox3 = new PictureBox();
     this.pictureBox2 = new PictureBox();
     this.pictureBox1 = new PictureBox();
     this.paneltitle_middle = new Panel();
     this.paneltitle_left = new Panel();
     this.panelright = new Panel();
     this.panelwhite = new Panel();
     this.panelbutton = new Panel();
     this.pictureBox_sum = new PictureBox();
     this.pictureBox_view = new PictureBox();
     this.pictureBox_sort = new PictureBox();
     this.pictureBox_filter = new PictureBox();
     this.paneldatasum = new Panel();
     this.labeldatacount = new Label();
     this.pictureBox_right = new PictureBox();
     this.panel_middle = new Panel();
     this.label9 = new Label();
     this.pictureBox_left = new PictureBox();
     this.gridColumn16 = new GridColumn();
     this.gridColumn18 = new GridColumn();
     this.gridColumn19 = new GridColumn();
     this.panelcondition.SuspendLayout();
     this.pan3.SuspendLayout();
     ((ISupportInitialize)this.gridlokYXCF3.Properties).BeginInit();
     ((ISupportInitialize)this.gridView3).BeginInit();
     this.pan1.SuspendLayout();
     ((ISupportInitialize)this.gridlokYXCF1.Properties).BeginInit();
     ((ISupportInitialize)this.gridLookUpEdit1View).BeginInit();
     this.pan2.SuspendLayout();
     ((ISupportInitialize)this.gridlokYXCF2.Properties).BeginInit();
     ((ISupportInitialize)this.gridView2).BeginInit();
     this.panYY.SuspendLayout();
     ((ISupportInitialize)this.gridlokYXCF.Properties).BeginInit();
     ((ISupportInitialize)this.gridView4).BeginInit();
     this.paneldata.SuspendLayout();
     ((ISupportInitialize)this.gridControl1).BeginInit();
     ((ISupportInitialize)this.gridView1).BeginInit();
     this.panelmenu.SuspendLayout();
     this.paneltitle_right.SuspendLayout();
     ((ISupportInitialize)this.pictureBox3).BeginInit();
     ((ISupportInitialize)this.pictureBox2).BeginInit();
     ((ISupportInitialize)this.pictureBox1).BeginInit();
     this.panelright.SuspendLayout();
     this.panelwhite.SuspendLayout();
     this.panelbutton.SuspendLayout();
     ((ISupportInitialize)this.pictureBox_sum).BeginInit();
     ((ISupportInitialize)this.pictureBox_view).BeginInit();
     ((ISupportInitialize)this.pictureBox_sort).BeginInit();
     ((ISupportInitialize)this.pictureBox_filter).BeginInit();
     this.paneldatasum.SuspendLayout();
     ((ISupportInitialize)this.pictureBox_right).BeginInit();
     this.panel_middle.SuspendLayout();
     ((ISupportInitialize)this.pictureBox_left).BeginInit();
     base.SuspendLayout();
     this.btnReset.Location = new Point(97, 84);
     this.btnReset.Name = "btnReset";
     this.btnReset.Size = new Size(45, 23);
     this.btnReset.TabIndex = 12;
     this.btnReset.Text = "重置";
     this.btnReset.UseVisualStyleBackColor = true;
     this.btnReset.Click += new EventHandler(this.btnReset_Click);
     this.btnSearch.Location = new Point(22, 84);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new Size(45, 23);
     this.btnSearch.TabIndex = 11;
     this.btnSearch.Text = "查询";
     this.btnSearch.UseVisualStyleBackColor = true;
     this.btnSearch.Click += new EventHandler(this.btnSearch_Click);
     this.panelcondition.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right);
     this.panelcondition.Controls.Add(this.pan3);
     this.panelcondition.Controls.Add(this.pan1);
     this.panelcondition.Controls.Add(this.radYY);
     this.panelcondition.Controls.Add(this.pan2);
     this.panelcondition.Controls.Add(this.btnReset);
     this.panelcondition.Controls.Add(this.btnSearch);
     this.panelcondition.Controls.Add(this.lblCount);
     this.panelcondition.Controls.Add(this.radHJ);
     this.panelcondition.Controls.Add(this.radDJ);
     this.panelcondition.Controls.Add(this.radAll);
     this.panelcondition.Controls.Add(this.panYY);
     this.panelcondition.Location = new Point(16, 37);
     this.panelcondition.Name = "panelcondition";
     this.panelcondition.Size = new Size(603, 114);
     this.panelcondition.TabIndex = 18;
     this.pan3.BackColor = Color.Transparent;
     this.pan3.Controls.Add(this.gridlokYXCF3);
     this.pan3.Controls.Add(this.label6);
     this.pan3.Controls.Add(this.txtHL3);
     this.pan3.Controls.Add(this.cboUnit3);
     this.pan3.Controls.Add(this.label5);
     this.pan3.Location = new Point(9, 41);
     this.pan3.Name = "pan3";
     this.pan3.Size = new Size(340, 26);
     this.pan3.TabIndex = 21;
     this.gridlokYXCF3.Location = new Point(69, 2);
     this.gridlokYXCF3.Name = "gridlokYXCF3";
     this.gridlokYXCF3.Properties.Buttons.AddRange(new EditorButton[]
     {
         new EditorButton(ButtonPredefines.Combo)
     });
     this.gridlokYXCF3.Properties.NullText = "";
     this.gridlokYXCF3.Properties.View = this.gridView3;
     this.gridlokYXCF3.Size = new Size(96, 21);
     this.gridlokYXCF3.TabIndex = 25;
     this.gridlokYXCF3.ProcessNewValue += new ProcessNewValueEventHandler(this.gridlokYXCF1_ProcessNewValue);
     this.gridView3.Columns.AddRange(new GridColumn[]
     {
         this.gridColumn21
     });
     this.gridView3.FocusRectStyle = DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     this.gridColumn21.Caption = "有效成分";
     this.gridColumn21.FieldName = "YXCF";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 0;
     this.label6.AutoSize = true;
     this.label6.BackColor = Color.Transparent;
     this.label6.Location = new Point(1, 5);
     this.label6.Name = "label6";
     this.label6.Size = new Size(70, 14);
     this.label6.TabIndex = 2;
     this.label6.Text = "有效成分3";
     this.txtHL3.Location = new Point(202, 1);
     this.txtHL3.Name = "txtHL3";
     this.txtHL3.Size = new Size(58, 23);
     this.txtHL3.TabIndex = 17;
     this.cboUnit3.DropDownWidth = 78;
     this.cboUnit3.FormattingEnabled = true;
     this.cboUnit3.Items.AddRange(new object[]
     {
         "%",
         "克/升",
         "毫克/片"
     });
     this.cboUnit3.Location = new Point(263, 2);
     this.cboUnit3.Name = "cboUnit3";
     this.cboUnit3.Size = new Size(75, 21);
     this.cboUnit3.TabIndex = 8;
     this.label5.AutoSize = true;
     this.label5.BackColor = Color.Transparent;
     this.label5.Location = new Point(164, 5);
     this.label5.Name = "label5";
     this.label5.Size = new Size(35, 14);
     this.label5.TabIndex = 18;
     this.label5.Text = "含量";
     this.pan1.BackColor = Color.Transparent;
     this.pan1.Controls.Add(this.gridlokYXCF1);
     this.pan1.Controls.Add(this.label1);
     this.pan1.Controls.Add(this.txtHL1);
     this.pan1.Controls.Add(this.cboUnit1);
     this.pan1.Controls.Add(this.label2);
     this.pan1.Location = new Point(9, 8);
     this.pan1.Name = "pan1";
     this.pan1.Size = new Size(342, 26);
     this.pan1.TabIndex = 19;
     this.gridlokYXCF1.EditValue = "";
     this.gridlokYXCF1.Location = new Point(69, 4);
     this.gridlokYXCF1.Name = "gridlokYXCF1";
     this.gridlokYXCF1.Properties.Buttons.AddRange(new EditorButton[]
     {
         new EditorButton(ButtonPredefines.Combo)
     });
     this.gridlokYXCF1.Properties.NullText = "";
     this.gridlokYXCF1.Properties.TextEditStyle = TextEditStyles.Standard;
     this.gridlokYXCF1.Properties.View = this.gridLookUpEdit1View;
     this.gridlokYXCF1.Size = new Size(96, 21);
     this.gridlokYXCF1.TabIndex = 24;
     this.gridlokYXCF1.ProcessNewValue += new ProcessNewValueEventHandler(this.gridlokYXCF1_ProcessNewValue);
     this.gridLookUpEdit1View.Columns.AddRange(new GridColumn[]
     {
         this.gridColumn17
     });
     this.gridLookUpEdit1View.FocusRectStyle = DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     this.gridColumn17.Caption = "有效成分";
     this.gridColumn17.FieldName = "YXCF";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 0;
     this.label1.AutoSize = true;
     this.label1.BackColor = Color.Transparent;
     this.label1.Location = new Point(1, 7);
     this.label1.Name = "label1";
     this.label1.Size = new Size(70, 14);
     this.label1.TabIndex = 2;
     this.label1.Text = "有效成分1";
     this.txtHL1.Location = new Point(202, 3);
     this.txtHL1.Name = "txtHL1";
     this.txtHL1.Size = new Size(58, 23);
     this.txtHL1.TabIndex = 17;
     this.cboUnit1.DropDownWidth = 78;
     this.cboUnit1.FormattingEnabled = true;
     this.cboUnit1.Items.AddRange(new object[]
     {
         "%",
         "克/升",
         "毫克/片"
     });
     this.cboUnit1.Location = new Point(263, 4);
     this.cboUnit1.Name = "cboUnit1";
     this.cboUnit1.Size = new Size(75, 21);
     this.cboUnit1.TabIndex = 8;
     this.label2.AutoSize = true;
     this.label2.BackColor = Color.Transparent;
     this.label2.Location = new Point(164, 7);
     this.label2.Name = "label2";
     this.label2.Size = new Size(35, 14);
     this.label2.TabIndex = 18;
     this.label2.Text = "含量";
     this.radYY.AutoSize = true;
     this.radYY.BackColor = Color.Transparent;
     this.radYY.Location = new Point(556, 45);
     this.radYY.Name = "radYY";
     this.radYY.Size = new Size(53, 18);
     this.radYY.TabIndex = 16;
     this.radYY.Text = "原药";
     this.radYY.UseVisualStyleBackColor = false;
     this.radYY.Click += new EventHandler(this.radYY_Click);
     this.pan2.BackColor = Color.Transparent;
     this.pan2.Controls.Add(this.gridlokYXCF2);
     this.pan2.Controls.Add(this.label4);
     this.pan2.Controls.Add(this.txtHL2);
     this.pan2.Controls.Add(this.cboUnit2);
     this.pan2.Controls.Add(this.label3);
     this.pan2.Location = new Point(369, 8);
     this.pan2.Name = "pan2";
     this.pan2.Size = new Size(342, 26);
     this.pan2.TabIndex = 20;
     this.gridlokYXCF2.Location = new Point(70, 2);
     this.gridlokYXCF2.Name = "gridlokYXCF2";
     this.gridlokYXCF2.Properties.Buttons.AddRange(new EditorButton[]
     {
         new EditorButton(ButtonPredefines.Combo)
     });
     this.gridlokYXCF2.Properties.NullText = "";
     this.gridlokYXCF2.Properties.View = this.gridView2;
     this.gridlokYXCF2.Size = new Size(96, 21);
     this.gridlokYXCF2.TabIndex = 25;
     this.gridlokYXCF2.ProcessNewValue += new ProcessNewValueEventHandler(this.gridlokYXCF1_ProcessNewValue);
     this.gridView2.Columns.AddRange(new GridColumn[]
     {
         this.gridColumn20
     });
     this.gridView2.FocusRectStyle = DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     this.gridColumn20.Caption = "有效成分";
     this.gridColumn20.FieldName = "YXCF";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 0;
     this.label4.AutoSize = true;
     this.label4.BackColor = Color.Transparent;
     this.label4.Location = new Point(1, 5);
     this.label4.Name = "label4";
     this.label4.Size = new Size(70, 14);
     this.label4.TabIndex = 2;
     this.label4.Text = "有效成分2";
     this.txtHL2.Location = new Point(202, 2);
     this.txtHL2.Name = "txtHL2";
     this.txtHL2.Size = new Size(58, 23);
     this.txtHL2.TabIndex = 17;
     this.cboUnit2.DropDownWidth = 78;
     this.cboUnit2.FormattingEnabled = true;
     this.cboUnit2.Items.AddRange(new object[]
     {
         "%",
         "克/升",
         "毫克/片"
     });
     this.cboUnit2.Location = new Point(263, 2);
     this.cboUnit2.Name = "cboUnit2";
     this.cboUnit2.Size = new Size(75, 21);
     this.cboUnit2.TabIndex = 8;
     this.label3.AutoSize = true;
     this.label3.BackColor = Color.Transparent;
     this.label3.Location = new Point(164, 7);
     this.label3.Name = "label3";
     this.label3.Size = new Size(35, 14);
     this.label3.TabIndex = 18;
     this.label3.Text = "含量";
     this.lblCount.AutoSize = true;
     this.lblCount.BackColor = Color.Transparent;
     this.lblCount.Location = new Point(293, 59);
     this.lblCount.Name = "lblCount";
     this.lblCount.Size = new Size(0, 14);
     this.lblCount.TabIndex = 14;
     this.radHJ.AutoSize = true;
     this.radHJ.BackColor = Color.Transparent;
     this.radHJ.Location = new Point(503, 45);
     this.radHJ.Name = "radHJ";
     this.radHJ.Size = new Size(53, 18);
     this.radHJ.TabIndex = 11;
     this.radHJ.Text = "混剂";
     this.radHJ.UseVisualStyleBackColor = false;
     this.radHJ.Click += new EventHandler(this.radHJ_Click);
     this.radDJ.AutoSize = true;
     this.radDJ.BackColor = Color.Transparent;
     this.radDJ.Location = new Point(444, 45);
     this.radDJ.Name = "radDJ";
     this.radDJ.Size = new Size(53, 18);
     this.radDJ.TabIndex = 10;
     this.radDJ.Text = "单剂";
     this.radDJ.UseVisualStyleBackColor = false;
     this.radDJ.Click += new EventHandler(this.radDJ_Click);
     this.radAll.AutoSize = true;
     this.radAll.BackColor = Color.Transparent;
     this.radAll.Checked = true;
     this.radAll.Location = new Point(385, 45);
     this.radAll.Name = "radAll";
     this.radAll.Size = new Size(53, 18);
     this.radAll.TabIndex = 9;
     this.radAll.TabStop = true;
     this.radAll.Text = "全部";
     this.radAll.UseVisualStyleBackColor = false;
     this.radAll.Click += new EventHandler(this.radHJ_Click);
     this.panYY.BackColor = Color.Transparent;
     this.panYY.Controls.Add(this.gridlokYXCF);
     this.panYY.Controls.Add(this.label8);
     this.panYY.Controls.Add(this.cboYYZL);
     this.panYY.Controls.Add(this.label7);
     this.panYY.Location = new Point(9, 76);
     this.panYY.Name = "panYY";
     this.panYY.Size = new Size(342, 26);
     this.panYY.TabIndex = 23;
     this.panYY.Visible = false;
     this.gridlokYXCF.AllowDrop = true;
     this.gridlokYXCF.Location = new Point(69, 4);
     this.gridlokYXCF.Name = "gridlokYXCF";
     this.gridlokYXCF.Properties.Buttons.AddRange(new EditorButton[]
     {
         new EditorButton(ButtonPredefines.Combo)
     });
     this.gridlokYXCF.Properties.NullText = "";
     this.gridlokYXCF.Properties.View = this.gridView4;
     this.gridlokYXCF.Size = new Size(125, 21);
     this.gridlokYXCF.TabIndex = 25;
     this.gridlokYXCF.ProcessNewValue += new ProcessNewValueEventHandler(this.gridlokYXCF1_ProcessNewValue);
     this.gridView4.Columns.AddRange(new GridColumn[]
     {
         this.gridColumn22
     });
     this.gridView4.FocusRectStyle = DrawFocusRectStyle.RowFocus;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     this.gridColumn22.Caption = "有效成分";
     this.gridColumn22.FieldName = "YXCF";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 0;
     this.label8.AutoSize = true;
     this.label8.BackColor = Color.Transparent;
     this.label8.Location = new Point(1, 7);
     this.label8.Name = "label8";
     this.label8.Size = new Size(63, 14);
     this.label8.TabIndex = 2;
     this.label8.Text = "有效成分";
     this.cboYYZL.FormattingEnabled = true;
     this.cboYYZL.Items.AddRange(new object[]
     {
         "母粉",
         "母药",
         "母液",
         "原粉",
         "原药"
     });
     this.cboYYZL.Location = new Point(263, 4);
     this.cboYYZL.Name = "cboYYZL";
     this.cboYYZL.Size = new Size(75, 21);
     this.cboYYZL.TabIndex = 8;
     this.label7.AutoSize = true;
     this.label7.BackColor = Color.Transparent;
     this.label7.Location = new Point(195, 7);
     this.label7.Name = "label7";
     this.label7.Size = new Size(63, 14);
     this.label7.TabIndex = 18;
     this.label7.Text = "原药种类";
     this.paneldata.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right);
     this.paneldata.Controls.Add(this.gridControl1);
     this.paneldata.Location = new Point(95, 131);
     this.paneldata.Name = "paneldata";
     this.paneldata.Size = new Size(89, 48);
     this.paneldata.TabIndex = 24;
     this.gridControl1.Dock = DockStyle.Fill;
     this.gridControl1.Location = new Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new Size(89, 48);
     this.gridControl1.TabIndex = 10;
     this.gridControl1.ViewCollection.AddRange(new BaseView[]
     {
         this.gridView1
     });
     this.gridView1.Columns.AddRange(new GridColumn[]
     {
         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.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.CustomDrawRowIndicator += new RowIndicatorCustomDrawEventHandler(this.gridView1_CustomDrawRowIndicator);
     this.gridView1.CustomDrawCell += new RowCellCustomDrawEventHandler(this.gridView1_CustomDrawCell);
     this.gridView1.RowCountChanged += new EventHandler(this.gridView1_RowCountChanged);
     this.gridView1.RowCellClick += new RowCellClickEventHandler(this.gridView1_RowCellClick);
     this.gridColumn1.Caption = "gridColumn1";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn2.Caption = "gridColumn2";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn3.Caption = "gridColumn3";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn4.Caption = "gridColumn4";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn5.Caption = "gridColumn5";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn6.Caption = "gridColumn6";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn7.Caption = "gridColumn7";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn8.Caption = "gridColumn8";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 7;
     this.gridColumn9.Caption = "gridColumn9";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 8;
     this.gridColumn10.Caption = "gridColumn10";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 9;
     this.gridColumn11.Caption = "gridColumn11";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 10;
     this.gridColumn12.Caption = "gridColumn12";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 11;
     this.gridColumn13.Caption = "gridColumn13";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 12;
     this.gridColumn14.Caption = "gridColumn14";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 13;
     this.gridColumn15.Caption = "gridColumn15";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 14;
     this.panelmenu.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left);
     this.panelmenu.Controls.Add(this.userManu1);
     this.panelmenu.Location = new Point(0, 134);
     this.panelmenu.Name = "panelmenu";
     this.panelmenu.Size = new Size(178, 452);
     this.panelmenu.TabIndex = 26;
     this.userManu1.BackColor = Color.FromArgb(107, 161, 179);
     this.userManu1.Dock = DockStyle.Fill;
     this.userManu1.Location = new Point(0, 0);
     this.userManu1.Name = "userManu1";
     this.userManu1.Size = new Size(178, 452);
     this.userManu1.TabIndex = 0;
     this.paneltop_right.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.paneltop_right.Location = new Point(429, 36);
     this.paneltop_right.Name = "paneltop_right";
     this.paneltop_right.Size = new Size(407, 25);
     this.paneltop_right.TabIndex = 32;
     this.paneltop_middle.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right);
     this.paneltop_middle.Location = new Point(195, 32);
     this.paneltop_middle.Name = "paneltop_middle";
     this.paneltop_middle.Size = new Size(223, 29);
     this.paneltop_middle.TabIndex = 31;
     this.paneltop_left.Location = new Point(12, 32);
     this.paneltop_left.Name = "paneltop_left";
     this.paneltop_left.Size = new Size(185, 29);
     this.paneltop_left.TabIndex = 30;
     this.paneltitle_right.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.paneltitle_right.Controls.Add(this.pictureBox3);
     this.paneltitle_right.Controls.Add(this.pictureBox2);
     this.paneltitle_right.Controls.Add(this.pictureBox1);
     this.paneltitle_right.Location = new Point(599, 3);
     this.paneltitle_right.Name = "paneltitle_right";
     this.paneltitle_right.Size = new Size(239, 25);
     this.paneltitle_right.TabIndex = 29;
     this.pictureBox3.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.pictureBox3.Image = (Image)componentResourceManager.GetObject("pictureBox3.Image");
     this.pictureBox3.Location = new Point(172, 2);
     this.pictureBox3.Name = "pictureBox3";
     this.pictureBox3.Size = new Size(21, 21);
     this.pictureBox3.SizeMode = PictureBoxSizeMode.AutoSize;
     this.pictureBox3.TabIndex = 23;
     this.pictureBox3.TabStop = false;
     this.pictureBox3.MouseLeave += new EventHandler(this.pictureBox3_MouseLeave);
     this.pictureBox3.Click += new EventHandler(this.pictureBox3_Click);
     this.pictureBox3.MouseEnter += new EventHandler(this.pictureBox3_MouseEnter);
     this.pictureBox2.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.pictureBox2.Image = (Image)componentResourceManager.GetObject("pictureBox2.Image");
     this.pictureBox2.Location = new Point(194, 2);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new Size(21, 21);
     this.pictureBox2.SizeMode = PictureBoxSizeMode.AutoSize;
     this.pictureBox2.TabIndex = 22;
     this.pictureBox2.TabStop = false;
     this.pictureBox2.MouseLeave += new EventHandler(this.pictureBox2_MouseLeave);
     this.pictureBox2.Click += new EventHandler(this.pictureBox2_Click);
     this.pictureBox2.MouseEnter += new EventHandler(this.pictureBox2_MouseEnter);
     this.pictureBox1.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.pictureBox1.Image = (Image)componentResourceManager.GetObject("pictureBox1.Image");
     this.pictureBox1.Location = new Point(216, 2);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new Size(21, 21);
     this.pictureBox1.SizeMode = PictureBoxSizeMode.AutoSize;
     this.pictureBox1.TabIndex = 21;
     this.pictureBox1.TabStop = false;
     this.pictureBox1.MouseLeave += new EventHandler(this.pictureBox1_MouseLeave);
     this.pictureBox1.Click += new EventHandler(this.pictureBox1_Click);
     this.pictureBox1.MouseEnter += new EventHandler(this.pictureBox1_MouseEnter);
     this.paneltitle_middle.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right);
     this.paneltitle_middle.Location = new Point(264, 3);
     this.paneltitle_middle.Name = "paneltitle_middle";
     this.paneltitle_middle.Size = new Size(338, 25);
     this.paneltitle_middle.TabIndex = 28;
     this.paneltitle_middle.MouseMove += new MouseEventHandler(this.paneltitle_middle_MouseMove);
     this.paneltitle_middle.MouseDown += new MouseEventHandler(this.paneltitle_middle_MouseDown);
     this.paneltitle_middle.MouseUp += new MouseEventHandler(this.paneltitle_middle_MouseUp);
     this.paneltitle_left.Location = new Point(0, 3);
     this.paneltitle_left.Name = "paneltitle_left";
     this.paneltitle_left.Size = new Size(264, 25);
     this.paneltitle_left.TabIndex = 27;
     this.panelright.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right);
     this.panelright.Controls.Add(this.panelwhite);
     this.panelright.Controls.Add(this.pictureBox_right);
     this.panelright.Controls.Add(this.panel_middle);
     this.panelright.Controls.Add(this.pictureBox_left);
     this.panelright.Controls.Add(this.panelcondition);
     this.panelright.Location = new Point(214, 85);
     this.panelright.Name = "panelright";
     this.panelright.Size = new Size(628, 492);
     this.panelright.TabIndex = 33;
     this.panelwhite.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right);
     this.panelwhite.Controls.Add(this.panelbutton);
     this.panelwhite.Controls.Add(this.paneldatasum);
     this.panelwhite.Controls.Add(this.paneldata);
     this.panelwhite.Location = new Point(18, 161);
     this.panelwhite.Name = "panelwhite";
     this.panelwhite.Size = new Size(604, 328);
     this.panelwhite.TabIndex = 28;
     this.panelbutton.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right);
     this.panelbutton.Controls.Add(this.pictureBox_sum);
     this.panelbutton.Controls.Add(this.pictureBox_view);
     this.panelbutton.Controls.Add(this.pictureBox_sort);
     this.panelbutton.Controls.Add(this.pictureBox_filter);
     this.panelbutton.Location = new Point(5, 37);
     this.panelbutton.Name = "panelbutton";
     this.panelbutton.Size = new Size(596, 40);
     this.panelbutton.TabIndex = 26;
     this.pictureBox_sum.BackColor = Color.Transparent;
     this.pictureBox_sum.Cursor = Cursors.Hand;
     this.pictureBox_sum.Location = new Point(352, 9);
     this.pictureBox_sum.Name = "pictureBox_sum";
     this.pictureBox_sum.Size = new Size(65, 24);
     this.pictureBox_sum.SizeMode = PictureBoxSizeMode.AutoSize;
     this.pictureBox_sum.TabIndex = 3;
     this.pictureBox_sum.TabStop = false;
     this.pictureBox_sum.Click += new EventHandler(this.pictureBox_sum_Click);
     this.pictureBox_view.BackColor = Color.Transparent;
     this.pictureBox_view.Cursor = Cursors.Hand;
     this.pictureBox_view.Location = new Point(253, 9);
     this.pictureBox_view.Name = "pictureBox_view";
     this.pictureBox_view.Size = new Size(65, 24);
     this.pictureBox_view.SizeMode = PictureBoxSizeMode.AutoSize;
     this.pictureBox_view.TabIndex = 2;
     this.pictureBox_view.TabStop = false;
     this.pictureBox_view.Click += new EventHandler(this.pictureBox_view_Click);
     this.pictureBox_sort.BackColor = Color.Transparent;
     this.pictureBox_sort.Cursor = Cursors.Hand;
     this.pictureBox_sort.Location = new Point(154, 9);
     this.pictureBox_sort.Name = "pictureBox_sort";
     this.pictureBox_sort.Size = new Size(65, 24);
     this.pictureBox_sort.SizeMode = PictureBoxSizeMode.AutoSize;
     this.pictureBox_sort.TabIndex = 1;
     this.pictureBox_sort.TabStop = false;
     this.pictureBox_sort.Click += new EventHandler(this.pictureBox_sort_Click);
     this.pictureBox_filter.BackColor = Color.Transparent;
     this.pictureBox_filter.Cursor = Cursors.Hand;
     this.pictureBox_filter.Location = new Point(55, 9);
     this.pictureBox_filter.Name = "pictureBox_filter";
     this.pictureBox_filter.Size = new Size(65, 24);
     this.pictureBox_filter.SizeMode = PictureBoxSizeMode.AutoSize;
     this.pictureBox_filter.TabIndex = 0;
     this.pictureBox_filter.TabStop = false;
     this.pictureBox_filter.Click += new EventHandler(this.pictureBox_filter_Click);
     this.paneldatasum.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right);
     this.paneldatasum.Controls.Add(this.labeldatacount);
     this.paneldatasum.Location = new Point(5, 3);
     this.paneldatasum.Name = "paneldatasum";
     this.paneldatasum.Size = new Size(596, 28);
     this.paneldatasum.TabIndex = 25;
     this.labeldatacount.BackColor = Color.Transparent;
     this.labeldatacount.Font = new Font("宋体", 10.5f, FontStyle.Regular, GraphicsUnit.Point, 134);
     this.labeldatacount.Location = new Point(41, 8);
     this.labeldatacount.Name = "labeldatacount";
     this.labeldatacount.Size = new Size(253, 14);
     this.labeldatacount.TabIndex = 0;
     this.pictureBox_right.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.pictureBox_right.Location = new Point(587, 3);
     this.pictureBox_right.Name = "pictureBox_right";
     this.pictureBox_right.Size = new Size(38, 28);
     this.pictureBox_right.SizeMode = PictureBoxSizeMode.AutoSize;
     this.pictureBox_right.TabIndex = 27;
     this.pictureBox_right.TabStop = false;
     this.panel_middle.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right);
     this.panel_middle.Controls.Add(this.label9);
     this.panel_middle.Location = new Point(73, 3);
     this.panel_middle.Name = "panel_middle";
     this.panel_middle.Size = new Size(328, 28);
     this.panel_middle.TabIndex = 26;
     this.label9.BackColor = Color.Transparent;
     this.label9.Font = new Font("宋体", 10.5f, FontStyle.Bold, GraphicsUnit.Point, 134);
     this.label9.Location = new Point(41, 7);
     this.label9.Name = "label9";
     this.label9.Size = new Size(253, 14);
     this.label9.TabIndex = 1;
     this.label9.Text = "农药单混剂查询";
     this.pictureBox_left.Location = new Point(4, 3);
     this.pictureBox_left.Name = "pictureBox_left";
     this.pictureBox_left.Size = new Size(17, 28);
     this.pictureBox_left.SizeMode = PictureBoxSizeMode.AutoSize;
     this.pictureBox_left.TabIndex = 25;
     this.pictureBox_left.TabStop = false;
     this.gridColumn16.Caption = "有效成分";
     this.gridColumn16.FieldName = "YXCF";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 0;
     this.gridColumn18.Caption = "有效成分";
     this.gridColumn18.FieldName = "YXCF";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     this.gridColumn19.Caption = "有效成分";
     this.gridColumn19.FieldName = "YXCF";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 0;
     base.AcceptButton = this.btnSearch;
     base.AutoScaleMode = AutoScaleMode.None;
     base.ClientSize = new Size(850, 589);
     base.Controls.Add(this.panelright);
     base.Controls.Add(this.paneltop_right);
     base.Controls.Add(this.paneltop_middle);
     base.Controls.Add(this.paneltop_left);
     base.Controls.Add(this.paneltitle_right);
     base.Controls.Add(this.paneltitle_middle);
     base.Controls.Add(this.paneltitle_left);
     base.Controls.Add(this.panelmenu);
     this.Font = new Font("宋体", 10f, FontStyle.Regular, GraphicsUnit.Point, 134);
     base.FormBorderStyle = FormBorderStyle.None;
     base.Icon = (Icon)componentResourceManager.GetObject("$this.Icon");
     base.Name = "frmNYDHJ";
     this.Text = "农药单混剂查询";
     base.WindowState = FormWindowState.Maximized;
     base.Load += new EventHandler(this.frmNYDHJ_Load);
     base.Resize += new EventHandler(this.frmNYDHJ_Resize);
     this.panelcondition.ResumeLayout(false);
     this.panelcondition.PerformLayout();
     this.pan3.ResumeLayout(false);
     this.pan3.PerformLayout();
     ((ISupportInitialize)this.gridlokYXCF3.Properties).EndInit();
     ((ISupportInitialize)this.gridView3).EndInit();
     this.pan1.ResumeLayout(false);
     this.pan1.PerformLayout();
     ((ISupportInitialize)this.gridlokYXCF1.Properties).EndInit();
     ((ISupportInitialize)this.gridLookUpEdit1View).EndInit();
     this.pan2.ResumeLayout(false);
     this.pan2.PerformLayout();
     ((ISupportInitialize)this.gridlokYXCF2.Properties).EndInit();
     ((ISupportInitialize)this.gridView2).EndInit();
     this.panYY.ResumeLayout(false);
     this.panYY.PerformLayout();
     ((ISupportInitialize)this.gridlokYXCF.Properties).EndInit();
     ((ISupportInitialize)this.gridView4).EndInit();
     this.paneldata.ResumeLayout(false);
     ((ISupportInitialize)this.gridControl1).EndInit();
     ((ISupportInitialize)this.gridView1).EndInit();
     this.panelmenu.ResumeLayout(false);
     this.paneltitle_right.ResumeLayout(false);
     this.paneltitle_right.PerformLayout();
     ((ISupportInitialize)this.pictureBox3).EndInit();
     ((ISupportInitialize)this.pictureBox2).EndInit();
     ((ISupportInitialize)this.pictureBox1).EndInit();
     this.panelright.ResumeLayout(false);
     this.panelright.PerformLayout();
     this.panelwhite.ResumeLayout(false);
     this.panelbutton.ResumeLayout(false);
     this.panelbutton.PerformLayout();
     ((ISupportInitialize)this.pictureBox_sum).EndInit();
     ((ISupportInitialize)this.pictureBox_view).EndInit();
     ((ISupportInitialize)this.pictureBox_sort).EndInit();
     ((ISupportInitialize)this.pictureBox_filter).EndInit();
     this.paneldatasum.ResumeLayout(false);
     ((ISupportInitialize)this.pictureBox_right).EndInit();
     this.panel_middle.ResumeLayout(false);
     ((ISupportInitialize)this.pictureBox_left).EndInit();
     base.ResumeLayout(false);
 }
 private void SetEditValueByIndex(GridLookUpEdit edit, int index)
 {
     var keyValue = glueTarjeta.Properties.GetKeyValue(index);
     glueTarjeta.EditValue = keyValue;
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.XYDiagram xyDiagram3 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel5 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.PointOptions pointOptions3 = new DevExpress.XtraCharts.PointOptions();
     DevExpress.XtraCharts.LineSeriesView lineSeriesView5 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel6 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.LineSeriesView lineSeriesView6 = new DevExpress.XtraCharts.LineSeriesView();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.linkLabel2 = new System.Windows.Forms.LinkLabel();
     this.linkLabel3 = new System.Windows.Forms.LinkLabel();
     this.linkLabel4 = new System.Windows.Forms.LinkLabel();
     this.linkLabel5 = new System.Windows.Forms.LinkLabel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.listView1 = new System.Windows.Forms.ListView();
     this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader8 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label6 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.linkLabel11 = new System.Windows.Forms.LinkLabel();
     this.linkLabel12 = new System.Windows.Forms.LinkLabel();
     this.linkLabel13 = new System.Windows.Forms.LinkLabel();
     this.linkLabel14 = new System.Windows.Forms.LinkLabel();
     this.linkLabel15 = new System.Windows.Forms.LinkLabel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.listView2 = new System.Windows.Forms.ListView();
     this.columnHeader17 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader18 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader19 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader20 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label44 = new System.Windows.Forms.Label();
     this.label45 = new System.Windows.Forms.Label();
     this.label46 = new System.Windows.Forms.Label();
     this.label47 = new System.Windows.Forms.Label();
     this.label48 = new System.Windows.Forms.Label();
     this.label49 = new System.Windows.Forms.Label();
     this.label50 = new System.Windows.Forms.Label();
     this.label51 = new System.Windows.Forms.Label();
     this.dtDate = new CalendarLib.DateTimePickerEx();
     this.lblHeader = new System.Windows.Forms.Label();
     this.progressBar1 = new System.Windows.Forms.ProgressBar();
     this.btnPrint = new System.Windows.Forms.Button();
     this.chartReceiveCost = new DevExpress.XtraCharts.ChartControl();
     this.lkAccount = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn96 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn97 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn98 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartReceiveCost)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkAccount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
     this.SuspendLayout();
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.Location = new System.Drawing.Point(305, 182);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(19, 13);
     this.linkLabel1.TabIndex = 2;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "list";
     //
     // linkLabel2
     //
     this.linkLabel2.AutoSize = true;
     this.linkLabel2.Location = new System.Drawing.Point(305, 155);
     this.linkLabel2.Name = "linkLabel2";
     this.linkLabel2.Size = new System.Drawing.Size(19, 13);
     this.linkLabel2.TabIndex = 2;
     this.linkLabel2.TabStop = true;
     this.linkLabel2.Text = "list";
     //
     // linkLabel3
     //
     this.linkLabel3.AutoSize = true;
     this.linkLabel3.Location = new System.Drawing.Point(305, 128);
     this.linkLabel3.Name = "linkLabel3";
     this.linkLabel3.Size = new System.Drawing.Size(19, 13);
     this.linkLabel3.TabIndex = 2;
     this.linkLabel3.TabStop = true;
     this.linkLabel3.Text = "list";
     //
     // linkLabel4
     //
     this.linkLabel4.AutoSize = true;
     this.linkLabel4.Location = new System.Drawing.Point(305, 101);
     this.linkLabel4.Name = "linkLabel4";
     this.linkLabel4.Size = new System.Drawing.Size(19, 13);
     this.linkLabel4.TabIndex = 2;
     this.linkLabel4.TabStop = true;
     this.linkLabel4.Text = "list";
     //
     // linkLabel5
     //
     this.linkLabel5.AutoSize = true;
     this.linkLabel5.Location = new System.Drawing.Point(305, 74);
     this.linkLabel5.Name = "linkLabel5";
     this.linkLabel5.Size = new System.Drawing.Size(19, 13);
     this.linkLabel5.TabIndex = 2;
     this.linkLabel5.TabStop = true;
     this.linkLabel5.Text = "list";
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.listView1);
     this.groupBox1.Location = new System.Drawing.Point(457, 3);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(682, 463);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     //
     // listView1
     //
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader5,
     this.columnHeader6,
     this.columnHeader7,
     this.columnHeader8});
     this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listView1.FullRowSelect = true;
     this.listView1.GridLines = true;
     this.listView1.Location = new System.Drawing.Point(3, 16);
     this.listView1.Name = "listView1";
     this.listView1.ShowItemToolTips = true;
     this.listView1.Size = new System.Drawing.Size(676, 444);
     this.listView1.TabIndex = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.Details;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "No.";
     this.columnHeader5.Width = 34;
     //
     // columnHeader6
     //
     this.columnHeader6.Text = "Stock Code";
     this.columnHeader6.Width = 98;
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "Item Name";
     this.columnHeader7.Width = 393;
     //
     // columnHeader8
     //
     this.columnHeader8.Text = "Unit";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(39, 182);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(85, 13);
     this.label6.TabIndex = 0;
     this.label6.Text = "Pediatric Items : ";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(39, 155);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(74, 13);
     this.label7.TabIndex = 0;
     this.label7.Text = "Refrigerated : ";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(39, 128);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(65, 13);
     this.label8.TabIndex = 0;
     this.label8.Text = "Free Items : ";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(39, 101);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(93, 13);
     this.label9.TabIndex = 0;
     this.label9.Text = "Items Not in EDL :";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(167, 155);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(0, 13);
     this.label10.TabIndex = 0;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(167, 182);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(0, 13);
     this.label11.TabIndex = 0;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(167, 128);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(0, 13);
     this.label12.TabIndex = 0;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(167, 101);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(0, 13);
     this.label13.TabIndex = 0;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(167, 74);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(0, 13);
     this.label14.TabIndex = 0;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(39, 74);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(52, 13);
     this.label15.TabIndex = 0;
     this.label15.Text = "All Items :";
     //
     // linkLabel11
     //
     this.linkLabel11.AutoSize = true;
     this.linkLabel11.Location = new System.Drawing.Point(98, 169);
     this.linkLabel11.Name = "linkLabel11";
     this.linkLabel11.Size = new System.Drawing.Size(150, 13);
     this.linkLabel11.TabIndex = 20;
     this.linkLabel11.TabStop = true;
     this.linkLabel11.Text = "Top 10 Least Received Items ";
     //
     // linkLabel12
     //
     this.linkLabel12.AutoSize = true;
     this.linkLabel12.Location = new System.Drawing.Point(98, 140);
     this.linkLabel12.Name = "linkLabel12";
     this.linkLabel12.Size = new System.Drawing.Size(147, 13);
     this.linkLabel12.TabIndex = 20;
     this.linkLabel12.TabStop = true;
     this.linkLabel12.Text = "Top 10 Most Received Items ";
     //
     // linkLabel13
     //
     this.linkLabel13.AutoSize = true;
     this.linkLabel13.Location = new System.Drawing.Point(259, 99);
     this.linkLabel13.Name = "linkLabel13";
     this.linkLabel13.Size = new System.Drawing.Size(19, 13);
     this.linkLabel13.TabIndex = 20;
     this.linkLabel13.TabStop = true;
     this.linkLabel13.Text = "list";
     //
     // linkLabel14
     //
     this.linkLabel14.AutoSize = true;
     this.linkLabel14.Location = new System.Drawing.Point(259, 72);
     this.linkLabel14.Name = "linkLabel14";
     this.linkLabel14.Size = new System.Drawing.Size(19, 13);
     this.linkLabel14.TabIndex = 20;
     this.linkLabel14.TabStop = true;
     this.linkLabel14.Text = "list";
     //
     // linkLabel15
     //
     this.linkLabel15.AutoSize = true;
     this.linkLabel15.Location = new System.Drawing.Point(259, 48);
     this.linkLabel15.Name = "linkLabel15";
     this.linkLabel15.Size = new System.Drawing.Size(19, 13);
     this.linkLabel15.TabIndex = 20;
     this.linkLabel15.TabStop = true;
     this.linkLabel15.Text = "list";
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.listView2);
     this.groupBox2.Location = new System.Drawing.Point(462, 3);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(682, 463);
     this.groupBox2.TabIndex = 19;
     this.groupBox2.TabStop = false;
     //
     // listView2
     //
     this.listView2.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader17,
     this.columnHeader18,
     this.columnHeader19,
     this.columnHeader20});
     this.listView2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listView2.FullRowSelect = true;
     this.listView2.GridLines = true;
     this.listView2.Location = new System.Drawing.Point(3, 16);
     this.listView2.Name = "listView2";
     this.listView2.ShowItemToolTips = true;
     this.listView2.Size = new System.Drawing.Size(676, 444);
     this.listView2.TabIndex = 0;
     this.listView2.UseCompatibleStateImageBehavior = false;
     this.listView2.View = System.Windows.Forms.View.Details;
     //
     // columnHeader17
     //
     this.columnHeader17.Text = "No.";
     this.columnHeader17.Width = 34;
     //
     // columnHeader18
     //
     this.columnHeader18.Text = "Stock Code";
     this.columnHeader18.Width = 98;
     //
     // columnHeader19
     //
     this.columnHeader19.Text = "Item Name";
     this.columnHeader19.Width = 393;
     //
     // columnHeader20
     //
     this.columnHeader20.Text = "Unit";
     //
     // label44
     //
     this.label44.AutoSize = true;
     this.label44.Location = new System.Drawing.Point(309, 48);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(0, 13);
     this.label44.TabIndex = 9;
     //
     // label45
     //
     this.label45.AutoSize = true;
     this.label45.Location = new System.Drawing.Point(203, 48);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(0, 13);
     this.label45.TabIndex = 10;
     //
     // label46
     //
     this.label46.AutoSize = true;
     this.label46.Location = new System.Drawing.Point(238, 72);
     this.label46.Name = "label46";
     this.label46.Size = new System.Drawing.Size(13, 13);
     this.label46.TabIndex = 7;
     this.label46.Text = "0";
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Location = new System.Drawing.Point(238, 99);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(13, 13);
     this.label47.TabIndex = 7;
     this.label47.Text = "0";
     //
     // label48
     //
     this.label48.AutoSize = true;
     this.label48.Location = new System.Drawing.Point(238, 48);
     this.label48.Name = "label48";
     this.label48.Size = new System.Drawing.Size(13, 13);
     this.label48.TabIndex = 7;
     this.label48.Text = "0";
     //
     // label49
     //
     this.label49.AutoSize = true;
     this.label49.Location = new System.Drawing.Point(98, 99);
     this.label49.Name = "label49";
     this.label49.Size = new System.Drawing.Size(119, 13);
     this.label49.TabIndex = 8;
     this.label49.Text = "Never Received Items :";
     //
     // label50
     //
     this.label50.AutoSize = true;
     this.label50.Location = new System.Drawing.Point(98, 72);
     this.label50.Name = "label50";
     this.label50.Size = new System.Drawing.Size(94, 13);
     this.label50.TabIndex = 8;
     this.label50.Text = "No of Days since :";
     //
     // label51
     //
     this.label51.AutoSize = true;
     this.label51.Location = new System.Drawing.Point(98, 48);
     this.label51.Name = "label51";
     this.label51.Size = new System.Drawing.Size(102, 13);
     this.label51.TabIndex = 8;
     this.label51.Text = "Last Receive Date :";
     //
     // dtDate
     //
     this.dtDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.dtDate.CalendarFont = new System.Drawing.Font("Nyala", 10.75F);
     this.dtDate.CalendarForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     this.dtDate.CustomFormat = "MM/dd/ yy";
     this.dtDate.DayOfWeekCharacters = 2;
     this.dtDate.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     this.dtDate.Location = new System.Drawing.Point(673, 11);
     this.dtDate.Name = "dtDate";
     this.dtDate.PopUpFontSize = 9.75F;
     this.dtDate.Size = new System.Drawing.Size(114, 20);
     this.dtDate.TabIndex = 22;
     this.dtDate.Value = new System.DateTime(2009, 1, 20, 0, 0, 0, 0);
     this.dtDate.Visible = false;
     //
     // lblHeader
     //
     this.lblHeader.AutoSize = true;
     this.lblHeader.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblHeader.Location = new System.Drawing.Point(35, 13);
     this.lblHeader.Name = "lblHeader";
     this.lblHeader.Size = new System.Drawing.Size(232, 23);
     this.lblHeader.TabIndex = 23;
     this.lblHeader.Text = "Issue and Receive Cost";
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(427, 245);
     this.progressBar1.Minimum = 1;
     this.progressBar1.Name = "progressBar1";
     this.progressBar1.Size = new System.Drawing.Size(300, 23);
     this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
     this.progressBar1.TabIndex = 25;
     this.progressBar1.UseWaitCursor = true;
     this.progressBar1.Value = 1;
     this.progressBar1.Visible = false;
     //
     // btnPrint
     //
     this.btnPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrint.Image = global::HCMIS.Desktop.Properties.Resources.printer;
     this.btnPrint.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnPrint.Location = new System.Drawing.Point(1078, 12);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(65, 22);
     this.btnPrint.TabIndex = 24;
     this.btnPrint.Text = "Print";
     this.btnPrint.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnPrint.UseVisualStyleBackColor = true;
     this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
     //
     // chartReceiveCost
     //
     this.chartReceiveCost.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)));
     xyDiagram3.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram3.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram3.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram3.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram3.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram3.AxisY.VisibleInPanesSerializable = "-1";
     this.chartReceiveCost.Diagram = xyDiagram3;
     this.chartReceiveCost.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Center;
     this.chartReceiveCost.Legend.AlignmentVertical = DevExpress.XtraCharts.LegendAlignmentVertical.TopOutside;
     this.chartReceiveCost.Legend.EquallySpacedItems = false;
     this.chartReceiveCost.Location = new System.Drawing.Point(12, 40);
     this.chartReceiveCost.Name = "chartReceiveCost";
     this.chartReceiveCost.PaletteName = "Palette 1";
     this.chartReceiveCost.PaletteRepository.Add("Palette 1", new DevExpress.XtraCharts.Palette("Palette 1", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[] {
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(168)))), ((int)(((byte)(9))))), System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(201)))), ((int)(((byte)(67)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(76)))), ((int)(((byte)(27))))), System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(118)))), ((int)(((byte)(72)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(134)))), ((int)(((byte)(197)))), ((int)(((byte)(227))))), System.Drawing.Color.FromArgb(((int)(((byte)(134)))), ((int)(((byte)(197)))), ((int)(((byte)(227)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(111))))), System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(111)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(58)))), ((int)(((byte)(23))))), System.Drawing.Color.FromArgb(((int)(((byte)(187)))), ((int)(((byte)(86)))), ((int)(((byte)(49)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(136)))), ((int)(((byte)(0))))), System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(171)))), ((int)(((byte)(27)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(161)))), ((int)(((byte)(0))))), System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(194)))), ((int)(((byte)(0)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(159)))), ((int)(((byte)(113))))), System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(194)))), ((int)(((byte)(141)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(172)))), ((int)(((byte)(104))))), System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(202)))), ((int)(((byte)(134)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(115)))), ((int)(((byte)(192)))), ((int)(((byte)(192))))), System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(227)))), ((int)(((byte)(181)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(147)))), ((int)(((byte)(115))))), System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(175)))), ((int)(((byte)(149))))))}));
     pointSeriesLabel5.LineVisible = true;
     pointOptions3.ValueNumericOptions.Format = DevExpress.XtraCharts.NumericFormat.Percent;
     pointSeriesLabel5.PointOptions = pointOptions3;
     series3.Label = pointSeriesLabel5;
     series3.Name = "Series 1";
     series3.View = lineSeriesView5;
     this.chartReceiveCost.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series3};
     pointSeriesLabel6.LineVisible = true;
     this.chartReceiveCost.SeriesTemplate.Label = pointSeriesLabel6;
     this.chartReceiveCost.SeriesTemplate.View = lineSeriesView6;
     this.chartReceiveCost.Size = new System.Drawing.Size(1131, 443);
     this.chartReceiveCost.TabIndex = 29;
     //
     // lkAccount
     //
     this.lkAccount.Location = new System.Drawing.Point(886, 11);
     this.lkAccount.Name = "lkAccount";
     this.lkAccount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkAccount.Properties.DisplayMember = "Name";
     this.lkAccount.Properties.NullText = "Select Account";
     this.lkAccount.Properties.ValueMember = "ID";
     this.lkAccount.Properties.View = this.gridView6;
     this.lkAccount.Size = new System.Drawing.Size(162, 20);
     this.lkAccount.TabIndex = 71;
     this.lkAccount.EditValueChanged += new System.EventHandler(this.cboStores_SelectedValueChanged);
     //
     // gridView6
     //
     this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn29,
     this.gridColumn96,
     this.gridColumn30,
     this.gridColumn97,
     this.gridColumn98});
     this.gridView6.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView6.GroupCount = 3;
     this.gridView6.Name = "gridView6";
     this.gridView6.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView6.OptionsView.ShowGroupPanel = false;
     this.gridView6.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn30, DevExpress.Data.ColumnSortOrder.Ascending),
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn97, DevExpress.Data.ColumnSortOrder.Ascending),
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn96, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "ID";
     this.gridColumn29.FieldName = "ID";
     this.gridColumn29.Name = "gridColumn29";
     //
     // gridColumn96
     //
     this.gridColumn96.Caption = "Sub Account";
     this.gridColumn96.FieldName = "StoreGroupDivision";
     this.gridColumn96.Name = "gridColumn96";
     this.gridColumn96.Visible = true;
     this.gridColumn96.VisibleIndex = 0;
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "Mode";
     this.gridColumn30.FieldName = "StoreType";
     this.gridColumn30.Name = "gridColumn30";
     //
     // gridColumn97
     //
     this.gridColumn97.Caption = "Account";
     this.gridColumn97.FieldName = "StoreGroup";
     this.gridColumn97.Name = "gridColumn97";
     //
     // gridColumn98
     //
     this.gridColumn98.Caption = "SSA";
     this.gridColumn98.FieldName = "Name";
     this.gridColumn98.Name = "gridColumn98";
     this.gridColumn98.Visible = true;
     this.gridColumn98.VisibleIndex = 0;
     this.gridColumn98.Width = 83;
     //
     // GeneralCostChart
     //
     this.Appearance.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1155, 513);
     this.Controls.Add(this.lkAccount);
     this.Controls.Add(this.progressBar1);
     this.Controls.Add(this.chartReceiveCost);
     this.Controls.Add(this.btnPrint);
     this.Controls.Add(this.lblHeader);
     this.Controls.Add(this.dtDate);
     this.Name = "GeneralCostChart";
     this.Text = "GeneralReport";
     this.Load += new System.EventHandler(this.GeneralReport_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartReceiveCost)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkAccount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 38
0
 public static void SetColorDefaultGridLookUpEdit(GridLookUpEdit gridLookUp)
 {
     gridLookUp.Properties.Appearance.BorderColor = System.Drawing.Color.LightGray;
 }
Esempio n. 39
0
 public static void GridLookUpEditNoMessage(GridLookUpEdit gridLookUpEdit)
 {
     gridLookUpEdit.Properties.Appearance.BorderColor = System.Drawing.Color.Red;
     gridLookUpEdit.Focus();
 }
Esempio n. 40
0
 public static void ChangeCaptionGridLookUpEdit(string parent_name, string language, GridLookUpEdit[] grid_lookup_edits)
 {
     foreach (GridLookUpEdit grid_lookup_edit in grid_lookup_edits)
         ChangeCaptionGridLookUpEdit(parent_name, language, grid_lookup_edit);
 }
 /// <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);
 }
        private void FacilityChanged(GridLookUpEdit lkRecUnit)
        {
            if (lkRecUnit.EditValue != null)
            {
                int facilityID = Convert.ToInt32(lkRecUnit.EditValue);
                Institution institution = new Institution();
                institution.LoadByPrimaryKey(facilityID);
                string facilityPaymentType = "";
                if (!institution.IsColumnNull("PaymentTypeID"))
                    facilityPaymentType = PaymentType.GetPaymentTypeString(institution.PaymentTypeID);

                txtVatRegistration.Text = (!institution.IsColumnNull("VATNo")) ? institution.VATNo : "";

                labelControl2.Text = (!institution.IsColumnNull("VATNo")) ? institution.VATNo : "";
                txtTin.Text = (!institution.IsColumnNull("TinNo")) ? institution.TinNo : "";

                labelControl1.Text = (!institution.IsColumnNull("TinNo")) ? institution.TinNo : "";

                txtRegistrationNo.Text = (!institution.IsColumnNull("LicenseNo")) ? institution.LicenseNo : "";

                labelControl3.Text = (!institution.IsColumnNull("LicenseNo")) ? institution.LicenseNo : "";
            }
        }