Esempio n. 1
0
        private void LstTreeFocusedNodeChanged(object sender, DevExpress.XtraTreeList.FocusedNodeChangedEventArgs e)
        {
            DateTime dt1 = new DateTime();
            DateTime dt2 = new DateTime();

            CalendarLib.DateTimePickerEx dtDate = new CalendarLib.DateTimePickerEx();
            dtDate.CustomFormat = "MM/dd/yyyy";
            dtDate.Value        = DateTimeHelper.ServerDateTime;
            DateTime dtCurrent = ConvertDate.DateConverter(dtDate.Text);

            DataRowView dr = (DataRowView)lstTree.GetDataRecordByNode(lstTree.FocusedNode);

            if (dr != null)
            {
                LossAndAdjustment disp  = new LossAndAdjustment();
                DataTable         dtRec = new DataTable();
                if (dr["ParentID"] == DBNull.Value)
                {
                    int yr = ((dtCurrent.Month > 10) ? dtCurrent.Year : dtCurrent.Year - 1);
                    dt1   = new DateTime(Convert.ToInt32(dr["ID"]) - 1, 11, 1);
                    dt2   = new DateTime(Convert.ToInt32(dr["ID"]), 11, 1);
                    dtRec = disp.GetTransactionByDateRange(Convert.ToInt32(lkActivity.EditValue), dt1, dt2);
                    string dateString = dr["RefNo"].ToString();
                    lblAdjDate.Text = dateString;
                }
                else
                {
                    dtRec           = disp.GetDocumentByRefNo(dr["RefNo"].ToString(), Convert.ToInt32(lkActivity.EditValue), dr["Date"].ToString());
                    lblAdjDate.Text = Convert.ToDateTime(dr["Date"]).ToString("MM dd,yyyy");
                }
                gridAdjustments.DataSource = dtRec;
            }
        }
        public static DateTime DateConverterToEU(string dt)
        {
            DateTime dtCurrent = new DateTime();
            CalendarLib.DateTimePickerEx ec = new CalendarLib.DateTimePickerEx();

            return dtCurrent;
        }
Esempio n. 3
0
        private void lstTree_FocusedNodeChanged(object sender, DevExpress.XtraTreeList.FocusedNodeChangedEventArgs e)
        {
            var dtDate = new CalendarLib.DateTimePickerEx
            {
                CustomFormat = "MM/dd/yyyy",
                Value        = DateTime.Now
            };
            DateTime dtCurrent = ConvertDate.DateConverter(dtDate.Text);
            var      dr        = (DataRowView)lstTree.GetDataRecordByNode(lstTree.FocusedNode);

            if (dr == null)
            {
                return;
            }

            var       rec = new Transfer();
            DataTable dtRec;

            if (dr["ParentID"] == DBNull.Value)
            {
                int      yr  = ((dtCurrent.Month > 10) ? dtCurrent.Year : dtCurrent.Year - 1);
                DateTime dt1 = new DateTime(Convert.ToInt32(dr["ID"]) - 1, 11, 1);
                DateTime dt2 = new DateTime(Convert.ToInt32(dr["ID"]), 11, 1);
                dtRec = rec.GetTransactionByDateRange(Convert.ToInt32(lkToStore.EditValue), dt1, dt2);
                lblTransferedDate.Text = dr["RefNo"].ToString();
            }
            else
            {
                dtRec = rec.GetTransactionByRefNo(dr["RefNo"].ToString(), Convert.ToInt32(lkToStore.EditValue), dr["Date"].ToString());
                lblTransferedDate.Text = Convert.ToDateTime(dr["Date"]).ToString("MM dd,yyyy");
            }

            gridControl1.DataSource = dtRec;
        }
        private void lstTree_FocusedNodeChanged(object sender, DevExpress.XtraTreeList.FocusedNodeChangedEventArgs e)
        {
            CalendarLib.DateTimePickerEx dtDate = new CalendarLib.DateTimePickerEx
            {
                CustomFormat = "MM/dd/yyyy",
                Value        = DateTime.Now
            };
            DateTime dtCurrent = ConvertDate.DateConverter(dtDate.Text);

            DataRowView dr = (DataRowView)lstTree.GetDataRecordByNode(lstTree.FocusedNode);

            if (dr == null)
            {
                return;
            }

            //lstTransactions.Items.Clear();
            IssueDoc  iss = new IssueDoc();
            DataTable dtRec;

            if (dr["ParentID"] == DBNull.Value)
            {
                EthiopianDate.EthiopianDate ethiopianDate = new EthiopianDate.EthiopianDate(Convert.ToInt32(dr["ID"]), 1, 1);
                dtRec = iss.GetTransactionByDateRange(Convert.ToInt32(cboStores.EditValue), ethiopianDate.StartOfFiscalYear.ToGregorianDate(), ethiopianDate.EndOfFiscalYear.ToGregorianDate());
                string dateString = dr["RefNo"].ToString();
                lblIssDate.Text = dateString;
            }
            else
            {
                //dtRec = iss.GetTransactionByRefNo(dr["RefNo"].ToString(), Convert.ToInt32(cboStores.EditValue), dr["Date"].ToString());
                dtRec           = iss.GetTransactionByRefNo(dr["RefNo"].ToString(), Convert.ToDateTime(dr["Date"]));
                lblIssDate.Text = Convert.ToDateTime(dr["Date"]).ToString("MM dd,yyyy");
            }
            gridIssues.DataSource = dtRec;
        }
Esempio n. 5
0
        public static DateTime DateConverterToEU(string dt)
        {
            DateTime dtCurrent = new DateTime();

            CalendarLib.DateTimePickerEx ec = new CalendarLib.DateTimePickerEx();

            return(dtCurrent);
        }
Esempio n. 6
0
        private void pcl_CreateReportHeaderArea(object sender, DevExpress.XtraPrinting.CreateAreaEventArgs e)
        {
            CalendarLib.DateTimePickerEx dtDate = new CalendarLib.DateTimePickerEx();
            dtDate.Value        = DateTimeHelper.ServerDateTime;
            dtDate.CustomFormat = "MM/dd/yyyy";
            DateTime dtCurrent = Convert.ToDateTime(dtDate.Text);
            string   header    = GeneralInfo.Current.HospitalName + " Loss/Adjustment Activity Log " + dtCurrent.ToString("MM dd,yyyy");

            DevExpress.XtraPrinting.TextBrick brick;
            brick = e.Graph.DrawString(header, Color.Navy, new RectangleF(0, 0, 500, 40),
                                       DevExpress.XtraPrinting.BorderSide.None);
            brick.Font         = new Font("Arial", 16);
            brick.StringFormat = new DevExpress.XtraPrinting.BrickStringFormat(StringAlignment.Center);
        }
Esempio n. 7
0
        private void detailToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var dr = grdLogIssue.GetFocusedDataRow();

            if (dr == null)
            {
                return;
            }

            int tranId = Convert.ToInt32(dr["ID"]);

            var dtDate = new CalendarLib.DateTimePickerEx
            {
                Value        = DateTime.Now,
                CustomFormat = "MM/dd/yyyy"
            };
            DateTime dtCur  = ConvertDate.DateConverter(dtDate.Text);
            int      itemId = Convert.ToInt32(dr["ItemID"]);
            int      yr     = ((dtCur.Month < 11) ? dtCur.Year : dtCur.Year + 1);

            switch (VisibilitySetting.HandleUnits)
            {
            case 1:
            {
                var con = new ItemDetailReport(itemId, Convert.ToInt32(cboStores.EditValue), yr, 0);
                con.ShowDialog();
            }
            break;

            case 2:
            {
                int unitId = Convert.ToInt32(dr["UnitID"]);
                var con    = new ItemDetailReport(itemId, Convert.ToInt32(cboStores.EditValue), yr, 0, unitId);
                con.ShowDialog();
            }
            break;

            case 3:
            {
                int unitId = Convert.ToInt32(dr["UnitID"]);
                var con    = new ItemDetailReport(itemId, Convert.ToInt32(cboStores.EditValue), yr, 0, unitId);
                con.ShowDialog();
            }
            break;
            }
        }
Esempio n. 8
0
 private void cboStores_EditValueChanged(object sender, EventArgs e)
 {
     if (lkActivity.EditValue != null)
     {
         LossAndAdjustment Adj   = new LossAndAdjustment();
         DataTable         dtRec = Adj.GetDistinctAdjustmentDocments(Convert.ToInt32(lkActivity.EditValue));
         /*PopulateDocument(dtRec);*/ lstTree.DataSource = dtRec;
         DateTime dt1 = new DateTime();
         DateTime dt2 = new DateTime();
         CalendarLib.DateTimePickerEx dtDate = new CalendarLib.DateTimePickerEx();
         dtDate.CustomFormat = "MM/dd/yyyy";
         dtDate.Value        = DateTimeHelper.ServerDateTime;
         DateTime dtCurrent = ConvertDate.DateConverter(dtDate.Text);
         int      yr        = ((dtCurrent.Month > 10) ? dtCurrent.Year : dtCurrent.Year - 1);
         dt1                        = new DateTime(yr, 11, 1);
         dt2                        = new DateTime(dtCurrent.Year, dtCurrent.Month, dtCurrent.Day);
         dtRec                      = Adj.GetTransactionByDateRange(Convert.ToInt32(lkActivity.EditValue), dt1, dt2);
         lblAdjDate.Text            = "Current Year";
         gridAdjustments.DataSource = dtRec;
     }
 }
 private void cboStores_EditValueChanged(object sender, EventArgs e)
 {
     if (lkActivity.EditValue != null)
     {
         LossAndAdjustment Adj = new LossAndAdjustment();
         DataTable dtRec = Adj.GetDistinctAdjustmentDocments(Convert.ToInt32(lkActivity.EditValue));
         /*PopulateDocument(dtRec);*/ lstTree.DataSource = dtRec;
         DateTime dt1 = new DateTime();
         DateTime dt2 = new DateTime();
         CalendarLib.DateTimePickerEx dtDate = new CalendarLib.DateTimePickerEx();
         dtDate.CustomFormat = "MM/dd/yyyy";
         dtDate.Value = DateTimeHelper.ServerDateTime;
         DateTime dtCurrent = ConvertDate.DateConverter(dtDate.Text);
         int yr = ((dtCurrent.Month > 10) ? dtCurrent.Year : dtCurrent.Year - 1);
         dt1 = new DateTime(yr, 11, 1);
         dt2 = new DateTime(dtCurrent.Year, dtCurrent.Month, dtCurrent.Day);
         dtRec = Adj.GetTransactionByDateRange(Convert.ToInt32(lkActivity.EditValue), dt1, dt2);
         lblAdjDate.Text = "Current Year";
         gridAdjustments.DataSource = dtRec;
     }
 }
Esempio n. 10
0
        private void btnDeleteWithRfNo_Click(object sender, EventArgs e)
        {
            CalendarLib.DateTimePickerEx dtDate = new CalendarLib.DateTimePickerEx
            {
                CustomFormat = "MM/dd/yyyy",
                Value        = DateTime.Now
            };
            DateTime dtCurrent = ConvertDate.DateConverter(dtDate.Text);

            DataRowView dr = (DataRowView)lstTree.GetDataRecordByNode(lstTree.FocusedNode);

            if (dr == null)
            {
                return;
            }

            ReceiveDoc rec = new ReceiveDoc();
            DataTable  dtRec;

            if (dr["ParentID"] == DBNull.Value)
            {
                int      yr  = ((dtCurrent.Month > 10) ? dtCurrent.Year : dtCurrent.Year - 1);
                DateTime dt1 = new DateTime(Convert.ToInt32(dr["ID"]) - 1, 11, 1);
                DateTime dt2 = new DateTime(Convert.ToInt32(dr["ID"]), 11, 1);
                dtRec = rec.GetTransactionByDateRange(Convert.ToInt32(cboStores.EditValue), dt1, dt2);
                string dateString = dr["RefNo"].ToString();
                lblRecDate.Text = dateString;
            }
            else
            {
                dtRec = rec.GetTransactionByRefNo(dr["RefNo"].ToString(), Convert.ToInt32(cboStores.EditValue),
                                                  dr["Date"].ToString());
                lblRecDate.Text = Convert.ToDateTime(dr["Date"]).ToString("MM dd,yyyy");
            }
            foreach (DataRow recieve in dtRec.Rows)
            {
                AddDeletedRecieveDocs(recieve);
            }
        }
Esempio n. 11
0
        private void printableComponentLink1_CreateMarginalHeaderArea(object sender, CreateAreaEventArgs e)
        {
            GeneralInfo info = new GeneralInfo();

            info.LoadAll();
            CalendarLib.DateTimePickerEx dtDate = new CalendarLib.DateTimePickerEx
            {
                Value        = DateTime.Now,
                CustomFormat = "MM/dd/yyyy"
            };
            DateTime dtCurrent = Convert.ToDateTime(dtDate.Text);
            string   header    = info.HospitalName + " \n Issue Activity Log \n " + dtCurrent.ToString("MMM dd,yyyy");

            printableComponentLink1.Landscape        = true;
            printableComponentLink1.PageHeaderFooter = header;

            TextBrick brick = e.Graph.DrawString(header, Color.Navy, new RectangleF(0, 0, 800, 80),
                                                 DevExpress.XtraPrinting.BorderSide.None);

            brick.Font         = new Font("Arial", 16);
            brick.StringFormat = new DevExpress.XtraPrinting.BrickStringFormat(StringAlignment.Center);
        }
Esempio n. 12
0
        private void Link_CreateMarginalHeaderArea(object sender, CreateAreaEventArgs e)
        {
            GeneralInfo info = new GeneralInfo();

            info.LoadAll();
            // old header
            //string header = info.HospitalName + "Inventory Log of " + lblAdjDate.Text;

            //header with reference number  and date included
            CalendarLib.DateTimePickerEx dtDate = new CalendarLib.DateTimePickerEx
            {
                Value        = DateTime.Now,
                CustomFormat = "MM/dd/yyyy"
            };
            DateTime dtCurrent = Convert.ToDateTime(dtDate.Text);
            string   header    = info.HospitalName + "Inventory Log of " + lblAdjDate.Text + "    " + dtCurrent.ToString("MM dd,yyyy");

            printableComponentLink1.PageHeaderFooter = header;

            TextBrick brick  = e.Graph.DrawString("", Color.DarkBlue, new RectangleF(0, 0, 200, 100), BorderSide.None);
            TextBrick brick1 = e.Graph.DrawString(header, Color.DarkBlue, new RectangleF(0, 20, 200, 100), BorderSide.None);
            TextBrick brick2 = e.Graph.DrawString("", Color.DarkBlue, new RectangleF(0, 40, 200, 100), BorderSide.None);
        }
Esempio n. 13
0
        private void pcl_CreateReportHeaderArea(object sender, DevExpress.XtraPrinting.CreateAreaEventArgs e)
        {
            var info = new GeneralInfo();

            info.LoadAll();
            var dtDate = new CalendarLib.DateTimePickerEx
            {
                Value        = DateTime.Now,
                CustomFormat = "MM/dd/yyyy"
            };
            DateTime dtCurrent = Convert.ToDateTime(dtDate.Text);
            // original header
            // string header = info.HospitalName + " Receive Activity Log " + dtCurrent.ToString("MM dd,yyyy");
            // header with reference number
            string refNumber = lstTree.FocusedNode.GetDisplayText("RefNo");
            string header    = info.HospitalName + " Transfer Activity Log \n" + dtCurrent.ToString("MM dd,yyyy") +
                               "   RefNo " + refNumber;

            TextBrick brick = e.Graph.DrawString(header, Color.Navy, new RectangleF(0, 0, 500, 40),
                                                 DevExpress.XtraPrinting.BorderSide.None);

            brick.Font         = new Font("Arial", 16);
            brick.StringFormat = new DevExpress.XtraPrinting.BrickStringFormat(StringAlignment.Center);
        }
 /// <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.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel1 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.PointOptions pointOptions1 = new DevExpress.XtraCharts.PointOptions();
     DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel2 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel3 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraCharts.XYDiagram xyDiagram2 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel4 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel5 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel6 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.XYDiagram xyDiagram3 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series5 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel7 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.Series series6 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel8 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel9 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.XYDiagram xyDiagram4 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series7 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel10 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.Series series8 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel11 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel12 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.XYDiagram xyDiagram5 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series9 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel13 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.Series series10 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel14 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel15 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SimpleDiagram3D simpleDiagram3D1 = new DevExpress.XtraCharts.SimpleDiagram3D();
     DevExpress.XtraCharts.Series series11 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.Pie3DSeriesLabel pie3DSeriesLabel1 = new DevExpress.XtraCharts.Pie3DSeriesLabel();
     DevExpress.XtraCharts.PiePointOptions piePointOptions1 = new DevExpress.XtraCharts.PiePointOptions();
     DevExpress.XtraCharts.Pie3DSeriesView pie3DSeriesView1 = new DevExpress.XtraCharts.Pie3DSeriesView();
     DevExpress.XtraCharts.Pie3DSeriesLabel pie3DSeriesLabel2 = new DevExpress.XtraCharts.Pie3DSeriesLabel();
     DevExpress.XtraCharts.Pie3DSeriesView pie3DSeriesView2 = new DevExpress.XtraCharts.Pie3DSeriesView();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel16 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ItemDetailReport));
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.txtItemName = new DevExpress.XtraEditors.TextEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.chartBar = new DevExpress.XtraCharts.ChartControl();
     this.tabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tabPage11 = new DevExpress.XtraTab.XtraTabPage();
     this.gridDispensaryView = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.lblItemID = new System.Windows.Forms.Label();
     this.lblLastIssue = new System.Windows.Forms.Label();
     this.txtSOH = new System.Windows.Forms.Label();
     this.txtAMC = new System.Windows.Forms.Label();
     this.txtMOS = new System.Windows.Forms.Label();
     this.txtMin = new System.Windows.Forms.Label();
     this.txtMax = new System.Windows.Forms.Label();
     this.txtReorderAmount = new System.Windows.Forms.Label();
     this.txtExpiredAmount = new System.Windows.Forms.Label();
     this.txtNearExp = new System.Windows.Forms.Label();
     this.txtFreeItem = new System.Windows.Forms.Label();
     this.txtRefrigerated = new System.Windows.Forms.Label();
     this.txtPediatric = new System.Windows.Forms.Label();
     this.lblLastRec = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label32 = new System.Windows.Forms.Label();
     this.lblstat = new System.Windows.Forms.Label();
     this.label30 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label40 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.tabPage5 = new DevExpress.XtraTab.XtraTabPage();
     this.cboFiscalYear = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.gridItemsList = new DevExpress.XtraGrid.GridControl();
     this.gridItemListView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colItemName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.unitBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.txtBBalance = new DevExpress.XtraEditors.TextEdit();
     this.label28 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.tabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.lkShowTable = new System.Windows.Forms.LinkLabel();
     this.label29 = new System.Windows.Forms.Label();
     this.tabPage9 = new DevExpress.XtraTab.XtraTabPage();
     this.lkDetailCons = new System.Windows.Forms.LinkLabel();
     this.label33 = new System.Windows.Forms.Label();
     this.consuTrend = new DevExpress.XtraCharts.ChartControl();
     this.tabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.lkDetailAmc = new System.Windows.Forms.LinkLabel();
     this.label34 = new System.Windows.Forms.Label();
     this.chartAmc = new DevExpress.XtraCharts.ChartControl();
     this.tabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.lkDetailMos = new System.Windows.Forms.LinkLabel();
     this.label35 = new System.Windows.Forms.Label();
     this.chartMOS = new DevExpress.XtraCharts.ChartControl();
     this.tabPage6 = new DevExpress.XtraTab.XtraTabPage();
     this.label36 = new System.Windows.Forms.Label();
     this.chartComp = new DevExpress.XtraCharts.ChartControl();
     this.tabPage7 = new DevExpress.XtraTab.XtraTabPage();
     this.label20 = new System.Windows.Forms.Label();
     this.lblTime = new System.Windows.Forms.Label();
     this.lblCurStatus = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     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.label16 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.lblThreeStockout = new System.Windows.Forms.Label();
     this.lblSixStockOut = new System.Windows.Forms.Label();
     this.lblTwelveStockOut = new System.Windows.Forms.Label();
     this.lblThreeNearStock = new System.Windows.Forms.Label();
     this.lblSixNearStock = new System.Windows.Forms.Label();
     this.lblTwelveNear = new System.Windows.Forms.Label();
     this.lblThreeBelowMin = new System.Windows.Forms.Label();
     this.lblSixBelowMin = new System.Windows.Forms.Label();
     this.lblTwelveBelowMin = new System.Windows.Forms.Label();
     this.lblTwelveOverStock = new System.Windows.Forms.Label();
     this.lblSixOverStock = new System.Windows.Forms.Label();
     this.lblThreeOverStock = new System.Windows.Forms.Label();
     this.tabPage8 = new DevExpress.XtraTab.XtraTabPage();
     this.lblAvgIssues = new System.Windows.Forms.Label();
     this.lblAvgReceives = new System.Windows.Forms.Label();
     this.lblLastIssues = new System.Windows.Forms.Label();
     this.lblLastReceive = new System.Windows.Forms.Label();
     this.label23 = new System.Windows.Forms.Label();
     this.label22 = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.tabPage10 = new DevExpress.XtraTab.XtraTabPage();
     this.chartPie = new DevExpress.XtraCharts.ChartControl();
     this.lblStatus = new System.Windows.Forms.Label();
     this.label37 = new System.Windows.Forms.Label();
     this.dtDate = new CalendarLib.DateTimePickerEx();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.cboYear = new System.Windows.Forms.ComboBox();
     this.ckPast = new DevExpress.XtraEditors.CheckEdit();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     this.printDoc = new System.Drawing.Printing.PrintDocument();
     this.printDialog1 = new System.Windows.Forms.PrintDialog();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.txtitmName = new System.Windows.Forms.Label();
     this.label38 = new System.Windows.Forms.Label();
     this.lblBUnit = new System.Windows.Forms.Label();
     this.cboDU = new System.Windows.Forms.ComboBox();
     this.xpButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.printingSystem2 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabPage11.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDispensaryView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.tabPage4.SuspendLayout();
     this.tabPage5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboFiscalYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemsList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemListView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.unitBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBBalance.Properties)).BeginInit();
     this.tabPage1.SuspendLayout();
     this.tabPage9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.consuTrend)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel6)).BeginInit();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartAmc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel9)).BeginInit();
     this.tabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartMOS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel12)).BeginInit();
     this.tabPage6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartComp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel15)).BeginInit();
     this.tabPage7.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tabPage8.SuspendLayout();
     this.tabPage10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartPie)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(simpleDiagram3D1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckPast.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).BeginInit();
     this.SuspendLayout();
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn7.Caption = "Receive";
     this.gridColumn7.DisplayFormat.FormatString = "#,###";
     this.gridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn7.FieldName = "Received";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.OptionsColumn.AllowMove = false;
     this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.OptionsColumn.ReadOnly = true;
     this.gridColumn7.OptionsFilter.AllowFilter = false;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 2;
     this.gridColumn7.Width = 76;
     //
     // gridColumn8
     //
     this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn8.Caption = "Issue";
     this.gridColumn8.DisplayFormat.FormatString = "#,###";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn8.FieldName = "Issued";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowEdit = false;
     this.gridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn8.OptionsColumn.AllowMove = false;
     this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn8.OptionsColumn.ReadOnly = true;
     this.gridColumn8.OptionsFilter.AllowFilter = false;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 3;
     this.gridColumn8.Width = 61;
     //
     // txtItemName
     //
     this.txtItemName.Enabled = false;
     this.txtItemName.Location = new System.Drawing.Point(251, 24);
     this.txtItemName.Name = "txtItemName";
     this.txtItemName.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.txtItemName.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.txtItemName.Properties.Appearance.Options.UseBackColor = true;
     this.txtItemName.Properties.Appearance.Options.UseForeColor = true;
     this.txtItemName.Size = new System.Drawing.Size(900, 20);
     this.txtItemName.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label1.Location = new System.Drawing.Point(169, 25);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(71, 13);
     this.label1.TabIndex = 1;
     this.label1.Text = "Item Name";
     //
     // chartBar
     //
     this.chartBar.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.chartBar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.chartBar.Diagram = xyDiagram1;
     this.chartBar.Location = new System.Drawing.Point(3, 38);
     this.chartBar.Name = "chartBar";
     this.chartBar.OptionsPrint.SizeMode = DevExpress.XtraCharts.Printing.PrintSizeMode.Stretch;
     sideBySideBarSeriesLabel1.LineVisible = true;
     pointOptions1.ValueNumericOptions.Format = DevExpress.XtraCharts.NumericFormat.Number;
     pointOptions1.ValueNumericOptions.Precision = 3;
     sideBySideBarSeriesLabel1.PointOptions = pointOptions1;
     series1.Label = sideBySideBarSeriesLabel1;
     series1.Name = "Series 1";
     sideBySideBarSeriesLabel2.LineVisible = true;
     series2.Label = sideBySideBarSeriesLabel2;
     series2.Name = "Series 2";
     this.chartBar.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1,
     series2};
     sideBySideBarSeriesLabel3.LineVisible = true;
     this.chartBar.SeriesTemplate.Label = sideBySideBarSeriesLabel3;
     this.chartBar.Size = new System.Drawing.Size(894, 487);
     this.chartBar.TabIndex = 2;
     //
     // tabControl1
     //
     this.tabControl1.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.tabControl1.Location = new System.Drawing.Point(1, 63);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedTabPage = this.tabPage11;
     this.tabControl1.Size = new System.Drawing.Size(908, 560);
     this.tabControl1.TabIndex = 3;
     this.tabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabPage4,
     this.tabPage5,
     this.tabPage1,
     this.tabPage9,
     this.tabPage2,
     this.tabPage3,
     this.tabPage6,
     this.tabPage7,
     this.tabPage8,
     this.tabPage10,
     this.tabPage11});
     //
     // tabPage11
     //
     this.tabPage11.Controls.Add(this.gridDispensaryView);
     this.tabPage11.Name = "tabPage11";
     this.tabPage11.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage11.PageVisible = false;
     this.tabPage11.Size = new System.Drawing.Size(902, 532);
     this.tabPage11.Text = "Dispensery Unit Balances";
     //
     // gridDispensaryView
     //
     this.gridDispensaryView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridDispensaryView.Location = new System.Drawing.Point(3, 3);
     this.gridDispensaryView.MainView = this.gridView1;
     this.gridDispensaryView.Name = "gridDispensaryView";
     this.gridDispensaryView.Size = new System.Drawing.Size(896, 526);
     this.gridDispensaryView.TabIndex = 0;
     this.gridDispensaryView.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4});
     this.gridView1.GridControl = this.gridDispensaryView;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Store Name";
     this.gridColumn1.FieldName = "StoreName";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 580;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "SOH";
     this.gridColumn2.FieldName = "SOH";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 98;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "MOS";
     this.gridColumn3.FieldName = "MOS";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 3;
     this.gridColumn3.Width = 100;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "AMC";
     this.gridColumn4.FieldName = "AMC";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 95;
     //
     // tabPage4
     //
     this.tabPage4.Appearance.PageClient.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.tabPage4.Appearance.PageClient.Options.UseBackColor = true;
     this.tabPage4.Controls.Add(this.lblItemID);
     this.tabPage4.Controls.Add(this.lblLastIssue);
     this.tabPage4.Controls.Add(this.txtSOH);
     this.tabPage4.Controls.Add(this.txtAMC);
     this.tabPage4.Controls.Add(this.txtMOS);
     this.tabPage4.Controls.Add(this.txtMin);
     this.tabPage4.Controls.Add(this.txtMax);
     this.tabPage4.Controls.Add(this.txtReorderAmount);
     this.tabPage4.Controls.Add(this.txtExpiredAmount);
     this.tabPage4.Controls.Add(this.txtNearExp);
     this.tabPage4.Controls.Add(this.txtFreeItem);
     this.tabPage4.Controls.Add(this.txtRefrigerated);
     this.tabPage4.Controls.Add(this.txtPediatric);
     this.tabPage4.Controls.Add(this.lblLastRec);
     this.tabPage4.Controls.Add(this.label31);
     this.tabPage4.Controls.Add(this.label32);
     this.tabPage4.Controls.Add(this.lblstat);
     this.tabPage4.Controls.Add(this.label30);
     this.tabPage4.Controls.Add(this.label9);
     this.tabPage4.Controls.Add(this.label8);
     this.tabPage4.Controls.Add(this.label7);
     this.tabPage4.Controls.Add(this.label1);
     this.tabPage4.Controls.Add(this.label6);
     this.tabPage4.Controls.Add(this.txtItemName);
     this.tabPage4.Controls.Add(this.label5);
     this.tabPage4.Controls.Add(this.label4);
     this.tabPage4.Controls.Add(this.label3);
     this.tabPage4.Controls.Add(this.label40);
     this.tabPage4.Controls.Add(this.label26);
     this.tabPage4.Controls.Add(this.label25);
     this.tabPage4.Controls.Add(this.label24);
     this.tabPage4.Controls.Add(this.label2);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Size = new System.Drawing.Size(902, 532);
     this.tabPage4.Text = "Summary";
     //
     // lblItemID
     //
     this.lblItemID.AutoSize = true;
     this.lblItemID.Enabled = false;
     this.lblItemID.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblItemID.ForeColor = System.Drawing.Color.Black;
     this.lblItemID.Location = new System.Drawing.Point(252, 473);
     this.lblItemID.Name = "lblItemID";
     this.lblItemID.Size = new System.Drawing.Size(14, 13);
     this.lblItemID.TabIndex = 26;
     this.lblItemID.Text = "0";
     //
     // lblLastIssue
     //
     this.lblLastIssue.AutoSize = true;
     this.lblLastIssue.Enabled = false;
     this.lblLastIssue.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLastIssue.ForeColor = System.Drawing.Color.Black;
     this.lblLastIssue.Location = new System.Drawing.Point(251, 355);
     this.lblLastIssue.Name = "lblLastIssue";
     this.lblLastIssue.Size = new System.Drawing.Size(14, 13);
     this.lblLastIssue.TabIndex = 24;
     this.lblLastIssue.Text = "0";
     //
     // txtSOH
     //
     this.txtSOH.AutoSize = true;
     this.txtSOH.Enabled = false;
     this.txtSOH.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSOH.ForeColor = System.Drawing.Color.Black;
     this.txtSOH.Location = new System.Drawing.Point(251, 85);
     this.txtSOH.Name = "txtSOH";
     this.txtSOH.Size = new System.Drawing.Size(14, 13);
     this.txtSOH.TabIndex = 25;
     this.txtSOH.Text = "0";
     //
     // txtAMC
     //
     this.txtAMC.AutoSize = true;
     this.txtAMC.Enabled = false;
     this.txtAMC.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtAMC.ForeColor = System.Drawing.Color.Black;
     this.txtAMC.Location = new System.Drawing.Point(251, 115);
     this.txtAMC.Name = "txtAMC";
     this.txtAMC.Size = new System.Drawing.Size(14, 13);
     this.txtAMC.TabIndex = 25;
     this.txtAMC.Text = "0";
     //
     // txtMOS
     //
     this.txtMOS.AutoSize = true;
     this.txtMOS.Enabled = false;
     this.txtMOS.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMOS.ForeColor = System.Drawing.Color.Black;
     this.txtMOS.Location = new System.Drawing.Point(251, 145);
     this.txtMOS.Name = "txtMOS";
     this.txtMOS.Size = new System.Drawing.Size(14, 13);
     this.txtMOS.TabIndex = 25;
     this.txtMOS.Text = "0";
     //
     // txtMin
     //
     this.txtMin.AutoSize = true;
     this.txtMin.Enabled = false;
     this.txtMin.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMin.ForeColor = System.Drawing.Color.Black;
     this.txtMin.Location = new System.Drawing.Point(251, 175);
     this.txtMin.Name = "txtMin";
     this.txtMin.Size = new System.Drawing.Size(14, 13);
     this.txtMin.TabIndex = 25;
     this.txtMin.Text = "0";
     //
     // txtMax
     //
     this.txtMax.AutoSize = true;
     this.txtMax.Enabled = false;
     this.txtMax.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMax.ForeColor = System.Drawing.Color.Black;
     this.txtMax.Location = new System.Drawing.Point(251, 205);
     this.txtMax.Name = "txtMax";
     this.txtMax.Size = new System.Drawing.Size(14, 13);
     this.txtMax.TabIndex = 25;
     this.txtMax.Text = "0";
     //
     // txtReorderAmount
     //
     this.txtReorderAmount.AutoSize = true;
     this.txtReorderAmount.Enabled = false;
     this.txtReorderAmount.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtReorderAmount.ForeColor = System.Drawing.Color.Black;
     this.txtReorderAmount.Location = new System.Drawing.Point(251, 235);
     this.txtReorderAmount.Name = "txtReorderAmount";
     this.txtReorderAmount.Size = new System.Drawing.Size(14, 13);
     this.txtReorderAmount.TabIndex = 25;
     this.txtReorderAmount.Text = "0";
     //
     // txtExpiredAmount
     //
     this.txtExpiredAmount.AutoSize = true;
     this.txtExpiredAmount.Enabled = false;
     this.txtExpiredAmount.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtExpiredAmount.ForeColor = System.Drawing.Color.Black;
     this.txtExpiredAmount.Location = new System.Drawing.Point(251, 265);
     this.txtExpiredAmount.Name = "txtExpiredAmount";
     this.txtExpiredAmount.Size = new System.Drawing.Size(14, 13);
     this.txtExpiredAmount.TabIndex = 25;
     this.txtExpiredAmount.Text = "0";
     //
     // txtNearExp
     //
     this.txtNearExp.AutoSize = true;
     this.txtNearExp.Enabled = false;
     this.txtNearExp.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNearExp.ForeColor = System.Drawing.Color.Black;
     this.txtNearExp.Location = new System.Drawing.Point(251, 295);
     this.txtNearExp.Name = "txtNearExp";
     this.txtNearExp.Size = new System.Drawing.Size(14, 13);
     this.txtNearExp.TabIndex = 25;
     this.txtNearExp.Text = "0";
     //
     // txtFreeItem
     //
     this.txtFreeItem.AutoSize = true;
     this.txtFreeItem.Enabled = false;
     this.txtFreeItem.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtFreeItem.ForeColor = System.Drawing.Color.Black;
     this.txtFreeItem.Location = new System.Drawing.Point(251, 385);
     this.txtFreeItem.Name = "txtFreeItem";
     this.txtFreeItem.Size = new System.Drawing.Size(22, 13);
     this.txtFreeItem.TabIndex = 25;
     this.txtFreeItem.Text = "No";
     //
     // txtRefrigerated
     //
     this.txtRefrigerated.AutoSize = true;
     this.txtRefrigerated.Enabled = false;
     this.txtRefrigerated.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRefrigerated.ForeColor = System.Drawing.Color.Black;
     this.txtRefrigerated.Location = new System.Drawing.Point(251, 415);
     this.txtRefrigerated.Name = "txtRefrigerated";
     this.txtRefrigerated.Size = new System.Drawing.Size(22, 13);
     this.txtRefrigerated.TabIndex = 25;
     this.txtRefrigerated.Text = "No";
     //
     // txtPediatric
     //
     this.txtPediatric.AutoSize = true;
     this.txtPediatric.Enabled = false;
     this.txtPediatric.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPediatric.ForeColor = System.Drawing.Color.Black;
     this.txtPediatric.Location = new System.Drawing.Point(251, 445);
     this.txtPediatric.Name = "txtPediatric";
     this.txtPediatric.Size = new System.Drawing.Size(22, 13);
     this.txtPediatric.TabIndex = 25;
     this.txtPediatric.Text = "No";
     this.txtPediatric.Visible = false;
     //
     // lblLastRec
     //
     this.lblLastRec.AutoSize = true;
     this.lblLastRec.Enabled = false;
     this.lblLastRec.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLastRec.ForeColor = System.Drawing.Color.Black;
     this.lblLastRec.Location = new System.Drawing.Point(251, 325);
     this.lblLastRec.Name = "lblLastRec";
     this.lblLastRec.Size = new System.Drawing.Size(14, 13);
     this.lblLastRec.TabIndex = 25;
     this.lblLastRec.Text = "0";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label31.Location = new System.Drawing.Point(137, 355);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(103, 13);
     this.label31.TabIndex = 22;
     this.label31.Text = "Last Issued Date";
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label32.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label32.Location = new System.Drawing.Point(123, 325);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(117, 13);
     this.label32.TabIndex = 23;
     this.label32.Text = "Last Received Date";
     //
     // lblstat
     //
     this.lblstat.AutoSize = true;
     this.lblstat.Enabled = false;
     this.lblstat.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblstat.ForeColor = System.Drawing.Color.Black;
     this.lblstat.Location = new System.Drawing.Point(251, 55);
     this.lblstat.Name = "lblstat";
     this.lblstat.Size = new System.Drawing.Size(14, 13);
     this.lblstat.TabIndex = 21;
     this.lblstat.Text = "0";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label30.Location = new System.Drawing.Point(149, 55);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(91, 13);
     this.label30.TabIndex = 20;
     this.label30.Text = "Current Status";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label9.Location = new System.Drawing.Point(118, 295);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(122, 13);
     this.label9.TabIndex = 17;
     this.label9.Text = "Near Expiry Amount";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label8.Location = new System.Drawing.Point(190, 265);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(50, 13);
     this.label8.TabIndex = 17;
     this.label8.Text = "Expired";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label7.Location = new System.Drawing.Point(139, 235);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(101, 13);
     this.label7.TabIndex = 17;
     this.label7.Text = "Reorder Amount";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label6.Location = new System.Drawing.Point(140, 145);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(100, 13);
     this.label6.TabIndex = 17;
     this.label6.Text = "Months Of Stock";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label5.Location = new System.Drawing.Point(142, 205);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(98, 13);
     this.label5.TabIndex = 17;
     this.label5.Text = "Maximum Value";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label4.Location = new System.Drawing.Point(146, 175);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(94, 13);
     this.label4.TabIndex = 16;
     this.label4.Text = "Minimum Value";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label3.Location = new System.Drawing.Point(58, 115);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(182, 13);
     this.label3.TabIndex = 19;
     this.label3.Text = "Average Monthly Consumption";
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label40.Location = new System.Drawing.Point(189, 473);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(52, 13);
     this.label40.TabIndex = 18;
     this.label40.Text = "Item ID";
     this.label40.Visible = false;
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label26.Location = new System.Drawing.Point(138, 445);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(102, 13);
     this.label26.TabIndex = 18;
     this.label26.Text = "Is Pediatric Item";
     this.label26.Visible = false;
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label25.Location = new System.Drawing.Point(116, 415);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(124, 13);
     this.label25.TabIndex = 18;
     this.label25.Text = "Is Refrigerated Item";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label24.Location = new System.Drawing.Point(162, 385);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(78, 13);
     this.label24.TabIndex = 18;
     this.label24.Text = "Is Free Item";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label2.Location = new System.Drawing.Point(148, 85);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(92, 13);
     this.label2.TabIndex = 18;
     this.label2.Text = "Stock On Hand";
     //
     // tabPage5
     //
     this.tabPage5.Appearance.PageClient.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.tabPage5.Appearance.PageClient.Options.UseBackColor = true;
     this.tabPage5.Controls.Add(this.cboFiscalYear);
     this.tabPage5.Controls.Add(this.labelControl1);
     this.tabPage5.Controls.Add(this.gridItemsList);
     this.tabPage5.Controls.Add(this.txtBBalance);
     this.tabPage5.Controls.Add(this.label28);
     this.tabPage5.Controls.Add(this.label27);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Size = new System.Drawing.Size(902, 532);
     this.tabPage5.Text = "Bin Card";
     //
     // cboFiscalYear
     //
     this.cboFiscalYear.Location = new System.Drawing.Point(794, 41);
     this.cboFiscalYear.Name = "cboFiscalYear";
     this.cboFiscalYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboFiscalYear.Size = new System.Drawing.Size(100, 20);
     this.cboFiscalYear.TabIndex = 34;
     this.cboFiscalYear.SelectedIndexChanged += new System.EventHandler(this.cboFiscalYear_SelectedIndexChanged);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(723, 44);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(51, 13);
     this.labelControl1.TabIndex = 33;
     this.labelControl1.Text = "Fiscal Year";
     //
     // gridItemsList
     //
     this.gridItemsList.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.gridItemsList.Location = new System.Drawing.Point(11, 68);
     this.gridItemsList.MainView = this.gridItemListView;
     this.gridItemsList.Name = "gridItemsList";
     this.gridItemsList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1,
     this.repositoryItemLookUpEdit1});
     this.gridItemsList.Size = new System.Drawing.Size(883, 449);
     this.gridItemsList.TabIndex = 32;
     this.gridItemsList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridItemListView});
     //
     // gridItemListView
     //
     this.gridItemListView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colItemName,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13,
     this.gridColumn9,
     this.gridColumn5,
     this.gridColumn14,
     this.gridColumn15});
     styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.Honeydew;
     styleFormatCondition1.Appearance.Options.UseBackColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Column = this.gridColumn7;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.NotEqual;
     styleFormatCondition1.Value1 = "";
     styleFormatCondition2.Appearance.BackColor = System.Drawing.Color.White;
     styleFormatCondition2.Appearance.Options.UseBackColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Column = this.gridColumn8;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.NotEqual;
     styleFormatCondition2.Value1 = "";
     this.gridItemListView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1,
     styleFormatCondition2});
     this.gridItemListView.GridControl = this.gridItemsList;
     this.gridItemListView.IndicatorWidth = 40;
     this.gridItemListView.Name = "gridItemListView";
     this.gridItemListView.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridItemListView.OptionsDetail.AllowExpandEmptyDetails = true;
     this.gridItemListView.OptionsDetail.EnableDetailToolTip = true;
     this.gridItemListView.OptionsDetail.SmartDetailExpandButtonMode = DevExpress.XtraGrid.Views.Grid.DetailExpandButtonMode.AlwaysEnabled;
     this.gridItemListView.OptionsDetail.SmartDetailHeight = true;
     this.gridItemListView.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridItemListView.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridItemListView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridItemListView.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gridItemListView.OptionsSelection.EnableAppearanceHideSelection = false;
     this.gridItemListView.OptionsView.EnableAppearanceEvenRow = true;
     this.gridItemListView.OptionsView.EnableAppearanceOddRow = true;
     this.gridItemListView.OptionsView.ShowFooter = true;
     this.gridItemListView.OptionsView.ShowGroupPanel = false;
     this.gridItemListView.OptionsView.ShowIndicator = false;
     //
     // colItemName
     //
     this.colItemName.Caption = "Date";
     this.colItemName.FieldName = "Date";
     this.colItemName.Name = "colItemName";
     this.colItemName.OptionsColumn.AllowEdit = false;
     this.colItemName.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.colItemName.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.OptionsFilter.AllowFilter = false;
     this.colItemName.Visible = true;
     this.colItemName.VisibleIndex = 0;
     this.colItemName.Width = 65;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Ref no.";
     this.gridColumn6.FieldName = "RefNo";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.OptionsColumn.AllowMove = false;
     this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.OptionsColumn.ReadOnly = true;
     this.gridColumn6.OptionsFilter.AllowFilter = false;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 1;
     this.gridColumn6.Width = 68;
     //
     // gridColumn10
     //
     this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn10.Caption = "Unit Price";
     this.gridColumn10.DisplayFormat.FormatString = "#,##0.#0";
     this.gridColumn10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn10.FieldName = "UnitPrice";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowEdit = false;
     this.gridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn10.OptionsColumn.ReadOnly = true;
     this.gridColumn10.OptionsFilter.AllowFilter = false;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 5;
     this.gridColumn10.Width = 59;
     //
     // gridColumn11
     //
     this.gridColumn11.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn11.Caption = "Balance";
     this.gridColumn11.DisplayFormat.FormatString = "#,##0";
     this.gridColumn11.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn11.FieldName = "Balance";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowEdit = false;
     this.gridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn11.OptionsColumn.ReadOnly = true;
     this.gridColumn11.OptionsFilter.AllowFilter = false;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 6;
     this.gridColumn11.Width = 69;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Batch No";
     this.gridColumn12.FieldName = "BatchNo";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.AllowEdit = false;
     this.gridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn12.OptionsColumn.ReadOnly = true;
     this.gridColumn12.OptionsFilter.AllowFilter = false;
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 7;
     this.gridColumn12.Width = 86;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Expiry Date";
     this.gridColumn13.DisplayFormat.FormatString = "MMM dd,yyyy";
     this.gridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn13.FieldName = "ExpDate";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.OptionsColumn.AllowEdit = false;
     this.gridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn13.OptionsColumn.ReadOnly = true;
     this.gridColumn13.OptionsFilter.AllowFilter = false;
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 8;
     this.gridColumn13.Width = 94;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "To / From";
     this.gridColumn9.FieldName = "ToFrom";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowEdit = false;
     this.gridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     this.gridColumn9.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn9.OptionsFilter.AllowFilter = false;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 9;
     this.gridColumn9.Width = 139;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Loss";
     this.gridColumn5.FieldName = "Loss";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Adjustment";
     this.gridColumn14.FieldName = "Adjustment";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowEdit = false;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Unit";
     this.gridColumn15.ColumnEdit = this.repositoryItemLookUpEdit1;
     this.gridColumn15.FieldName = "UnitID";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.OptionsColumn.ReadOnly = true;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 4;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Text", "Text", 32, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.repositoryItemLookUpEdit1.DataSource = this.unitBindingSource;
     this.repositoryItemLookUpEdit1.DisplayMember = "Text";
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     this.repositoryItemLookUpEdit1.NullText = "No Unit";
     this.repositoryItemLookUpEdit1.ValueMember = "ID";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.repositoryItemCheckEdit1.ValueGrayed = false;
     //
     // txtBBalance
     //
     this.txtBBalance.EditValue = "0";
     this.txtBBalance.Location = new System.Drawing.Point(126, 41);
     this.txtBBalance.Name = "txtBBalance";
     this.txtBBalance.Properties.Appearance.BackColor = System.Drawing.SystemColors.Info;
     this.txtBBalance.Properties.Appearance.Options.UseBackColor = true;
     this.txtBBalance.Properties.ReadOnly = true;
     this.txtBBalance.Size = new System.Drawing.Size(167, 20);
     this.txtBBalance.TabIndex = 11;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(7, 15);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(200, 23);
     this.label28.TabIndex = 10;
     this.label28.Text = "Electronic Bin Card ";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(8, 44);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(112, 13);
     this.label27.TabIndex = 10;
     this.label27.Text = "Beginning Balance";
     //
     // tabPage1
     //
     this.tabPage1.Appearance.PageClient.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.tabPage1.Appearance.PageClient.Options.UseBackColor = true;
     this.tabPage1.Controls.Add(this.lkShowTable);
     this.tabPage1.Controls.Add(this.label29);
     this.tabPage1.Controls.Add(this.chartBar);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(902, 532);
     this.tabPage1.Text = "SOH Trend";
     //
     // lkShowTable
     //
     this.lkShowTable.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lkShowTable.AutoSize = true;
     this.lkShowTable.Location = new System.Drawing.Point(1094, 12);
     this.lkShowTable.Name = "lkShowTable";
     this.lkShowTable.Size = new System.Drawing.Size(73, 13);
     this.lkShowTable.TabIndex = 12;
     this.lkShowTable.TabStop = true;
     this.lkShowTable.Text = "Show Table";
     this.lkShowTable.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lkShowTable_LinkClicked);
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label29.Location = new System.Drawing.Point(7, 12);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(231, 23);
     this.label29.TabIndex = 11;
     this.label29.Text = "Trend - Stock On Hand";
     //
     // tabPage9
     //
     this.tabPage9.Appearance.PageClient.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.tabPage9.Appearance.PageClient.Options.UseBackColor = true;
     this.tabPage9.Controls.Add(this.lkDetailCons);
     this.tabPage9.Controls.Add(this.label33);
     this.tabPage9.Controls.Add(this.consuTrend);
     this.tabPage9.Name = "tabPage9";
     this.tabPage9.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage9.Size = new System.Drawing.Size(902, 532);
     this.tabPage9.Text = "Consumption Trend";
     //
     // lkDetailCons
     //
     this.lkDetailCons.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lkDetailCons.AutoSize = true;
     this.lkDetailCons.Location = new System.Drawing.Point(1100, 17);
     this.lkDetailCons.Name = "lkDetailCons";
     this.lkDetailCons.Size = new System.Drawing.Size(73, 13);
     this.lkDetailCons.TabIndex = 16;
     this.lkDetailCons.TabStop = true;
     this.lkDetailCons.Text = "Show Table";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label33.Location = new System.Drawing.Point(7, 12);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(214, 23);
     this.label33.TabIndex = 12;
     this.label33.Text = "Trend - Consumption";
     //
     // consuTrend
     //
     this.consuTrend.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.consuTrend.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     xyDiagram2.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram2.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram2.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram2.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram2.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram2.AxisY.VisibleInPanesSerializable = "-1";
     this.consuTrend.Diagram = xyDiagram2;
     this.consuTrend.Location = new System.Drawing.Point(3, 38);
     this.consuTrend.Name = "consuTrend";
     this.consuTrend.OptionsPrint.SizeMode = DevExpress.XtraCharts.Printing.PrintSizeMode.Stretch;
     sideBySideBarSeriesLabel4.LineVisible = true;
     series3.Label = sideBySideBarSeriesLabel4;
     series3.Name = "Series 1";
     sideBySideBarSeriesLabel5.LineVisible = true;
     series4.Label = sideBySideBarSeriesLabel5;
     series4.Name = "Series 2";
     this.consuTrend.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series3,
     series4};
     sideBySideBarSeriesLabel6.LineVisible = true;
     this.consuTrend.SeriesTemplate.Label = sideBySideBarSeriesLabel6;
     this.consuTrend.Size = new System.Drawing.Size(901, 487);
     this.consuTrend.TabIndex = 3;
     //
     // tabPage2
     //
     this.tabPage2.Appearance.PageClient.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.tabPage2.Appearance.PageClient.Options.UseBackColor = true;
     this.tabPage2.Controls.Add(this.lkDetailAmc);
     this.tabPage2.Controls.Add(this.label34);
     this.tabPage2.Controls.Add(this.chartAmc);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(902, 532);
     this.tabPage2.Text = "AMC Trend";
     //
     // lkDetailAmc
     //
     this.lkDetailAmc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lkDetailAmc.AutoSize = true;
     this.lkDetailAmc.Location = new System.Drawing.Point(1101, 22);
     this.lkDetailAmc.Name = "lkDetailAmc";
     this.lkDetailAmc.Size = new System.Drawing.Size(73, 13);
     this.lkDetailAmc.TabIndex = 14;
     this.lkDetailAmc.TabStop = true;
     this.lkDetailAmc.Text = "Show Table";
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label34.Location = new System.Drawing.Point(7, 12);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(455, 23);
     this.label34.TabIndex = 12;
     this.label34.Text = "Trend - Average Monthly Consumption (AMC) ";
     //
     // chartAmc
     //
     this.chartAmc.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.chartAmc.Diagram = xyDiagram3;
     this.chartAmc.Location = new System.Drawing.Point(3, 38);
     this.chartAmc.Name = "chartAmc";
     this.chartAmc.OptionsPrint.SizeMode = DevExpress.XtraCharts.Printing.PrintSizeMode.Stretch;
     sideBySideBarSeriesLabel7.LineVisible = true;
     series5.Label = sideBySideBarSeriesLabel7;
     series5.Name = "Series 1";
     sideBySideBarSeriesLabel8.LineVisible = true;
     series6.Label = sideBySideBarSeriesLabel8;
     series6.Name = "Series 2";
     this.chartAmc.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series5,
     series6};
     sideBySideBarSeriesLabel9.LineVisible = true;
     this.chartAmc.SeriesTemplate.Label = sideBySideBarSeriesLabel9;
     this.chartAmc.Size = new System.Drawing.Size(899, 487);
     this.chartAmc.TabIndex = 3;
     //
     // tabPage3
     //
     this.tabPage3.Appearance.PageClient.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.tabPage3.Appearance.PageClient.Options.UseBackColor = true;
     this.tabPage3.Controls.Add(this.lkDetailMos);
     this.tabPage3.Controls.Add(this.label35);
     this.tabPage3.Controls.Add(this.chartMOS);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size = new System.Drawing.Size(902, 532);
     this.tabPage3.Text = "MOS Trend";
     //
     // lkDetailMos
     //
     this.lkDetailMos.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lkDetailMos.AutoSize = true;
     this.lkDetailMos.Location = new System.Drawing.Point(1100, 24);
     this.lkDetailMos.Name = "lkDetailMos";
     this.lkDetailMos.Size = new System.Drawing.Size(73, 13);
     this.lkDetailMos.TabIndex = 16;
     this.lkDetailMos.TabStop = true;
     this.lkDetailMos.Text = "Show Table";
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label35.Location = new System.Drawing.Point(7, 12);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(250, 23);
     this.label35.TabIndex = 12;
     this.label35.Text = "Trend - Months of Stock ";
     //
     // chartMOS
     //
     this.chartMOS.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.chartMOS.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     xyDiagram4.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram4.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram4.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram4.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram4.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram4.AxisY.VisibleInPanesSerializable = "-1";
     this.chartMOS.Diagram = xyDiagram4;
     this.chartMOS.Location = new System.Drawing.Point(3, 38);
     this.chartMOS.Name = "chartMOS";
     this.chartMOS.OptionsPrint.SizeMode = DevExpress.XtraCharts.Printing.PrintSizeMode.Stretch;
     sideBySideBarSeriesLabel10.LineVisible = true;
     series7.Label = sideBySideBarSeriesLabel10;
     series7.Name = "Series 1";
     sideBySideBarSeriesLabel11.LineVisible = true;
     series8.Label = sideBySideBarSeriesLabel11;
     series8.Name = "Series 2";
     this.chartMOS.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series7,
     series8};
     sideBySideBarSeriesLabel12.LineVisible = true;
     this.chartMOS.SeriesTemplate.Label = sideBySideBarSeriesLabel12;
     this.chartMOS.Size = new System.Drawing.Size(898, 490);
     this.chartMOS.TabIndex = 4;
     //
     // tabPage6
     //
     this.tabPage6.Appearance.PageClient.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.tabPage6.Appearance.PageClient.Options.UseBackColor = true;
     this.tabPage6.Controls.Add(this.label36);
     this.tabPage6.Controls.Add(this.chartComp);
     this.tabPage6.Name = "tabPage6";
     this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage6.Size = new System.Drawing.Size(902, 532);
     this.tabPage6.Text = "Activity Trend";
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label36.Location = new System.Drawing.Point(7, 12);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(166, 23);
     this.label36.TabIndex = 12;
     this.label36.Text = "Trend - Activity ";
     //
     // chartComp
     //
     this.chartComp.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.chartComp.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     xyDiagram5.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram5.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram5.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram5.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram5.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram5.AxisY.VisibleInPanesSerializable = "-1";
     this.chartComp.Diagram = xyDiagram5;
     this.chartComp.Location = new System.Drawing.Point(3, 38);
     this.chartComp.Name = "chartComp";
     this.chartComp.OptionsPrint.SizeMode = DevExpress.XtraCharts.Printing.PrintSizeMode.Stretch;
     sideBySideBarSeriesLabel13.LineVisible = true;
     series9.Label = sideBySideBarSeriesLabel13;
     series9.Name = "Series 1";
     sideBySideBarSeriesLabel14.LineVisible = true;
     series10.Label = sideBySideBarSeriesLabel14;
     series10.Name = "Series 2";
     this.chartComp.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series9,
     series10};
     sideBySideBarSeriesLabel15.LineVisible = true;
     this.chartComp.SeriesTemplate.Label = sideBySideBarSeriesLabel15;
     this.chartComp.Size = new System.Drawing.Size(899, 487);
     this.chartComp.TabIndex = 3;
     //
     // tabPage7
     //
     this.tabPage7.Appearance.PageClient.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.tabPage7.Appearance.PageClient.Options.UseBackColor = true;
     this.tabPage7.Controls.Add(this.label20);
     this.tabPage7.Controls.Add(this.lblTime);
     this.tabPage7.Controls.Add(this.lblCurStatus);
     this.tabPage7.Controls.Add(this.label19);
     this.tabPage7.Controls.Add(this.tableLayoutPanel1);
     this.tabPage7.Name = "tabPage7";
     this.tabPage7.PageVisible = false;
     this.tabPage7.Size = new System.Drawing.Size(902, 532);
     this.tabPage7.Text = "Stock Status Trend";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.Location = new System.Drawing.Point(35, 106);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(143, 16);
     this.label20.TabIndex = 1;
     this.label20.Text = "Trend (No. of times)";
     //
     // lblTime
     //
     this.lblTime.AutoSize = true;
     this.lblTime.Location = new System.Drawing.Point(257, 68);
     this.lblTime.Name = "lblTime";
     this.lblTime.Size = new System.Drawing.Size(0, 13);
     this.lblTime.TabIndex = 1;
     //
     // lblCurStatus
     //
     this.lblCurStatus.AutoSize = true;
     this.lblCurStatus.Location = new System.Drawing.Point(151, 68);
     this.lblCurStatus.Name = "lblCurStatus";
     this.lblCurStatus.Size = new System.Drawing.Size(0, 13);
     this.lblCurStatus.TabIndex = 1;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(46, 68);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(104, 13);
     this.label19.TabIndex = 1;
     this.label19.Text = "Current Status : ";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
     this.tableLayoutPanel1.ColumnCount = 4;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 182F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 75F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 85F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 208F));
     this.tableLayoutPanel1.Controls.Add(this.label10, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.label11, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.label12, 2, 0);
     this.tableLayoutPanel1.Controls.Add(this.label13, 3, 0);
     this.tableLayoutPanel1.Controls.Add(this.label14, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.label15, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.label16, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.label18, 0, 4);
     this.tableLayoutPanel1.Controls.Add(this.lblThreeStockout, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.lblSixStockOut, 2, 1);
     this.tableLayoutPanel1.Controls.Add(this.lblTwelveStockOut, 3, 1);
     this.tableLayoutPanel1.Controls.Add(this.lblThreeNearStock, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.lblSixNearStock, 2, 2);
     this.tableLayoutPanel1.Controls.Add(this.lblTwelveNear, 3, 2);
     this.tableLayoutPanel1.Controls.Add(this.lblThreeBelowMin, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.lblSixBelowMin, 2, 3);
     this.tableLayoutPanel1.Controls.Add(this.lblTwelveBelowMin, 3, 3);
     this.tableLayoutPanel1.Controls.Add(this.lblTwelveOverStock, 3, 4);
     this.tableLayoutPanel1.Controls.Add(this.lblSixOverStock, 2, 4);
     this.tableLayoutPanel1.Controls.Add(this.lblThreeOverStock, 1, 4);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(38, 134);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 5;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(419, 109);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(4, 1);
     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(187, 1);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(52, 13);
     this.label11.TabIndex = 1;
     this.label11.Text = "3 Month";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(263, 1);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(52, 13);
     this.label12.TabIndex = 1;
     this.label12.Text = "6 Month";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(349, 1);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(59, 13);
     this.label13.TabIndex = 1;
     this.label13.Text = "12 Month";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(4, 22);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(63, 13);
     this.label14.TabIndex = 1;
     this.label14.Text = "Stock Out";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(4, 43);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(94, 13);
     this.label15.TabIndex = 1;
     this.label15.Text = "Near Stock Out";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(4, 64);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(64, 13);
     this.label16.TabIndex = 1;
     this.label16.Text = "Below Min";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(4, 85);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(71, 13);
     this.label18.TabIndex = 1;
     this.label18.Text = "Over Stock";
     //
     // lblThreeStockout
     //
     this.lblThreeStockout.AutoSize = true;
     this.lblThreeStockout.Location = new System.Drawing.Point(187, 22);
     this.lblThreeStockout.Name = "lblThreeStockout";
     this.lblThreeStockout.Size = new System.Drawing.Size(14, 13);
     this.lblThreeStockout.TabIndex = 1;
     this.lblThreeStockout.Text = "0";
     //
     // lblSixStockOut
     //
     this.lblSixStockOut.AutoSize = true;
     this.lblSixStockOut.Location = new System.Drawing.Point(263, 22);
     this.lblSixStockOut.Name = "lblSixStockOut";
     this.lblSixStockOut.Size = new System.Drawing.Size(14, 13);
     this.lblSixStockOut.TabIndex = 1;
     this.lblSixStockOut.Text = "0";
     //
     // lblTwelveStockOut
     //
     this.lblTwelveStockOut.AutoSize = true;
     this.lblTwelveStockOut.Location = new System.Drawing.Point(349, 22);
     this.lblTwelveStockOut.Name = "lblTwelveStockOut";
     this.lblTwelveStockOut.Size = new System.Drawing.Size(14, 13);
     this.lblTwelveStockOut.TabIndex = 1;
     this.lblTwelveStockOut.Text = "0";
     //
     // lblThreeNearStock
     //
     this.lblThreeNearStock.AutoSize = true;
     this.lblThreeNearStock.Location = new System.Drawing.Point(187, 43);
     this.lblThreeNearStock.Name = "lblThreeNearStock";
     this.lblThreeNearStock.Size = new System.Drawing.Size(14, 13);
     this.lblThreeNearStock.TabIndex = 1;
     this.lblThreeNearStock.Text = "0";
     //
     // lblSixNearStock
     //
     this.lblSixNearStock.AutoSize = true;
     this.lblSixNearStock.Location = new System.Drawing.Point(263, 43);
     this.lblSixNearStock.Name = "lblSixNearStock";
     this.lblSixNearStock.Size = new System.Drawing.Size(14, 13);
     this.lblSixNearStock.TabIndex = 1;
     this.lblSixNearStock.Text = "0";
     //
     // lblTwelveNear
     //
     this.lblTwelveNear.AutoSize = true;
     this.lblTwelveNear.Location = new System.Drawing.Point(349, 43);
     this.lblTwelveNear.Name = "lblTwelveNear";
     this.lblTwelveNear.Size = new System.Drawing.Size(14, 13);
     this.lblTwelveNear.TabIndex = 1;
     this.lblTwelveNear.Text = "0";
     //
     // lblThreeBelowMin
     //
     this.lblThreeBelowMin.AutoSize = true;
     this.lblThreeBelowMin.Location = new System.Drawing.Point(187, 64);
     this.lblThreeBelowMin.Name = "lblThreeBelowMin";
     this.lblThreeBelowMin.Size = new System.Drawing.Size(14, 13);
     this.lblThreeBelowMin.TabIndex = 1;
     this.lblThreeBelowMin.Text = "0";
     //
     // lblSixBelowMin
     //
     this.lblSixBelowMin.AutoSize = true;
     this.lblSixBelowMin.Location = new System.Drawing.Point(263, 64);
     this.lblSixBelowMin.Name = "lblSixBelowMin";
     this.lblSixBelowMin.Size = new System.Drawing.Size(14, 13);
     this.lblSixBelowMin.TabIndex = 1;
     this.lblSixBelowMin.Text = "0";
     //
     // lblTwelveBelowMin
     //
     this.lblTwelveBelowMin.AutoSize = true;
     this.lblTwelveBelowMin.Location = new System.Drawing.Point(349, 64);
     this.lblTwelveBelowMin.Name = "lblTwelveBelowMin";
     this.lblTwelveBelowMin.Size = new System.Drawing.Size(14, 13);
     this.lblTwelveBelowMin.TabIndex = 1;
     this.lblTwelveBelowMin.Text = "0";
     //
     // lblTwelveOverStock
     //
     this.lblTwelveOverStock.AutoSize = true;
     this.lblTwelveOverStock.Location = new System.Drawing.Point(349, 85);
     this.lblTwelveOverStock.Name = "lblTwelveOverStock";
     this.lblTwelveOverStock.Size = new System.Drawing.Size(14, 13);
     this.lblTwelveOverStock.TabIndex = 1;
     this.lblTwelveOverStock.Text = "0";
     //
     // lblSixOverStock
     //
     this.lblSixOverStock.AutoSize = true;
     this.lblSixOverStock.Location = new System.Drawing.Point(263, 85);
     this.lblSixOverStock.Name = "lblSixOverStock";
     this.lblSixOverStock.Size = new System.Drawing.Size(14, 13);
     this.lblSixOverStock.TabIndex = 1;
     this.lblSixOverStock.Text = "0";
     //
     // lblThreeOverStock
     //
     this.lblThreeOverStock.AutoSize = true;
     this.lblThreeOverStock.Location = new System.Drawing.Point(187, 85);
     this.lblThreeOverStock.Name = "lblThreeOverStock";
     this.lblThreeOverStock.Size = new System.Drawing.Size(14, 13);
     this.lblThreeOverStock.TabIndex = 1;
     this.lblThreeOverStock.Text = "0";
     //
     // tabPage8
     //
     this.tabPage8.Appearance.PageClient.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.tabPage8.Appearance.PageClient.Options.UseBackColor = true;
     this.tabPage8.Controls.Add(this.lblAvgIssues);
     this.tabPage8.Controls.Add(this.lblAvgReceives);
     this.tabPage8.Controls.Add(this.lblLastIssues);
     this.tabPage8.Controls.Add(this.lblLastReceive);
     this.tabPage8.Controls.Add(this.label23);
     this.tabPage8.Controls.Add(this.label22);
     this.tabPage8.Controls.Add(this.label21);
     this.tabPage8.Controls.Add(this.label17);
     this.tabPage8.Name = "tabPage8";
     this.tabPage8.Size = new System.Drawing.Size(902, 532);
     this.tabPage8.Text = "Transaction";
     //
     // lblAvgIssues
     //
     this.lblAvgIssues.AutoSize = true;
     this.lblAvgIssues.Location = new System.Drawing.Point(382, 195);
     this.lblAvgIssues.Name = "lblAvgIssues";
     this.lblAvgIssues.Size = new System.Drawing.Size(14, 13);
     this.lblAvgIssues.TabIndex = 1;
     this.lblAvgIssues.Text = "0";
     this.lblAvgIssues.Visible = false;
     //
     // lblAvgReceives
     //
     this.lblAvgReceives.AutoSize = true;
     this.lblAvgReceives.Location = new System.Drawing.Point(381, 165);
     this.lblAvgReceives.Name = "lblAvgReceives";
     this.lblAvgReceives.Size = new System.Drawing.Size(14, 13);
     this.lblAvgReceives.TabIndex = 1;
     this.lblAvgReceives.Text = "0";
     this.lblAvgReceives.Visible = false;
     //
     // lblLastIssues
     //
     this.lblLastIssues.AutoSize = true;
     this.lblLastIssues.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLastIssues.Location = new System.Drawing.Point(386, 111);
     this.lblLastIssues.Name = "lblLastIssues";
     this.lblLastIssues.Size = new System.Drawing.Size(22, 23);
     this.lblLastIssues.TabIndex = 1;
     this.lblLastIssues.Text = "0";
     //
     // lblLastReceive
     //
     this.lblLastReceive.AutoSize = true;
     this.lblLastReceive.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLastReceive.Location = new System.Drawing.Point(386, 78);
     this.lblLastReceive.Name = "lblLastReceive";
     this.lblLastReceive.Size = new System.Drawing.Size(22, 23);
     this.lblLastReceive.TabIndex = 1;
     this.lblLastReceive.Text = "0";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label23.Location = new System.Drawing.Point(169, 194);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(210, 16);
     this.label23.TabIndex = 0;
     this.label23.Text = "AVG. no. of days b/n Issues : ";
     this.label23.Visible = false;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location = new System.Drawing.Point(152, 162);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(226, 16);
     this.label22.TabIndex = 0;
     this.label22.Text = "AVG. no. of days b/n Receives : ";
     this.label22.Visible = false;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.Location = new System.Drawing.Point(165, 113);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(214, 23);
     this.label21.TabIndex = 0;
     this.label21.Text = "Last Issued Date : ";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location = new System.Drawing.Point(141, 76);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(239, 23);
     this.label17.TabIndex = 0;
     this.label17.Text = "Last Received Date : ";
     //
     // tabPage10
     //
     this.tabPage10.Appearance.PageClient.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.tabPage10.Appearance.PageClient.Options.UseBackColor = true;
     this.tabPage10.Controls.Add(this.chartPie);
     this.tabPage10.Name = "tabPage10";
     this.tabPage10.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage10.Size = new System.Drawing.Size(902, 532);
     this.tabPage10.Text = "Stock Expiry Status";
     //
     // chartPie
     //
     this.chartPie.AppearanceNameSerializable = "Chameleon";
     this.chartPie.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.chartPie.BorderOptions.Visible = false;
     simpleDiagram3D1.RotationMatrixSerializable = "1;0;0;0;0;0.5;-0.866025403784439;0;0;0.866025403784439;0.5;0;0;0;0;1";
     this.chartPie.Diagram = simpleDiagram3D1;
     this.chartPie.Dock = System.Windows.Forms.DockStyle.Fill;
     this.chartPie.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Right;
     this.chartPie.Location = new System.Drawing.Point(3, 3);
     this.chartPie.Name = "chartPie";
     this.chartPie.PaletteName = "Palette 1";
     this.chartPie.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)(62)))), ((int)(((byte)(170)))), ((int)(((byte)(15))))), System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(170)))), ((int)(((byte)(15)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(198)))), ((int)(((byte)(67)))), ((int)(((byte)(4))))), System.Drawing.Color.FromArgb(((int)(((byte)(198)))), ((int)(((byte)(67)))), ((int)(((byte)(4)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(188)))), ((int)(((byte)(254))))), System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(188)))), ((int)(((byte)(254))))))}));
     pie3DSeriesLabel1.LineVisible = true;
     piePointOptions1.PointView = DevExpress.XtraCharts.PointView.SeriesName;
     piePointOptions1.ValueNumericOptions.Format = DevExpress.XtraCharts.NumericFormat.Percent;
     pie3DSeriesLabel1.PointOptions = piePointOptions1;
     series11.Label = pie3DSeriesLabel1;
     series11.Name = "Series 1";
     series11.View = pie3DSeriesView1;
     this.chartPie.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series11};
     pie3DSeriesLabel2.LineVisible = true;
     this.chartPie.SeriesTemplate.Label = pie3DSeriesLabel2;
     this.chartPie.SeriesTemplate.View = pie3DSeriesView2;
     this.chartPie.Size = new System.Drawing.Size(896, 526);
     this.chartPie.TabIndex = 21;
     //
     // lblStatus
     //
     this.lblStatus.AutoSize = true;
     this.lblStatus.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblStatus.Location = new System.Drawing.Point(286, 41);
     this.lblStatus.Name = "lblStatus";
     this.lblStatus.Size = new System.Drawing.Size(0, 13);
     this.lblStatus.TabIndex = 12;
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label37.Location = new System.Drawing.Point(231, 41);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(56, 13);
     this.label37.TabIndex = 12;
     this.label37.Text = "Status : ";
     //
     // 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.CustomFormat = "MM/dd/ yy";
     this.dtDate.DayOfWeekCharacters = 2;
     this.dtDate.Location = new System.Drawing.Point(611, 10);
     this.dtDate.Name = "dtDate";
     this.dtDate.PopUpFontSize = 9.75F;
     this.dtDate.Size = new System.Drawing.Size(114, 20);
     this.dtDate.TabIndex = 17;
     this.dtDate.Value = new System.DateTime(2008, 10, 21, 0, 0, 0, 0);
     this.dtDate.Visible = false;
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.Location = new System.Drawing.Point(824, 34);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 20;
     this.btnCancel.Text = "Close";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click_1);
     //
     // cboYear
     //
     this.cboYear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cboYear.FormattingEnabled = true;
     this.cboYear.Location = new System.Drawing.Point(484, 36);
     this.cboYear.Name = "cboYear";
     this.cboYear.Size = new System.Drawing.Size(121, 21);
     this.cboYear.TabIndex = 21;
     this.cboYear.Visible = false;
     this.cboYear.SelectedValueChanged += new System.EventHandler(this.cboYear_SelectedValueChanged);
     //
     // ckPast
     //
     this.ckPast.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ckPast.Location = new System.Drawing.Point(611, 40);
     this.ckPast.Name = "ckPast";
     this.ckPast.Properties.Caption = "Last 12 Month";
     this.ckPast.Size = new System.Drawing.Size(105, 19);
     this.ckPast.TabIndex = 22;
     this.ckPast.Visible = false;
     this.ckPast.CheckedChanged += new System.EventHandler(this.ckPast_CheckedChanged);
     //
     // chartControl1
     //
     this.chartControl1.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.chartControl1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.chartControl1.Location = new System.Drawing.Point(7, 25);
     this.chartControl1.Name = "chartControl1";
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[0];
     sideBySideBarSeriesLabel16.LineVisible = true;
     this.chartControl1.SeriesTemplate.Label = sideBySideBarSeriesLabel16;
     this.chartControl1.Size = new System.Drawing.Size(974, 411);
     this.chartControl1.TabIndex = 2;
     //
     // printDoc
     //
     this.printDoc.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDoc_PrintPage);
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // toolTip1
     //
     this.toolTip1.AutoPopDelay = 5000;
     this.toolTip1.InitialDelay = 500;
     this.toolTip1.ReshowDelay = 0;
     this.toolTip1.ShowAlways = true;
     this.toolTip1.ToolTipTitle = "Item Name";
     //
     // txtitmName
     //
     this.txtitmName.AutoSize = true;
     this.txtitmName.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtitmName.Location = new System.Drawing.Point(9, 12);
     this.txtitmName.Name = "txtitmName";
     this.txtitmName.Size = new System.Drawing.Size(0, 18);
     this.txtitmName.TabIndex = 100;
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Location = new System.Drawing.Point(9, 40);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(90, 13);
     this.label38.TabIndex = 101;
     this.label38.Text = "Basic Unit in : ";
     //
     // lblBUnit
     //
     this.lblBUnit.AutoSize = true;
     this.lblBUnit.Location = new System.Drawing.Point(96, 40);
     this.lblBUnit.Name = "lblBUnit";
     this.lblBUnit.Size = new System.Drawing.Size(0, 13);
     this.lblBUnit.TabIndex = 101;
     //
     // cboDU
     //
     this.cboDU.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cboDU.DisplayMember = "Name";
     this.cboDU.FormattingEnabled = true;
     this.cboDU.Location = new System.Drawing.Point(357, 36);
     this.cboDU.Name = "cboDU";
     this.cboDU.Size = new System.Drawing.Size(121, 21);
     this.cboDU.TabIndex = 102;
     this.cboDU.ValueMember = "ID";
     this.cboDU.Visible = false;
     this.cboDU.SelectedValueChanged += new System.EventHandler(this.cboDU_SelectedValueChanged);
     //
     // xpButton1
     //
     this.xpButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.xpButton1.Image = global::PharmInventory.Properties.Resources.printer;
     this.xpButton1.Location = new System.Drawing.Point(743, 34);
     this.xpButton1.Name = "xpButton1";
     this.xpButton1.Size = new System.Drawing.Size(75, 23);
     this.xpButton1.TabIndex = 15;
     this.xpButton1.Text = "Print";
     this.xpButton1.Click += new System.EventHandler(this.xpButton1_Click);
     //
     // printingSystem2
     //
     this.printingSystem2.Links.AddRange(new object[] {
     this.printableComponentLink1});
     //
     // printableComponentLink1
     //
     this.printableComponentLink1.Component = this.chartComp;
     //
     //
     //
     this.printableComponentLink1.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink1.ImageCollection.ImageStream")));
     this.printableComponentLink1.Landscape = true;
     this.printableComponentLink1.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printableComponentLink1.PrintingSystem = this.printingSystem2;
     this.printableComponentLink1.PrintingSystemBase = this.printingSystem2;
     //
     // ItemDetailReport
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.ClientSize = new System.Drawing.Size(912, 616);
     this.Controls.Add(this.cboDU);
     this.Controls.Add(this.lblStatus);
     this.Controls.Add(this.lblBUnit);
     this.Controls.Add(this.label37);
     this.Controls.Add(this.label38);
     this.Controls.Add(this.txtitmName);
     this.Controls.Add(this.xpButton1);
     this.Controls.Add(this.ckPast);
     this.Controls.Add(this.cboYear);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.dtDate);
     this.Controls.Add(this.tabControl1);
     this.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "ItemDetailReport";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Item Detail Reports";
     this.Load += new System.EventHandler(this.BinCardTransaction_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabPage11.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridDispensaryView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.tabPage4.ResumeLayout(false);
     this.tabPage4.PerformLayout();
     this.tabPage5.ResumeLayout(false);
     this.tabPage5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboFiscalYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemsList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemListView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.unitBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBBalance.Properties)).EndInit();
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.tabPage9.ResumeLayout(false);
     this.tabPage9.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.consuTrend)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartAmc)).EndInit();
     this.tabPage3.ResumeLayout(false);
     this.tabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartMOS)).EndInit();
     this.tabPage6.ResumeLayout(false);
     this.tabPage6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartComp)).EndInit();
     this.tabPage7.ResumeLayout(false);
     this.tabPage7.PerformLayout();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.tabPage8.ResumeLayout(false);
     this.tabPage8.PerformLayout();
     this.tabPage10.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(simpleDiagram3D1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartPie)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckPast.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.AMC = new System.Windows.Forms.ColumnHeader();
            this.min = new System.Windows.Forms.ColumnHeader();
            this.Item = new System.Windows.Forms.ColumnHeader();
            this.lstItem = new PrintableListView.PrintableListView();
            this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
            this.SOH = new System.Windows.Forms.ColumnHeader();
            this.MOS = new System.Windows.Forms.ColumnHeader();
            this.max = new System.Windows.Forms.ColumnHeader();
            this.issued = new System.Windows.Forms.ColumnHeader();
            this.Status = new System.Windows.Forms.ColumnHeader();
            this.reorderAmount = new System.Windows.Forms.ColumnHeader();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.cboStores = new System.Windows.Forms.ComboBox();
            this.cboStatus = new System.Windows.Forms.ComboBox();
            this.cboMonth = new System.Windows.Forms.ComboBox();
            this.lblState = new System.Windows.Forms.Label();
            this.printDoc = new System.Drawing.Printing.PrintDocument();
            this.xpButton2 = new DevExpress.XtraEditors.SimpleButton();
            this.progressBar1 = new System.Windows.Forms.ProgressBar();
            this.dtDate = new CalendarLib.DateTimePickerEx();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.label28 = new System.Windows.Forms.Label();
            this.label27 = new System.Windows.Forms.Label();
            this.label23 = new System.Windows.Forms.Label();
            this.label21 = new System.Windows.Forms.Label();
            this.label24 = new System.Windows.Forms.Label();
            this.label22 = new System.Windows.Forms.Label();
            this.label20 = new System.Windows.Forms.Label();
            this.label19 = new System.Windows.Forms.Label();
            this.xpButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.groupBox1.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.SuspendLayout();
            //
            // AMC
            //
            this.AMC.Text = "AMC";
            this.AMC.Width = 50;
            //
            // min
            //
            this.min.Text = "Min";
            this.min.Width = 66;
            //
            // Item
            //
            this.Item.Text = "Item";
            this.Item.Width = 393;
            //
            // lstItem
            //
            this.lstItem.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.lstItem.BackColor = System.Drawing.Color.White;
            this.lstItem.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lstItem.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.Item,
            this.SOH,
            this.AMC,
            this.MOS,
            this.min,
            this.max,
            this.issued,
            this.Status,
            this.reorderAmount});
            this.lstItem.FitToPage = false;
            this.lstItem.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lstItem.ForeColor = System.Drawing.Color.DarkSlateGray;
            this.lstItem.FullRowSelect = true;
            this.lstItem.GridLines = true;
            this.lstItem.Location = new System.Drawing.Point(6, 77);
            this.lstItem.MultiSelect = false;
            this.lstItem.Name = "lstItem";
            this.lstItem.ShowItemToolTips = true;
            this.lstItem.Size = new System.Drawing.Size(1050, 321);
            this.lstItem.TabIndex = 9;
            this.lstItem.Title = "";
            this.lstItem.UseCompatibleStateImageBehavior = false;
            this.lstItem.View = System.Windows.Forms.View.Details;
            this.lstItem.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lstItem_MouseDoubleClick);
            //
            // columnHeader1
            //
            this.columnHeader1.Text = "No.";
            this.columnHeader1.Width = 31;
            //
            // SOH
            //
            this.SOH.Text = "SOH";
            //
            // MOS
            //
            this.MOS.Text = "MOS";
            this.MOS.Width = 52;
            //
            // max
            //
            this.max.Text = "Max";
            this.max.Width = 63;
            //
            // issued
            //
            this.issued.Text = "Issued";
            this.issued.Width = 105;
            //
            // Status
            //
            this.Status.Text = "Status";
            this.Status.Width = 97;
            //
            // reorderAmount
            //
            this.reorderAmount.Text = "Reorder Amount";
            this.reorderAmount.Width = 123;
            //
            // groupBox1
            //
            this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox1.Controls.Add(this.cboStores);
            this.groupBox1.Controls.Add(this.cboStatus);
            this.groupBox1.Controls.Add(this.cboMonth);
            this.groupBox1.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupBox1.Location = new System.Drawing.Point(6, 10);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(487, 51);
            this.groupBox1.TabIndex = 10;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Filtering Options ";
            //
            // cboStores
            //
            this.cboStores.DisplayMember = "StoreName";
            this.cboStores.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboStores.FormattingEnabled = true;
            this.cboStores.Location = new System.Drawing.Point(295, 20);
            this.cboStores.Name = "cboStores";
            this.cboStores.Size = new System.Drawing.Size(129, 21);
            this.cboStores.TabIndex = 0;
            this.cboStores.ValueMember = "ID";
            this.cboStores.SelectedValueChanged += new System.EventHandler(this.cboStores_SelectedValueChanged);
            //
            // cboStatus
            //
            this.cboStatus.DisplayMember = "Month";
            this.cboStatus.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboStatus.FormattingEnabled = true;
            this.cboStatus.Items.AddRange(new object[] {
            "All",
            "Stock Out",
            "Near EOP",
            "Normal",
            "Excess Stock"});
            this.cboStatus.Location = new System.Drawing.Point(171, 20);
            this.cboStatus.Name = "cboStatus";
            this.cboStatus.Size = new System.Drawing.Size(118, 21);
            this.cboStatus.TabIndex = 0;
            this.cboStatus.Text = "Select Status";
            this.cboStatus.ValueMember = "Value";
            this.cboStatus.SelectedValueChanged += new System.EventHandler(this.cboStatus_SelectedValueChanged);
            //
            // cboMonth
            //
            this.cboMonth.DisplayMember = "Month";
            this.cboMonth.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cboMonth.FormattingEnabled = true;
            this.cboMonth.Location = new System.Drawing.Point(5, 20);
            this.cboMonth.Name = "cboMonth";
            this.cboMonth.Size = new System.Drawing.Size(141, 21);
            this.cboMonth.TabIndex = 0;
            this.cboMonth.ValueMember = "Value";
            this.cboMonth.SelectedValueChanged += new System.EventHandler(this.cboMonth_SelectedValueChanged);
            //
            // lblState
            //
            this.lblState.AutoSize = true;
            this.lblState.Font = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblState.Location = new System.Drawing.Point(559, 48);
            this.lblState.Name = "lblState";
            this.lblState.Size = new System.Drawing.Size(160, 18);
            this.lblState.TabIndex = 11;
            this.lblState.Text = "Contraceptive Items";
            //
            // xpButton2
            //
            this.xpButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));

            this.xpButton2.Image = global::PharmInventory.Properties.Resources.MS_Excel;
            this.xpButton2.Location = new System.Drawing.Point(888, 30);
            this.xpButton2.Name = "xpButton2";
            this.xpButton2.Size = new System.Drawing.Size(75, 23);
            this.xpButton2.TabIndex = 13;
            this.xpButton2.Text = "Export";

            this.xpButton2.Click += new System.EventHandler(this.xpButton1_Click);
            //
            // progressBar1
            //
            this.progressBar1.Location = new System.Drawing.Point(200, 200);
            this.progressBar1.Minimum = 1;
            this.progressBar1.Name = "progressBar1";
            this.progressBar1.Size = new System.Drawing.Size(300, 23);
            this.progressBar1.Step = 1;
            this.progressBar1.TabIndex = 23;
            this.progressBar1.UseWaitCursor = true;
            this.progressBar1.Value = 1;
            this.progressBar1.Visible = false;
            //
            // 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.CustomFormat = "dd/MM/ yy";
            this.dtDate.DayOfWeekCharacters = 2;
            this.dtDate.Location = new System.Drawing.Point(526, 6);
            this.dtDate.Name = "dtDate";
            this.dtDate.PopUpFontSize = 9.75F;
            this.dtDate.Size = new System.Drawing.Size(114, 20);
            this.dtDate.TabIndex = 24;
            this.dtDate.Value = new System.DateTime(2008, 10, 3, 0, 0, 0, 0);
            this.dtDate.Visible = false;
            //
            // tabControl1
            //
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(1088, 432);
            this.tabControl1.TabIndex = 25;
            //
            // tabPage1
            //
            this.tabPage1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
            this.tabPage1.Controls.Add(this.groupBox2);
            this.tabPage1.Controls.Add(this.xpButton1);
            this.tabPage1.Controls.Add(this.xpButton2);
            this.tabPage1.Controls.Add(this.lblState);
            this.tabPage1.Controls.Add(this.progressBar1);
            this.tabPage1.Controls.Add(this.groupBox1);
            this.tabPage1.Controls.Add(this.dtDate);
            this.tabPage1.Controls.Add(this.lstItem);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(1080, 406);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "CS Stock Status";
            //
            // groupBox2
            //
            this.groupBox2.Controls.Add(this.label28);
            this.groupBox2.Controls.Add(this.label27);
            this.groupBox2.Controls.Add(this.label23);
            this.groupBox2.Controls.Add(this.label21);
            this.groupBox2.Controls.Add(this.label24);
            this.groupBox2.Controls.Add(this.label22);
            this.groupBox2.Controls.Add(this.label20);
            this.groupBox2.Controls.Add(this.label19);
            this.groupBox2.Location = new System.Drawing.Point(725, -3);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(159, 79);
            this.groupBox2.TabIndex = 28;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Legend  ";
            //
            // label28
            //
            this.label28.AutoSize = true;
            this.label28.Location = new System.Drawing.Point(51, 62);
            this.label28.Name = "label28";
            this.label28.Size = new System.Drawing.Size(63, 13);
            this.label28.TabIndex = 0;
            this.label28.Text = "Stock Out";
            //
            // label27
            //
            this.label27.AutoSize = true;
            this.label27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(168)))), ((int)(((byte)(168)))));
            this.label27.Location = new System.Drawing.Point(6, 62);
            this.label27.Name = "label27";
            this.label27.Size = new System.Drawing.Size(35, 13);
            this.label27.TabIndex = 0;
            this.label27.Text = "       ";
            //
            // label23
            //
            this.label23.AutoSize = true;
            this.label23.Location = new System.Drawing.Point(51, 45);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(61, 13);
            this.label23.TabIndex = 0;
            this.label23.Text = "Near EOP";
            //
            // label21
            //
            this.label21.AutoSize = true;
            this.label21.Location = new System.Drawing.Point(51, 28);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(82, 13);
            this.label21.TabIndex = 0;
            this.label21.Text = "Excess Stock";
            //
            // label24
            //
            this.label24.AutoSize = true;
            this.label24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(153)))));
            this.label24.Location = new System.Drawing.Point(6, 45);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(35, 13);
            this.label24.TabIndex = 0;
            this.label24.Text = "       ";
            //
            // label22
            //
            this.label22.AutoSize = true;
            this.label22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(163)))), ((int)(((byte)(209)))), ((int)(((byte)(255)))));
            this.label22.Location = new System.Drawing.Point(6, 28);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(35, 13);
            this.label22.TabIndex = 0;
            this.label22.Text = "       ";
            //
            // label20
            //
            this.label20.AutoSize = true;
            this.label20.Location = new System.Drawing.Point(51, 11);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(48, 13);
            this.label20.TabIndex = 0;
            this.label20.Text = "Normal";
            //
            // label19
            //
            this.label19.AutoSize = true;
            this.label19.BackColor = System.Drawing.Color.White;
            this.label19.Location = new System.Drawing.Point(6, 11);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(35, 13);
            this.label19.TabIndex = 0;
            this.label19.Text = "       ";
            //
            // xpButton1
            //
            this.xpButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));

            this.xpButton1.Image = global::PharmInventory.Properties.Resources.printer;
            this.xpButton1.Location = new System.Drawing.Point(981, 30);
            this.xpButton1.Name = "xpButton1";
            this.xpButton1.Size = new System.Drawing.Size(75, 23);
            this.xpButton1.TabIndex = 27;
            this.xpButton1.Text = "Print";

            this.xpButton1.Click += new System.EventHandler(this.xpButton1_Click_1);
            //
            // ECLS
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.PowderBlue;
            this.ClientSize = new System.Drawing.Size(1088, 432);
            this.Controls.Add(this.tabControl1);
            this.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Name = "ECLS";
            this.Text = "Stock Report";
            this.Load += new System.EventHandler(this.ManageItems_Load);
            this.groupBox1.ResumeLayout(false);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage1.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.ResumeLayout(false);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.lkExistingInstitutions = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chkIsInstitutionUsedAtFacility = new DevExpress.XtraEditors.CheckEdit();
     this.dtRegistration = new CalendarLib.DateTimePickerEx();
     this.txtTinNo = new DevExpress.XtraEditors.TextEdit();
     this.btnIssueSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.txtLicenseNo = new DevExpress.XtraEditors.TextEdit();
     this.txtVATNo = new DevExpress.XtraEditors.TextEdit();
     this.lkRUType = new DevExpress.XtraEditors.LookUpEdit();
     this.txtPhone = new DevExpress.XtraEditors.TextEdit();
     this.lkOwnership = new DevExpress.XtraEditors.LookUpEdit();
     this.txtReceivingUnit = new DevExpress.XtraEditors.TextEdit();
     this.lkWoreda = new DevExpress.XtraEditors.LookUpEdit();
     this.txtDescription = new DevExpress.XtraEditors.TextEdit();
     this.lkZone = new DevExpress.XtraEditors.LookUpEdit();
     this.lkRoute = new DevExpress.XtraEditors.LookUpEdit();
     this.lkRegion = new DevExpress.XtraEditors.LookUpEdit();
     this.lcReceivingUnitsDetail = new DevExpress.XtraLayout.LayoutControlGroup();
     this.lcHospitalSettingsDetail = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.groupPrivateDetail = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem45 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcTinNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcVATNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcLicenseNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.lcIsUsedInFacility = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcExistingInstitutions = new DevExpress.XtraLayout.LayoutControlItem();
     this.groupPrivateDetails = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem50 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem42 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem48 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem44 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem43 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcWoreda = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem47 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem46 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem38 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem37 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem36 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem35 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem19 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem40 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem39 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.issueLocationValidation = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkExistingInstitutions.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkIsInstitutionUsedAtFacility.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTinNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLicenseNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVATNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRUType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkOwnership.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceivingUnit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkWoreda.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkZone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRoute.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRegion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcReceivingUnitsDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcHospitalSettingsDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPrivateDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem45)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcTinNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcVATNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcLicenseNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcIsUsedInFacility)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcExistingInstitutions)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPrivateDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem50)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem42)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem48)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem44)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem43)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcWoreda)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem47)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem46)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.issueLocationValidation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.lkExistingInstitutions);
     this.layoutControl1.Controls.Add(this.chkIsInstitutionUsedAtFacility);
     this.layoutControl1.Controls.Add(this.dtRegistration);
     this.layoutControl1.Controls.Add(this.txtTinNo);
     this.layoutControl1.Controls.Add(this.btnIssueSave);
     this.layoutControl1.Controls.Add(this.btnCancel);
     this.layoutControl1.Controls.Add(this.txtLicenseNo);
     this.layoutControl1.Controls.Add(this.txtVATNo);
     this.layoutControl1.Controls.Add(this.lkRUType);
     this.layoutControl1.Controls.Add(this.txtPhone);
     this.layoutControl1.Controls.Add(this.lkOwnership);
     this.layoutControl1.Controls.Add(this.txtReceivingUnit);
     this.layoutControl1.Controls.Add(this.lkWoreda);
     this.layoutControl1.Controls.Add(this.txtDescription);
     this.layoutControl1.Controls.Add(this.lkZone);
     this.layoutControl1.Controls.Add(this.lkRoute);
     this.layoutControl1.Controls.Add(this.lkRegion);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(737, 251, 250, 350);
     this.layoutControl1.Root = this.lcReceivingUnitsDetail;
     this.layoutControl1.Size = new System.Drawing.Size(359, 491);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // lkExistingInstitutions
     //
     this.lkExistingInstitutions.EditValue = "Does the Institution Exist?";
     this.lkExistingInstitutions.Location = new System.Drawing.Point(121, 162);
     this.lkExistingInstitutions.Name = "lkExistingInstitutions";
     this.lkExistingInstitutions.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkExistingInstitutions.Properties.DisplayMember = "InstitutionName";
     this.lkExistingInstitutions.Properties.NullText = "Does the institution exist?";
     this.lkExistingInstitutions.Properties.ShowFooter = false;
     this.lkExistingInstitutions.Properties.ValueMember = "InstitutionName";
     this.lkExistingInstitutions.Properties.View = this.gridLookUpEdit1View;
     this.lkExistingInstitutions.Size = new System.Drawing.Size(214, 20);
     this.lkExistingInstitutions.StyleController = this.layoutControl1;
     this.lkExistingInstitutions.TabIndex = 23;
     this.lkExistingInstitutions.EditValueChanged += new System.EventHandler(this.lkExistingInstitutions_EditValueChanged);
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn1});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowAutoFilterRow = true;
     this.gridLookUpEdit1View.OptionsView.ShowColumnHeaders = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     this.gridLookUpEdit1View.OptionsView.ShowIndicator = false;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Name";
     this.gridColumn15.FieldName = "InstitutionName";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Type";
     this.gridColumn1.FieldName = "TypeName";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 1;
     //
     // chkIsInstitutionUsedAtFacility
     //
     this.chkIsInstitutionUsedAtFacility.Location = new System.Drawing.Point(24, 43);
     this.chkIsInstitutionUsedAtFacility.Name = "chkIsInstitutionUsedAtFacility";
     this.chkIsInstitutionUsedAtFacility.Properties.Caption = "Is Used In Facility";
     this.chkIsInstitutionUsedAtFacility.Size = new System.Drawing.Size(311, 19);
     this.chkIsInstitutionUsedAtFacility.StyleController = this.layoutControl1;
     this.chkIsInstitutionUsedAtFacility.TabIndex = 49;
     //
     // dtRegistration
     //
     this.dtRegistration.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.dtRegistration.CalendarFont = new System.Drawing.Font("Nyala", 10.75F);
     this.dtRegistration.CalendarForeColor = System.Drawing.Color.Black;
     this.dtRegistration.DayOfWeekCharacters = 2;
     this.dtRegistration.ForeColor = System.Drawing.Color.Black;
     this.dtRegistration.Location = new System.Drawing.Point(133, 409);
     this.dtRegistration.Name = "dtRegistration";
     this.dtRegistration.PopUpFontSize = 8.75F;
     this.dtRegistration.Size = new System.Drawing.Size(190, 20);
     this.dtRegistration.TabIndex = 30;
     this.dtRegistration.Value = new System.DateTime(2011, 10, 20, 0, 0, 0, 0);
     //
     // txtTinNo
     //
     this.txtTinNo.Location = new System.Drawing.Point(133, 385);
     this.txtTinNo.Name = "txtTinNo";
     this.txtTinNo.Size = new System.Drawing.Size(190, 20);
     this.txtTinNo.StyleController = this.layoutControl1;
     this.txtTinNo.TabIndex = 29;
     //
     // btnIssueSave
     //
     this.btnIssueSave.Location = new System.Drawing.Point(135, 445);
     this.btnIssueSave.Name = "btnIssueSave";
     this.btnIssueSave.Size = new System.Drawing.Size(105, 22);
     this.btnIssueSave.StyleController = this.layoutControl1;
     this.btnIssueSave.TabIndex = 25;
     this.btnIssueSave.Text = "Save";
     this.btnIssueSave.Click += new System.EventHandler(this.btnIssueSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(244, 445);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(91, 22);
     this.btnCancel.StyleController = this.layoutControl1;
     this.btnCancel.TabIndex = 26;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // txtLicenseNo
     //
     this.txtLicenseNo.Location = new System.Drawing.Point(133, 337);
     this.txtLicenseNo.Name = "txtLicenseNo";
     this.txtLicenseNo.Size = new System.Drawing.Size(190, 20);
     this.txtLicenseNo.StyleController = this.layoutControl1;
     this.txtLicenseNo.TabIndex = 27;
     //
     // txtVATNo
     //
     this.txtVATNo.Location = new System.Drawing.Point(133, 361);
     this.txtVATNo.Name = "txtVATNo";
     this.txtVATNo.Size = new System.Drawing.Size(190, 20);
     this.txtVATNo.StyleController = this.layoutControl1;
     this.txtVATNo.TabIndex = 28;
     //
     // lkRUType
     //
     this.lkRUType.Location = new System.Drawing.Point(121, 138);
     this.lkRUType.Name = "lkRUType";
     this.lkRUType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRUType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkRUType.Properties.DisplayMember = "Name";
     this.lkRUType.Properties.NullText = "";
     this.lkRUType.Properties.ShowFooter = false;
     this.lkRUType.Properties.ShowHeader = false;
     this.lkRUType.Properties.ValueMember = "ID";
     this.lkRUType.Size = new System.Drawing.Size(214, 20);
     this.lkRUType.StyleController = this.layoutControl1;
     this.lkRUType.TabIndex = 45;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.NotEquals;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.issueLocationValidation.SetValidationRule(this.lkRUType, conditionValidationRule1);
     //
     // txtPhone
     //
     this.txtPhone.Location = new System.Drawing.Point(121, 210);
     this.txtPhone.Name = "txtPhone";
     this.txtPhone.Size = new System.Drawing.Size(214, 20);
     this.txtPhone.StyleController = this.layoutControl1;
     this.txtPhone.TabIndex = 36;
     //
     // lkOwnership
     //
     this.lkOwnership.Location = new System.Drawing.Point(121, 258);
     this.lkOwnership.Name = "lkOwnership";
     this.lkOwnership.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkOwnership.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkOwnership.Properties.DisplayMember = "Name";
     this.lkOwnership.Properties.NullText = "";
     this.lkOwnership.Properties.ShowFooter = false;
     this.lkOwnership.Properties.ShowHeader = false;
     this.lkOwnership.Properties.ValueMember = "ID";
     this.lkOwnership.Size = new System.Drawing.Size(214, 20);
     this.lkOwnership.StyleController = this.layoutControl1;
     this.lkOwnership.TabIndex = 44;
     this.lkOwnership.EditValueChanged += new System.EventHandler(this.lkOwnership_EditValueChanged);
     //
     // txtReceivingUnit
     //
     this.txtReceivingUnit.Enabled = false;
     this.txtReceivingUnit.Location = new System.Drawing.Point(121, 186);
     this.txtReceivingUnit.Name = "txtReceivingUnit";
     this.txtReceivingUnit.Size = new System.Drawing.Size(214, 20);
     this.txtReceivingUnit.StyleController = this.layoutControl1;
     this.txtReceivingUnit.TabIndex = 35;
     //
     // lkWoreda
     //
     this.lkWoreda.Location = new System.Drawing.Point(121, 114);
     this.lkWoreda.Name = "lkWoreda";
     this.lkWoreda.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkWoreda.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("WoredaName", "Woreda")});
     this.lkWoreda.Properties.DisplayMember = "WoredaName";
     this.lkWoreda.Properties.NullText = "";
     this.lkWoreda.Properties.ShowFooter = false;
     this.lkWoreda.Properties.ShowHeader = false;
     this.lkWoreda.Properties.ValueMember = "ID";
     this.lkWoreda.Size = new System.Drawing.Size(214, 20);
     this.lkWoreda.StyleController = this.layoutControl1;
     this.lkWoreda.TabIndex = 43;
     this.lkWoreda.EditValueChanged += new System.EventHandler(this.lkWoreda_EditValueChanged);
     //
     // txtDescription
     //
     this.txtDescription.Location = new System.Drawing.Point(121, 282);
     this.txtDescription.Name = "txtDescription";
     this.txtDescription.Size = new System.Drawing.Size(214, 20);
     this.txtDescription.StyleController = this.layoutControl1;
     this.txtDescription.TabIndex = 37;
     //
     // lkZone
     //
     this.lkZone.Location = new System.Drawing.Point(121, 90);
     this.lkZone.Name = "lkZone";
     this.lkZone.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkZone.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ZoneName", "Zone")});
     this.lkZone.Properties.DisplayMember = "ZoneName";
     this.lkZone.Properties.NullText = "";
     this.lkZone.Properties.ShowFooter = false;
     this.lkZone.Properties.ShowHeader = false;
     this.lkZone.Properties.ValueMember = "ID";
     this.lkZone.Size = new System.Drawing.Size(214, 20);
     this.lkZone.StyleController = this.layoutControl1;
     this.lkZone.TabIndex = 42;
     this.lkZone.EditValueChanged += new System.EventHandler(this.lkZone_EditValueChanged);
     //
     // lkRoute
     //
     this.lkRoute.Location = new System.Drawing.Point(121, 234);
     this.lkRoute.Name = "lkRoute";
     this.lkRoute.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRoute.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkRoute.Properties.DisplayMember = "Name";
     this.lkRoute.Properties.NullText = "";
     this.lkRoute.Properties.ValueMember = "RouteID";
     this.lkRoute.Size = new System.Drawing.Size(214, 20);
     this.lkRoute.StyleController = this.layoutControl1;
     this.lkRoute.TabIndex = 38;
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.NotEquals;
     conditionValidationRule2.ErrorText = "This value is not valid";
     this.issueLocationValidation.SetValidationRule(this.lkRoute, conditionValidationRule2);
     //
     // lkRegion
     //
     this.lkRegion.Location = new System.Drawing.Point(121, 66);
     this.lkRegion.Name = "lkRegion";
     this.lkRegion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRegion.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RegionName", "Region")});
     this.lkRegion.Properties.DisplayMember = "RegionName";
     this.lkRegion.Properties.NullText = "Region Name";
     this.lkRegion.Properties.ShowFooter = false;
     this.lkRegion.Properties.ShowHeader = false;
     this.lkRegion.Properties.ValueMember = "ID";
     this.lkRegion.Size = new System.Drawing.Size(214, 20);
     this.lkRegion.StyleController = this.layoutControl1;
     this.lkRegion.TabIndex = 41;
     this.lkRegion.EditValueChanged += new System.EventHandler(this.lkRegion_EditValueChanged);
     //
     // lcReceivingUnitsDetail
     //
     this.lcReceivingUnitsDetail.CustomizationFormText = "Root";
     this.lcReceivingUnitsDetail.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.lcReceivingUnitsDetail.GroupBordersVisible = false;
     this.lcReceivingUnitsDetail.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.lcHospitalSettingsDetail});
     this.lcReceivingUnitsDetail.Location = new System.Drawing.Point(0, 0);
     this.lcReceivingUnitsDetail.Name = "Root";
     this.lcReceivingUnitsDetail.Size = new System.Drawing.Size(359, 491);
     this.lcReceivingUnitsDetail.Text = "Root";
     this.lcReceivingUnitsDetail.TextVisible = false;
     //
     // lcHospitalSettingsDetail
     //
     this.lcHospitalSettingsDetail.CustomizationFormText = "Details";
     this.lcHospitalSettingsDetail.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem2,
     this.layoutControlItem4,
     this.layoutControlItem10,
     this.layoutControlItem11,
     this.groupPrivateDetail,
     this.layoutControlItem6,
     this.layoutControlItem5,
     this.emptySpaceItem3,
     this.lcIsUsedInFacility,
     this.layoutControlItem14,
     this.layoutControlItem9,
     this.layoutControlItem12,
     this.layoutControlItem13,
     this.layoutControlItem3,
     this.lcExistingInstitutions});
     this.lcHospitalSettingsDetail.Location = new System.Drawing.Point(0, 0);
     this.lcHospitalSettingsDetail.Name = "lcHospitalSettingsDetail";
     this.lcHospitalSettingsDetail.Size = new System.Drawing.Size(339, 471);
     this.lcHospitalSettingsDetail.Text = "Details";
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.txtReceivingUnit;
     this.layoutControlItem2.CustomizationFormText = "Issue Location";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 143);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem2.Text = "Name";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.txtPhone;
     this.layoutControlItem4.CustomizationFormText = "Phone";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 167);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem4.Text = "Phone";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.Control = this.lkOwnership;
     this.layoutControlItem10.CustomizationFormText = "Ownership";
     this.layoutControlItem10.Location = new System.Drawing.Point(0, 215);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem10.Text = "Ownership";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.lkRoute;
     this.layoutControlItem11.CustomizationFormText = "Route";
     this.layoutControlItem11.Location = new System.Drawing.Point(0, 191);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem11.Text = "Route";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(94, 13);
     //
     // groupPrivateDetail
     //
     this.groupPrivateDetail.CustomizationFormText = "Private Institution Details";
     this.groupPrivateDetail.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem45,
     this.lcTinNo,
     this.lcVATNo,
     this.lcLicenseNo});
     this.groupPrivateDetail.Location = new System.Drawing.Point(0, 263);
     this.groupPrivateDetail.Name = "groupPrivateDetail";
     this.groupPrivateDetail.Size = new System.Drawing.Size(315, 139);
     this.groupPrivateDetail.Text = "Private Institution Details";
     this.groupPrivateDetail.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // layoutControlItem45
     //
     this.layoutControlItem45.Control = this.dtRegistration;
     this.layoutControlItem45.CustomizationFormText = "Registration Date";
     this.layoutControlItem45.Location = new System.Drawing.Point(0, 72);
     this.layoutControlItem45.MaxSize = new System.Drawing.Size(0, 24);
     this.layoutControlItem45.MinSize = new System.Drawing.Size(192, 24);
     this.layoutControlItem45.Name = "layoutControlItem45";
     this.layoutControlItem45.Size = new System.Drawing.Size(291, 24);
     this.layoutControlItem45.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem45.Text = "Registration Date";
     this.layoutControlItem45.TextSize = new System.Drawing.Size(94, 13);
     //
     // lcTinNo
     //
     this.lcTinNo.Control = this.txtTinNo;
     this.lcTinNo.CustomizationFormText = "TIN No.";
     this.lcTinNo.Location = new System.Drawing.Point(0, 48);
     this.lcTinNo.Name = "lcTinNo";
     this.lcTinNo.Size = new System.Drawing.Size(291, 24);
     this.lcTinNo.Text = "TIN No.";
     this.lcTinNo.TextSize = new System.Drawing.Size(94, 13);
     //
     // lcVATNo
     //
     this.lcVATNo.Control = this.txtVATNo;
     this.lcVATNo.CustomizationFormText = "VAT Reg. No.";
     this.lcVATNo.Location = new System.Drawing.Point(0, 24);
     this.lcVATNo.Name = "lcVATNo";
     this.lcVATNo.Size = new System.Drawing.Size(291, 24);
     this.lcVATNo.Text = "VAT Reg. No.";
     this.lcVATNo.TextSize = new System.Drawing.Size(94, 13);
     //
     // lcLicenseNo
     //
     this.lcLicenseNo.Control = this.txtLicenseNo;
     this.lcLicenseNo.CustomizationFormText = "License No.";
     this.lcLicenseNo.Location = new System.Drawing.Point(0, 0);
     this.lcLicenseNo.Name = "lcLicenseNo";
     this.lcLicenseNo.Size = new System.Drawing.Size(291, 24);
     this.lcLicenseNo.Text = "License No.";
     this.lcLicenseNo.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnCancel;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem40";
     this.layoutControlItem6.Location = new System.Drawing.Point(220, 402);
     this.layoutControlItem6.MaxSize = new System.Drawing.Size(95, 26);
     this.layoutControlItem6.MinSize = new System.Drawing.Size(95, 26);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(95, 26);
     this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem6.Text = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.btnIssueSave;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem39";
     this.layoutControlItem5.Location = new System.Drawing.Point(111, 402);
     this.layoutControlItem5.MaxSize = new System.Drawing.Size(109, 26);
     this.layoutControlItem5.MinSize = new System.Drawing.Size(109, 26);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(109, 26);
     this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(0, 402);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(111, 26);
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // lcIsUsedInFacility
     //
     this.lcIsUsedInFacility.Control = this.chkIsInstitutionUsedAtFacility;
     this.lcIsUsedInFacility.CustomizationFormText = "layoutControlItem17";
     this.lcIsUsedInFacility.Location = new System.Drawing.Point(0, 0);
     this.lcIsUsedInFacility.Name = "lcIsUsedInFacility";
     this.lcIsUsedInFacility.Size = new System.Drawing.Size(315, 23);
     this.lcIsUsedInFacility.Text = "lcIsUsedInFacility";
     this.lcIsUsedInFacility.TextSize = new System.Drawing.Size(0, 0);
     this.lcIsUsedInFacility.TextToControlDistance = 0;
     this.lcIsUsedInFacility.TextVisible = false;
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.Control = this.lkRegion;
     this.layoutControlItem14.CustomizationFormText = "Region";
     this.layoutControlItem14.Location = new System.Drawing.Point(0, 23);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem14.Text = "Region";
     this.layoutControlItem14.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.lkZone;
     this.layoutControlItem9.CustomizationFormText = "Zone";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 47);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem9.Text = "Zone";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.Control = this.lkWoreda;
     this.layoutControlItem12.CustomizationFormText = "Woreda";
     this.layoutControlItem12.Location = new System.Drawing.Point(0, 71);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem12.Text = "Woreda";
     this.layoutControlItem12.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.Control = this.lkRUType;
     this.layoutControlItem13.CustomizationFormText = "Facility Type";
     this.layoutControlItem13.Location = new System.Drawing.Point(0, 95);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem13.Text = "Facility Type";
     this.layoutControlItem13.TextSize = new System.Drawing.Size(94, 13);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.txtDescription;
     this.layoutControlItem3.CustomizationFormText = "Description";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 239);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(315, 24);
     this.layoutControlItem3.Text = "Description";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(94, 13);
     //
     // lcExistingInstitutions
     //
     this.lcExistingInstitutions.Control = this.lkExistingInstitutions;
     this.lcExistingInstitutions.CustomizationFormText = "Existing Institutions";
     this.lcExistingInstitutions.Location = new System.Drawing.Point(0, 119);
     this.lcExistingInstitutions.Name = "lcExistingInstitutions";
     this.lcExistingInstitutions.Size = new System.Drawing.Size(315, 24);
     this.lcExistingInstitutions.Text = "Existing Institutions";
     this.lcExistingInstitutions.TextSize = new System.Drawing.Size(94, 13);
     this.lcExistingInstitutions.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // groupPrivateDetails
     //
     this.groupPrivateDetails.CustomizationFormText = "Private Institution Details";
     this.groupPrivateDetails.Location = new System.Drawing.Point(0, 316);
     this.groupPrivateDetails.Name = "groupPrivateDetails";
     this.groupPrivateDetails.OptionsItemText.TextToControlDistance = 5;
     this.groupPrivateDetails.Size = new System.Drawing.Size(325, 140);
     this.groupPrivateDetails.Text = "Private Institution Details";
     this.groupPrivateDetails.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // layoutControlItem50
     //
     this.layoutControlItem50.CustomizationFormText = "Cash/Credit";
     this.layoutControlItem50.Location = new System.Drawing.Point(0, 292);
     this.layoutControlItem50.Name = "layoutControlItem50";
     this.layoutControlItem50.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem50.Text = "Cash/Credit";
     this.layoutControlItem50.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem50.TextToControlDistance = 5;
     //
     // layoutControlItem42
     //
     this.layoutControlItem42.CustomizationFormText = "Ownership";
     this.layoutControlItem42.Location = new System.Drawing.Point(0, 268);
     this.layoutControlItem42.Name = "layoutControlItem42";
     this.layoutControlItem42.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem42.Text = "Ownership";
     this.layoutControlItem42.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem42.TextToControlDistance = 5;
     //
     // layoutControlItem48
     //
     this.layoutControlItem48.CustomizationFormText = "Facility Type";
     this.layoutControlItem48.Location = new System.Drawing.Point(0, 244);
     this.layoutControlItem48.Name = "layoutControlItem48";
     this.layoutControlItem48.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem48.Text = "Facility Type";
     this.layoutControlItem48.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem48.TextToControlDistance = 5;
     //
     // layoutControlItem44
     //
     this.layoutControlItem44.CustomizationFormText = "Kebele";
     this.layoutControlItem44.Location = new System.Drawing.Point(0, 220);
     this.layoutControlItem44.Name = "layoutControlItem44";
     this.layoutControlItem44.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem44.Text = "Kebele";
     this.layoutControlItem44.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem44.TextToControlDistance = 5;
     //
     // layoutControlItem43
     //
     this.layoutControlItem43.CustomizationFormText = "Town";
     this.layoutControlItem43.Location = new System.Drawing.Point(0, 196);
     this.layoutControlItem43.Name = "layoutControlItem43";
     this.layoutControlItem43.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem43.Text = "Town";
     this.layoutControlItem43.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem43.TextToControlDistance = 5;
     //
     // lcWoreda
     //
     this.lcWoreda.CustomizationFormText = "Woreda";
     this.lcWoreda.Location = new System.Drawing.Point(0, 172);
     this.lcWoreda.Name = "lcWoreda";
     this.lcWoreda.Size = new System.Drawing.Size(325, 24);
     this.lcWoreda.Text = "Woreda";
     this.lcWoreda.TextSize = new System.Drawing.Size(84, 13);
     this.lcWoreda.TextToControlDistance = 5;
     //
     // layoutControlItem47
     //
     this.layoutControlItem47.CustomizationFormText = "Zone";
     this.layoutControlItem47.Location = new System.Drawing.Point(0, 148);
     this.layoutControlItem47.Name = "layoutControlItem47";
     this.layoutControlItem47.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem47.Text = "Zone";
     this.layoutControlItem47.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem47.TextToControlDistance = 5;
     //
     // layoutControlItem46
     //
     this.layoutControlItem46.CustomizationFormText = "Region";
     this.layoutControlItem46.Location = new System.Drawing.Point(0, 124);
     this.layoutControlItem46.Name = "layoutControlItem46";
     this.layoutControlItem46.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem46.Text = "Region";
     this.layoutControlItem46.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem46.TextToControlDistance = 5;
     //
     // layoutControlItem38
     //
     this.layoutControlItem38.CustomizationFormText = "Route";
     this.layoutControlItem38.Location = new System.Drawing.Point(0, 100);
     this.layoutControlItem38.Name = "layoutControlItem38";
     this.layoutControlItem38.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem38.Text = "Route";
     this.layoutControlItem38.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem38.TextToControlDistance = 5;
     //
     // layoutControlItem37
     //
     this.layoutControlItem37.CustomizationFormText = "Description";
     this.layoutControlItem37.Location = new System.Drawing.Point(0, 76);
     this.layoutControlItem37.Name = "layoutControlItem37";
     this.layoutControlItem37.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem37.Text = "Description";
     this.layoutControlItem37.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem37.TextToControlDistance = 5;
     //
     // layoutControlItem36
     //
     this.layoutControlItem36.CustomizationFormText = "Phone";
     this.layoutControlItem36.Location = new System.Drawing.Point(0, 52);
     this.layoutControlItem36.Name = "layoutControlItem36";
     this.layoutControlItem36.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem36.Text = "Phone";
     this.layoutControlItem36.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem36.TextToControlDistance = 5;
     //
     // layoutControlItem35
     //
     this.layoutControlItem35.CustomizationFormText = "Issue Location";
     this.layoutControlItem35.Location = new System.Drawing.Point(0, 28);
     this.layoutControlItem35.Name = "layoutControlItem35";
     this.layoutControlItem35.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem35.Text = "Issue Location";
     this.layoutControlItem35.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem35.TextToControlDistance = 5;
     //
     // emptySpaceItem19
     //
     this.emptySpaceItem19.AllowHotTrack = false;
     this.emptySpaceItem19.CustomizationFormText = "emptySpaceItem19";
     this.emptySpaceItem19.Location = new System.Drawing.Point(0, 456);
     this.emptySpaceItem19.Name = "emptySpaceItem19";
     this.emptySpaceItem19.Size = new System.Drawing.Size(121, 26);
     this.emptySpaceItem19.Text = "emptySpaceItem19";
     this.emptySpaceItem19.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem40
     //
     this.layoutControlItem40.CustomizationFormText = "layoutControlItem40";
     this.layoutControlItem40.Location = new System.Drawing.Point(230, 456);
     this.layoutControlItem40.MaxSize = new System.Drawing.Size(95, 26);
     this.layoutControlItem40.MinSize = new System.Drawing.Size(95, 26);
     this.layoutControlItem40.Name = "layoutControlItem40";
     this.layoutControlItem40.Size = new System.Drawing.Size(95, 26);
     this.layoutControlItem40.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem40.Text = "layoutControlItem40";
     this.layoutControlItem40.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem40.TextToControlDistance = 0;
     this.layoutControlItem40.TextVisible = false;
     //
     // layoutControlItem39
     //
     this.layoutControlItem39.CustomizationFormText = "layoutControlItem39";
     this.layoutControlItem39.Location = new System.Drawing.Point(121, 456);
     this.layoutControlItem39.MaxSize = new System.Drawing.Size(109, 26);
     this.layoutControlItem39.MinSize = new System.Drawing.Size(109, 26);
     this.layoutControlItem39.Name = "layoutControlItem39";
     this.layoutControlItem39.Size = new System.Drawing.Size(109, 26);
     this.layoutControlItem39.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem39.Text = "layoutControlItem39";
     this.layoutControlItem39.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem39.TextToControlDistance = 0;
     this.layoutControlItem39.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.CustomizationFormText = "Issue Location";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 28);
     this.layoutControlItem1.Name = "layoutControlItem35";
     this.layoutControlItem1.Size = new System.Drawing.Size(325, 24);
     this.layoutControlItem1.Text = "Issue Location";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(84, 13);
     this.layoutControlItem1.TextToControlDistance = 5;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(0, 0);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(0, 0);
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // ReceivingUnitsDetails
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(359, 491);
     this.Controls.Add(this.layoutControl1);
     this.Name = "ReceivingUnitsDetails";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Institution Detail";
     this.Load += new System.EventHandler(this.ReceivingUnitsDetails_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkExistingInstitutions.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkIsInstitutionUsedAtFacility.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTinNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLicenseNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVATNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRUType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkOwnership.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceivingUnit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkWoreda.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkZone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRoute.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRegion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcReceivingUnitsDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcHospitalSettingsDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPrivateDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem45)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcTinNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcVATNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcLicenseNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcIsUsedInFacility)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcExistingInstitutions)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPrivateDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem50)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem42)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem48)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem44)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem43)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcWoreda)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem47)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem46)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.issueLocationValidation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     this.ResumeLayout(false);
 }
        private void pcl_CreateReportHeaderArea(object sender, DevExpress.XtraPrinting.CreateAreaEventArgs e)
        {
            GeneralInfo info = new GeneralInfo();
            info.LoadAll();
            CalendarLib.DateTimePickerEx dtDate = new CalendarLib.DateTimePickerEx
                                                      {
                                                          Value = DateTime.Now,
                                                          CustomFormat = "MM/dd/yyyy"
                                                      };
            DateTime dtCurrent = Convert.ToDateTime(dtDate.Text);
            // original header
            // string header = info.HospitalName + " Receive Activity Log " + dtCurrent.ToString("MM dd,yyyy");
            // header with reference number
            string refNumber = lstTree.FocusedNode.GetDisplayText("RefNo");
            string header = info.HospitalName + " Receive Activity Log \n" + dtCurrent.ToString("MM dd,yyyy") +
                            "   RefNo " + refNumber;

            TextBrick brick = e.Graph.DrawString(header, Color.Navy, new RectangleF(0, 0, 500, 40),
                                                 DevExpress.XtraPrinting.BorderSide.None);
            brick.Font = new Font("Arial", 16);
            brick.StringFormat = new DevExpress.XtraPrinting.BrickStringFormat(StringAlignment.Center);
        }
        private void pcl_CreateReportHeaderArea(object sender, DevExpress.XtraPrinting.CreateAreaEventArgs e)
        {
            CalendarLib.DateTimePickerEx dtDate = new CalendarLib.DateTimePickerEx();
            dtDate.Value = DateTimeHelper.ServerDateTime;
            dtDate.CustomFormat = "MM/dd/yyyy";
            DateTime dtCurrent = Convert.ToDateTime(dtDate.Text);
            string header = GeneralInfo.Current.HospitalName + " Loss/Adjustment Activity Log " + dtCurrent.ToString("MM dd,yyyy");

            DevExpress.XtraPrinting.TextBrick brick;
            brick = e.Graph.DrawString(header, Color.Navy, new RectangleF(0, 0, 500, 40),
            DevExpress.XtraPrinting.BorderSide.None);
            brick.Font = new Font("Arial", 16);
            brick.StringFormat = new DevExpress.XtraPrinting.BrickStringFormat(StringAlignment.Center);
        }
 /// <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.XtraCharts.SimpleDiagram3D simpleDiagram3D1 = new DevExpress.XtraCharts.SimpleDiagram3D();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.Pie3DSeriesLabel pie3DSeriesLabel1 = new DevExpress.XtraCharts.Pie3DSeriesLabel();
     DevExpress.XtraCharts.PiePointOptions piePointOptions1 = new DevExpress.XtraCharts.PiePointOptions();
     DevExpress.XtraCharts.Pie3DSeriesView pie3DSeriesView1 = new DevExpress.XtraCharts.Pie3DSeriesView();
     DevExpress.XtraCharts.Pie3DSeriesLabel pie3DSeriesLabel2 = new DevExpress.XtraCharts.Pie3DSeriesLabel();
     DevExpress.XtraCharts.Pie3DSeriesView pie3DSeriesView2 = new DevExpress.XtraCharts.Pie3DSeriesView();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GeneralExpiryChart));
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.linkLabel2 = new System.Windows.Forms.LinkLabel();
     this.dtFrom = new CalendarLib.DateTimePickerEx();
     this.dtTo = new CalendarLib.DateTimePickerEx();
     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.chartPie = new DevExpress.XtraCharts.ChartControl();
     this.cboStores = new DevExpress.XtraEditors.LookUpEdit();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.lkCategory = new DevExpress.XtraEditors.LookUpEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.btnPrint = new DevExpress.XtraEditors.SimpleButton();
     this.dtDate = new CalendarLib.DateTimePickerEx();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.printDoc = new System.Drawing.Printing.PrintDocument();
     this.printDialog1 = new System.Windows.Forms.PrintDialog();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.lstExpStatus = new PrintableListView.PrintableListView();
     this.StockCode = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.cboYear = new DevExpress.XtraEditors.LookUpEdit();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartPie)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(simpleDiagram3D1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboStores.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).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";
     //
     // dtFrom
     //
     this.dtFrom.CalendarFont = new System.Drawing.Font("Microsoft Sans Serif", 7F);
     this.dtFrom.DayOfWeekCharacters = 2;
     this.dtFrom.Location = new System.Drawing.Point(279, 14);
     this.dtFrom.Name = "dtFrom";
     this.dtFrom.PopUpFontSize = 11F;
     this.dtFrom.Size = new System.Drawing.Size(98, 20);
     this.dtFrom.TabIndex = 28;
     this.dtFrom.Visible = false;
     //
     // dtTo
     //
     this.dtTo.CalendarFont = new System.Drawing.Font("Microsoft Sans Serif", 5F);
     this.dtTo.DayOfWeekCharacters = 2;
     this.dtTo.Location = new System.Drawing.Point(223, 49);
     this.dtTo.Name = "dtTo";
     this.dtTo.PopUpFontSize = 11F;
     this.dtTo.Size = new System.Drawing.Size(80, 20);
     this.dtTo.TabIndex = 29;
     this.dtTo.Visible = false;
     //
     // 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 :";
     //
     // chartPie
     //
     this.chartPie.AppearanceNameSerializable = "Pastel Kit";
     this.chartPie.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(239)))), ((int)(((byte)(255)))));
     simpleDiagram3D1.RotationMatrixSerializable = "1;0;0;0;0;0.5;-0.866025403784439;0;0;0.866025403784439;0.5;0;0;0;0;1";
     this.chartPie.Diagram = simpleDiagram3D1;
     this.chartPie.EmptyChartText.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chartPie.EmptyChartText.Text = "Data is not available for the selected Store and Year. ";
     this.chartPie.EmptyChartText.TextColor = System.Drawing.Color.Black;
     this.chartPie.Location = new System.Drawing.Point(12, 38);
     this.chartPie.Name = "chartPie";
     this.chartPie.PaletteName = "Palette 2";
     this.chartPie.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)(5)))), ((int)(((byte)(169)))), ((int)(((byte)(10))))), System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(169)))), ((int)(((byte)(10)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(33)))), ((int)(((byte)(15))))), System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(33)))), ((int)(((byte)(15)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(186)))), ((int)(((byte)(217))))), System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(186)))), ((int)(((byte)(217)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(94))))), System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(94)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(199)))), ((int)(((byte)(70))))), System.Drawing.Color.FromArgb(((int)(((byte)(144)))), ((int)(((byte)(238)))), ((int)(((byte)(82)))))),
         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))))))}));
     this.chartPie.PaletteRepository.Add("Palette 2", new DevExpress.XtraCharts.Palette("Palette 2", 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)(111)))), ((int)(((byte)(203)))), ((int)(((byte)(219))))), System.Drawing.Color.FromArgb(((int)(((byte)(111)))), ((int)(((byte)(203)))), ((int)(((byte)(219)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(94))))), System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(94)))))),
         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))))))}));
     this.chartPie.PaletteRepository.Add("Palette 3", new DevExpress.XtraCharts.Palette("Palette 3", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[] {
         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)(111)))), ((int)(((byte)(203)))), ((int)(((byte)(219))))), System.Drawing.Color.FromArgb(((int)(((byte)(111)))), ((int)(((byte)(203)))), ((int)(((byte)(219)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(94))))), System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(94)))))),
         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))))))}));
     pie3DSeriesLabel1.LineVisible = true;
     piePointOptions1.PointView = DevExpress.XtraCharts.PointView.SeriesName;
     piePointOptions1.ValueNumericOptions.Format = DevExpress.XtraCharts.NumericFormat.Percent;
     pie3DSeriesLabel1.PointOptions = piePointOptions1;
     series1.Label = pie3DSeriesLabel1;
     series1.Name = "Series 1";
     series1.View = pie3DSeriesView1;
     this.chartPie.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1};
     pie3DSeriesLabel2.LineVisible = true;
     this.chartPie.SeriesTemplate.Label = pie3DSeriesLabel2;
     this.chartPie.SeriesTemplate.View = pie3DSeriesView2;
     this.chartPie.Size = new System.Drawing.Size(1037, 530);
     this.chartPie.TabIndex = 20;
     //
     // cboStores
     //
     this.cboStores.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cboStores.Location = new System.Drawing.Point(803, 12);
     this.cboStores.Name = "cboStores";
     this.cboStores.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.cboStores.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreName", "Name")});
     this.cboStores.Properties.DisplayMember = "StoreName";
     this.cboStores.Properties.NullText = "";
     this.cboStores.Properties.ValueMember = "ID";
     this.cboStores.Size = new System.Drawing.Size(190, 20);
     this.cboStores.StyleController = this.layoutControl1;
     this.cboStores.TabIndex = 21;
     this.cboStores.EditValueChanged += new System.EventHandler(this.cboStores_SelectedValueChanged_1);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.cboYear);
     this.layoutControl1.Controls.Add(this.lkCategory);
     this.layoutControl1.Controls.Add(this.label1);
     this.layoutControl1.Controls.Add(this.chartPie);
     this.layoutControl1.Controls.Add(this.btnPrint);
     this.layoutControl1.Controls.Add(this.dtDate);
     this.layoutControl1.Controls.Add(this.cboStores);
     this.layoutControl1.Controls.Add(this.dtFrom);
     this.layoutControl1.Controls.Add(this.dtTo);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem2});
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(50, 194, 250, 350);
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1061, 580);
     this.layoutControl1.TabIndex = 28;
     this.layoutControl1.Text = "layoutControl1";
     //
     // lkCategory
     //
     this.lkCategory.Location = new System.Drawing.Point(606, 12);
     this.lkCategory.Name = "lkCategory";
     this.lkCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkCategory.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkCategory.Properties.DisplayMember = "Name";
     this.lkCategory.Properties.NullText = "";
     this.lkCategory.Properties.ValueMember = "ID";
     this.lkCategory.Size = new System.Drawing.Size(193, 20);
     this.lkCategory.StyleController = this.layoutControl1;
     this.lkCategory.TabIndex = 26;
     this.lkCategory.EditValueChanged += new System.EventHandler(this.cboStores_SelectedValueChanged_1);
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(12, 12);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(353, 22);
     this.label1.TabIndex = 25;
     this.label1.Text = "General Expiry For Current Year";
     //
     // btnPrint
     //
     this.btnPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrint.Image = global::PharmInventory.Properties.Resources.printer;
     this.btnPrint.Location = new System.Drawing.Point(997, 12);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(52, 22);
     this.btnPrint.StyleController = this.layoutControl1;
     this.btnPrint.TabIndex = 24;
     this.btnPrint.Text = "Print";
     this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
     //
     // 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", 11.75F);
     this.dtDate.CustomFormat = "MM/dd/ yy";
     this.dtDate.DayOfWeekCharacters = 1;
     this.dtDate.Location = new System.Drawing.Point(561, 12);
     this.dtDate.Name = "dtDate";
     this.dtDate.PopUpFontSize = 9.75F;
     this.dtDate.Size = new System.Drawing.Size(186, 22);
     this.dtDate.TabIndex = 22;
     this.dtDate.Value = new System.DateTime(2009, 1, 20, 0, 0, 0, 0);
     this.dtDate.Visible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.dtDate;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(549, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(190, 26);
     this.layoutControlItem2.Text = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "Root";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.layoutControlItem5,
     this.layoutControlItem6,
     this.layoutControlItem8});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Size = new System.Drawing.Size(1061, 580);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.chartPie;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1041, 534);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.cboStores;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(791, 0);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(194, 26);
     this.layoutControlItem3.Text = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.btnPrint;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(985, 0);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(56, 26);
     this.layoutControlItem4.Text = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(357, 0);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(118, 26);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.label1;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(357, 26);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.lkCategory;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(594, 0);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(197, 26);
     this.layoutControlItem6.Text = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible = false;
     //
     // printDoc
     //
     this.printDoc.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDocument1_PrintPage);
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // groupBox3
     //
     this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox3.Controls.Add(this.lstExpStatus);
     this.groupBox3.Location = new System.Drawing.Point(507, 446);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(529, 111);
     this.groupBox3.TabIndex = 27;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Stock Expiry Status";
     //
     // lstExpStatus
     //
     this.lstExpStatus.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.lstExpStatus.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.StockCode,
     this.columnHeader3,
     this.columnHeader4,
     this.columnHeader1});
     this.lstExpStatus.FitToPage = false;
     this.lstExpStatus.GridLines = true;
     this.lstExpStatus.Location = new System.Drawing.Point(6, 20);
     this.lstExpStatus.Name = "lstExpStatus";
     this.lstExpStatus.Size = new System.Drawing.Size(510, 85);
     this.lstExpStatus.TabIndex = 14;
     this.lstExpStatus.Title = "";
     this.lstExpStatus.UseCompatibleStateImageBehavior = false;
     this.lstExpStatus.View = System.Windows.Forms.View.Details;
     //
     // StockCode
     //
     this.StockCode.Text = "Stock Status";
     this.StockCode.Width = 121;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Percentage ";
     this.columnHeader3.Width = 101;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Quantity";
     this.columnHeader4.Width = 102;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Price";
     this.columnHeader1.Width = 100;
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
     this.printableComponentLink1});
     //
     // printableComponentLink1
     //
     this.printableComponentLink1.Component = this.chartPie;
     //
     //
     //
     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, 100, 100);
     this.printableComponentLink1.MinMargins = new System.Drawing.Printing.Margins(5, 5, 20, 20);
     this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] {
         "",
         "Expiry Status Chart",
         ""}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))), DevExpress.XtraPrinting.BrickAlignment.Near), new DevExpress.XtraPrinting.PageFooterArea(new string[] {
         "[Page # of Pages #]",
         "",
         "[Date Printed]"}, 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;
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.CustomizationFormText = " From : ";
     this.layoutControlItem13.Location = new System.Drawing.Point(884, 24);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(206, 24);
     this.layoutControlItem13.Text = " From : ";
     this.layoutControlItem13.TextSize = new System.Drawing.Size(52, 13);
     this.layoutControlItem13.TextToControlDistance = 5;
     this.layoutControlItem13.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.CustomizationFormText = " From : ";
     this.layoutControlItem7.Location = new System.Drawing.Point(884, 24);
     this.layoutControlItem7.Name = "layoutControlItem13";
     this.layoutControlItem7.Size = new System.Drawing.Size(206, 24);
     this.layoutControlItem7.Text = " From : ";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(52, 13);
     this.layoutControlItem7.TextToControlDistance = 5;
     this.layoutControlItem7.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // cboYear
     //
     this.cboYear.Location = new System.Drawing.Point(487, 12);
     this.cboYear.Name = "cboYear";
     this.cboYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboYear.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("year", "Year")});
     this.cboYear.Properties.DisplayMember = "year";
     this.cboYear.Properties.NullText = "";
     this.cboYear.Properties.ValueMember = "year";
     this.cboYear.Size = new System.Drawing.Size(115, 20);
     this.cboYear.StyleController = this.layoutControl1;
     this.cboYear.TabIndex = 26;
     this.cboYear.EditValueChanged += new System.EventHandler(this.cboYear_EditValueChanged);
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.cboYear;
     this.layoutControlItem8.CustomizationFormText = "layoutControlItem8";
     this.layoutControlItem8.Location = new System.Drawing.Point(475, 0);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(119, 26);
     this.layoutControlItem8.Text = "layoutControlItem8";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem8.TextToControlDistance = 0;
     this.layoutControlItem8.TextVisible = false;
     //
     // GeneralExpiryChart
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.ClientSize = new System.Drawing.Size(1061, 580);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.groupBox3);
     this.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "GeneralExpiryChart";
     this.Text = "GeneralReport";
     this.Load += new System.EventHandler(this.GeneralReport_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(simpleDiagram3D1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartPie)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboStores.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     this.groupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.SimpleDiagram3D simpleDiagram3D1 = new DevExpress.XtraCharts.SimpleDiagram3D();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.Pie3DSeriesLabel pie3DSeriesLabel1 = new DevExpress.XtraCharts.Pie3DSeriesLabel();
     DevExpress.XtraCharts.PiePointOptions piePointOptions1 = new DevExpress.XtraCharts.PiePointOptions();
     DevExpress.XtraCharts.Pie3DSeriesView pie3DSeriesView1 = new DevExpress.XtraCharts.Pie3DSeriesView();
     DevExpress.XtraCharts.Pie3DSeriesLabel pie3DSeriesLabel2 = new DevExpress.XtraCharts.Pie3DSeriesLabel();
     DevExpress.XtraCharts.Pie3DSeriesView pie3DSeriesView2 = new DevExpress.XtraCharts.Pie3DSeriesView();
     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.chartPie = new DevExpress.XtraCharts.ChartControl();
     this.cboStores = new System.Windows.Forms.ComboBox();
     this.dtDate = new CalendarLib.DateTimePickerEx();
     this.printDoc = new System.Drawing.Printing.PrintDocument();
     this.printDialog1 = new System.Windows.Forms.PrintDialog();
     this.progressBar1 = new System.Windows.Forms.ProgressBar();
     this.btnPrint = new System.Windows.Forms.Button();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartPie)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(simpleDiagram3D1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView2)).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 :";
     //
     // chartPie
     //
     this.chartPie.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.chartPie.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.chartPie.BorderOptions.Visible = false;
     simpleDiagram3D1.RotationMatrixSerializable = "1;0;0;0;0;0.5;-0.866025403784439;0;0;0.866025403784439;0.5;0;0;0;0;1";
     this.chartPie.Diagram = simpleDiagram3D1;
     this.chartPie.Location = new System.Drawing.Point(26, 48);
     this.chartPie.Name = "chartPie";
     this.chartPie.PaletteName = "Palette 2";
     this.chartPie.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)(5)))), ((int)(((byte)(169)))), ((int)(((byte)(10))))), System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(169)))), ((int)(((byte)(10)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(33)))), ((int)(((byte)(15))))), System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(33)))), ((int)(((byte)(15)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(186)))), ((int)(((byte)(217))))), System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(186)))), ((int)(((byte)(217)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(94))))), System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(94)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(199)))), ((int)(((byte)(70))))), System.Drawing.Color.FromArgb(((int)(((byte)(144)))), ((int)(((byte)(238)))), ((int)(((byte)(82)))))),
         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))))))}));
     this.chartPie.PaletteRepository.Add("Palette 2", new DevExpress.XtraCharts.Palette("Palette 2", 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)(111)))), ((int)(((byte)(203)))), ((int)(((byte)(219))))), System.Drawing.Color.FromArgb(((int)(((byte)(111)))), ((int)(((byte)(203)))), ((int)(((byte)(219)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(94))))), System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(94)))))),
         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))))))}));
     pie3DSeriesLabel1.LineVisible = true;
     series1.Label = pie3DSeriesLabel1;
     series1.Name = "Series 1";
     piePointOptions1.ValueNumericOptions.Format = DevExpress.XtraCharts.NumericFormat.Percent;
     series1.PointOptions = piePointOptions1;
     series1.View = pie3DSeriesView1;
     this.chartPie.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1};
     pie3DSeriesLabel2.LineVisible = true;
     this.chartPie.SeriesTemplate.Label = pie3DSeriesLabel2;
     this.chartPie.SeriesTemplate.View = pie3DSeriesView2;
     this.chartPie.Size = new System.Drawing.Size(1104, 442);
     this.chartPie.TabIndex = 20;
     //
     // cboStores
     //
     this.cboStores.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cboStores.DisplayMember = "StoreName";
     this.cboStores.FormattingEnabled = true;
     this.cboStores.Location = new System.Drawing.Point(904, 18);
     this.cboStores.Name = "cboStores";
     this.cboStores.Size = new System.Drawing.Size(121, 21);
     this.cboStores.TabIndex = 21;
     this.cboStores.ValueMember = "ID";
     this.cboStores.SelectedValueChanged += new System.EventHandler(this.cboStores_SelectedValueChanged_1);
     //
     // 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.Location = new System.Drawing.Point(738, 20);
     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;
     //
     // printDoc
     //
     this.printDoc.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDocument1_PrintPage);
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // 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(1065, 18);
     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.button1_Click);
     //
     // GeneralExpiryChart
     //
     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.progressBar1);
     this.Controls.Add(this.btnPrint);
     this.Controls.Add(this.dtDate);
     this.Controls.Add(this.cboStores);
     this.Controls.Add(this.chartPie);
     this.Name = "GeneralExpiryChart";
     this.Text = "GeneralReport";
     this.Load += new System.EventHandler(this.GeneralReport_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(simpleDiagram3D1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartPie)).EndInit();
     this.ResumeLayout(false);
 }
        private void btnAdjustments_Click(object sender, EventArgs e)
        {
            if (ValidateMoveToAdjustments())
            {
                if (DialogResult.Yes == XtraMessageBox.Show("Are you sure you would like to commit this adjustment?", "Confirmation", MessageBoxButtons.YesNo, MessageBoxIcon.Question))
                {
                    PalletLocation pl          = new PalletLocation();
                    Pallet         p           = new Pallet();
                    ReceiveDoc     rdoc        = new ReceiveDoc();
                    ReceivePallet  rp          = new ReceivePallet();
                    int            printNubmer = InternalTransfer.GetNewPrintNumber() + 1;
                    for (int i = 0; i < gridView3.RowCount; i++)
                    {
                        DataRow dr = gridView3.GetDataRow(i);
                        if (dr["Adjust"] != DBNull.Value)
                        {
                            int amount = Convert.ToInt32(dr["Adjust"]);
                            rp.LoadByPrimaryKey(Convert.ToInt32(dr["ReceivePalletID"]));
                            rdoc.LoadByPrimaryKey(rp.ReceiveID);

                            rdoc.NoOfPack += amount;
                            amount        *= rdoc.QtyPerPack;
                            rp.Balance    += amount;
                            if (rp.IsColumnNull("ReceivedQuantity"))
                            {
                                rp.ReceivedQuantity = 0;
                            }
                            rp.ReceivedQuantity += amount;

                            rdoc.QuantityLeft += amount;
                            rdoc.Quantity     += amount;

                            BLL.LossAndAdjustment d = new BLL.LossAndAdjustment();
                            d.AddNew();
                            d.GenerateRefNo();
                            d.ItemID   = Convert.ToInt32(dr["ItemID"]);
                            d.ReasonId = Convert.ToInt32(dr["Reason"]);
                            d.RecID    = rdoc.ID;
                            d.Quantity = amount;
                            d.BatchNo  = rdoc.BatchNo;

                            CalendarLib.DateTimePickerEx edate = new CalendarLib.DateTimePickerEx();
                            edate.Value = DateTime.Today;

                            edate.CustomFormat = "MM/dd/yyyy";
                            d.Date             = ConvertDate.DateConverter(edate.Text);

                            d.EurDate = DateTime.Today;
                            if (!rdoc.IsColumnNull("Cost"))
                            {
                                d.Cost = Math.Abs(rdoc.Cost * amount);
                            }
                            d.StoreId    = rdoc.StoreID;
                            d.Losses     = false;
                            d.ApprovedBy = CurrentContext.UserId.ToString();
                            d.Save();
                            rdoc.Save();
                            rp.Save();
                        }
                    }
                    PopulateItemDetails();
                    XtraMessageBox.Show("Items adjusted successfully.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
            }
        }
        private void btnAdjustments_Click(object sender, EventArgs e)
        {
            if (ValidateMoveToAdjustments())
            {
                if (DialogResult.Yes == XtraMessageBox.Show("Are you sure you would like to commit this adjustment?", "Confirmation", MessageBoxButtons.YesNo, MessageBoxIcon.Question))
                {

                    PalletLocation pl = new PalletLocation();
                    Pallet p = new Pallet();
                    ReceiveDoc rdoc = new ReceiveDoc();
                    ReceivePallet rp = new ReceivePallet();
                    int printNubmer = InternalTransfer.GetNewPrintNumber() + 1 ;
                    for (int i = 0; i < gridView3.RowCount; i++)
                    {
                         DataRow dr = gridView3.GetDataRow(i);
                         if (dr["Adjust"] != DBNull.Value)
                         {

                             int amount = Convert.ToInt32(dr["Adjust"]);
                             rp.LoadByPrimaryKey(Convert.ToInt32(dr["ReceivePalletID"]));
                             rdoc.LoadByPrimaryKey(rp.ReceiveID);

                             rdoc.NoOfPack += amount;
                             amount *= rdoc.QtyPerPack;
                             rp.Balance += amount;
                             if (rp.IsColumnNull("ReceivedQuantity"))
                             {
                                 rp.ReceivedQuantity = 0;
                             }
                             rp.ReceivedQuantity += amount;

                             rdoc.QuantityLeft += amount;
                             rdoc.Quantity += amount;

                             BLL.LossAndAdjustment d = new BLL.LossAndAdjustment();
                             d.AddNew();
                             d.GenerateRefNo();
                             d.ItemID = Convert.ToInt32(dr["ItemID"]);
                             d.ReasonId = Convert.ToInt32(dr["Reason"]);
                             d.RecID = rdoc.ID;
                             d.Quantity = amount;
                             d.BatchNo = rdoc.BatchNo;

                             CalendarLib.DateTimePickerEx edate = new CalendarLib.DateTimePickerEx();
                             edate.Value = DateTime.Today;

                             edate.CustomFormat = "MM/dd/yyyy";
                             d.Date = ConvertDate.DateConverter(edate.Text);

                             d.EurDate = DateTime.Today;
                             if (!rdoc.IsColumnNull("Cost"))
                             {
                                 d.Cost = Math.Abs(rdoc.Cost*amount);
                             }
                             d.StoreId = rdoc.StoreID;
                             d.Losses = false;
                             d.ApprovedBy = CurrentContext.UserId.ToString();
                             d.Save();
                             rdoc.Save();
                             rp.Save();

                         }
                    }
                    PopulateItemDetails();
                    XtraMessageBox.Show("Items adjusted successfully.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
            }
        }
 /// <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);
 }
 /// <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.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel1 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel2 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.LineSeriesView lineSeriesView2 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel3 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.LineSeriesView lineSeriesView3 = new DevExpress.XtraCharts.LineSeriesView();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GeneralCostChart));
     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.cboStores = new DevExpress.XtraEditors.LookUpEdit();
     this.lblHeader = new System.Windows.Forms.Label();
     this.printDoc = new System.Drawing.Printing.PrintDocument();
     this.printDialog1 = new System.Windows.Forms.PrintDialog();
     this.btnPrint = new DevExpress.XtraEditors.SimpleButton();
     this.chartReceiveCost = new DevExpress.XtraCharts.ChartControl();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.cboYear = new DevExpress.XtraEditors.LookUpEdit();
     this.dtDate = new CalendarLib.DateTimePickerEx();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboStores.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartReceiveCost)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboYear.Properties)).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 :";
     //
     // cboStores
     //
     this.cboStores.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cboStores.Location = new System.Drawing.Point(600, 12);
     this.cboStores.Name = "cboStores";
     this.cboStores.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.cboStores.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreName", "Name")});
     this.cboStores.Properties.DisplayMember = "StoreName";
     this.cboStores.Properties.NullText = "";
     this.cboStores.Properties.ValueMember = "ID";
     this.cboStores.Size = new System.Drawing.Size(193, 20);
     this.cboStores.TabIndex = 21;
     this.cboStores.EditValueChanged += new System.EventHandler(this.cboStores_SelectedValueChanged);
     //
     // 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(41, 15);
     this.lblHeader.Name = "lblHeader";
     this.lblHeader.Size = new System.Drawing.Size(232, 23);
     this.lblHeader.TabIndex = 23;
     this.lblHeader.Text = "Issue and Receive Cost";
     this.lblHeader.Click += new System.EventHandler(this.lblHeader_Click);
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // btnPrint
     //
     this.btnPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrint.Location = new System.Drawing.Point(799, 9);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(63, 24);
     this.btnPrint.TabIndex = 24;
     this.btnPrint.Text = "Print";
     this.btnPrint.Click += new System.EventHandler(this.button1_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)));
     xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.chartReceiveCost.Diagram = xyDiagram1;
     this.chartReceiveCost.EmptyChartText.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chartReceiveCost.EmptyChartText.Text = "Data is not available for the selected Store and Year. ";
     this.chartReceiveCost.EmptyChartText.TextColor = System.Drawing.Color.Black;
     this.chartReceiveCost.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Right;
     this.chartReceiveCost.Location = new System.Drawing.Point(12, 41);
     this.chartReceiveCost.Name = "chartReceiveCost";
     pointSeriesLabel1.LineVisible = true;
     series1.Label = pointSeriesLabel1;
     series1.Name = "Series 1";
     series1.View = lineSeriesView1;
     pointSeriesLabel2.LineVisible = true;
     series2.Label = pointSeriesLabel2;
     series2.Name = "Series 2";
     series2.View = lineSeriesView2;
     this.chartReceiveCost.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1,
     series2};
     pointSeriesLabel3.LineVisible = true;
     this.chartReceiveCost.SeriesTemplate.Label = pointSeriesLabel3;
     this.chartReceiveCost.SeriesTemplate.View = lineSeriesView3;
     this.chartReceiveCost.Size = new System.Drawing.Size(849, 527);
     this.chartReceiveCost.TabIndex = 25;
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
     this.printableComponentLink1});
     //
     // printableComponentLink1
     //
     this.printableComponentLink1.Component = this.chartReceiveCost;
     //
     //
     //
     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, 100, 100);
     this.printableComponentLink1.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printableComponentLink1.PrintingSystem = this.printingSystem1;
     this.printableComponentLink1.PrintingSystemBase = this.printingSystem1;
     //
     // cboYear
     //
     this.cboYear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cboYear.Location = new System.Drawing.Point(505, 12);
     this.cboYear.Name = "cboYear";
     this.cboYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.cboYear.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("year", "year")});
     this.cboYear.Properties.DisplayMember = "year";
     this.cboYear.Properties.NullText = "";
     this.cboYear.Properties.ValueMember = "year";
     this.cboYear.Size = new System.Drawing.Size(77, 20);
     this.cboYear.TabIndex = 26;
     this.cboYear.EditValueChanged += new System.EventHandler(this.cboYear_EditValueChanged);
     //
     // 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.Black;
     this.dtDate.CustomFormat = "MM/dd/ yy";
     this.dtDate.DayOfWeekCharacters = 2;
     this.dtDate.ForeColor = System.Drawing.Color.Black;
     this.dtDate.Location = new System.Drawing.Point(198, 18);
     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;
     //
     // 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(873, 580);
     this.Controls.Add(this.cboYear);
     this.Controls.Add(this.chartReceiveCost);
     this.Controls.Add(this.btnPrint);
     this.Controls.Add(this.lblHeader);
     this.Controls.Add(this.dtDate);
     this.Controls.Add(this.cboStores);
     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)(this.cboStores.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartReceiveCost)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboYear.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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();
 }
        private void lstTree_FocusedNodeChanged(object sender, DevExpress.XtraTreeList.FocusedNodeChangedEventArgs e)
        {
            var dtDate = new CalendarLib.DateTimePickerEx
                                                      {
                                                          CustomFormat = "MM/dd/yyyy",
                                                          Value = DateTime.Now
                                                      };
            DateTime dtCurrent = ConvertDate.DateConverter(dtDate.Text);
            var dr = (DataRowView) lstTree.GetDataRecordByNode(lstTree.FocusedNode);
            if (dr == null) return;

            var rec = new ReceiveDoc();
            DataTable dtRec;
            if (dr["ParentID"] == DBNull.Value)
            {
                int yr = ((dtCurrent.Month > 10) ? dtCurrent.Year : dtCurrent.Year - 1);
                DateTime dt1 = new DateTime(Convert.ToInt32(dr["ID"]) - 1, 11, 1);
                DateTime dt2 = new DateTime(Convert.ToInt32(dr["ID"]), 11, 1);
                dtRec = rec.GetTransactionByDateRange(Convert.ToInt32(cboStores.EditValue), dt1, dt2);
                lblRecDate.Text = dr["RefNo"].ToString();
            }
            else
            {
                dtRec = rec.GetTransactionByRefNo(dr["RefNo"].ToString(), Convert.ToInt32(cboStores.EditValue),dr["Date"].ToString());
                lblRecDate.Text = Convert.ToDateTime(dr["Date"]).ToString("MM dd,yyyy");
            }

            gridReceives.DataSource = dtRec;
        }
        private void lstTree_FocusedNodeChanged(object sender, DevExpress.XtraTreeList.FocusedNodeChangedEventArgs e)
        {
            CalendarLib.DateTimePickerEx dtDate = new CalendarLib.DateTimePickerEx
                                                      {
                                                          CustomFormat = "MM/dd/yyyy",
                                                          Value = DateTime.Now
                                                      };
            DateTime dtCurrent = ConvertDate.DateConverter(dtDate.Text);

            DataRowView dr = (DataRowView)lstTree.GetDataRecordByNode(lstTree.FocusedNode);

            if (dr == null) return;

            //lstTransactions.Items.Clear();
            IssueDoc iss = new IssueDoc();
            DataTable dtRec;
            if (dr["ParentID"] == DBNull.Value)
            {
                EthiopianDate.EthiopianDate ethiopianDate = new EthiopianDate.EthiopianDate(Convert.ToInt32(dr["ID"]), 1, 1);
                dtRec = iss.GetTransactionByDateRange(Convert.ToInt32(cboStores.EditValue), ethiopianDate.StartOfFiscalYear.ToGregorianDate(), ethiopianDate.EndOfFiscalYear.ToGregorianDate());
                string dateString = dr["RefNo"].ToString();
                lblIssDate.Text = dateString;
            }
            else
            {
                //dtRec = iss.GetTransactionByRefNo(dr["RefNo"].ToString(), Convert.ToInt32(cboStores.EditValue), dr["Date"].ToString());
                dtRec = iss.GetTransactionByRefNo(dr["RefNo"].ToString(),Convert.ToDateTime(dr["Date"]));
                lblIssDate.Text = Convert.ToDateTime(dr["Date"]).ToString("MM dd,yyyy");
            }
            gridIssues.DataSource = dtRec;
        }
        private void btnCommit_Click(object sender, EventArgs e)
        {
            if (ValidateQuarantine())
            {
                MyGeneration.dOOdads.TransactionMgr transaction = MyGeneration.dOOdads.TransactionMgr.ThreadTransactionMgr();
                transaction.BeginTransaction();
                if (DialogResult.Yes == XtraMessageBox.Show("Are you sure you want to commit the Loss and Adjustment on this screen?", "Confirmation", MessageBoxButtons.YesNo, MessageBoxIcon.Question))
                {
                    // do the actual commit here.
                    int            printNubmer = InternalTransfer.GetNewPrintNumber() + 1;
                    PalletLocation pl          = new PalletLocation();
                    Pallet         p           = new Pallet();
                    ReceiveDoc     rdoc        = new ReceiveDoc();
                    ReceivePallet  rp          = new ReceivePallet();
                    for (int i = 0; i < gridView1.RowCount; i++)
                    {
                        DataRow dr       = gridView1.GetDataRow(i);
                        Double  writeoff = 0;
                        Double  reLocate = 0;
                        try
                        {
                            if (dr["WriteOff"] != DBNull.Value)
                            {
                                writeoff = Double.Parse(dr["WriteOff"].ToString());
                            }
                            if (dr["ReLocate"] != DBNull.Value)
                            {
                                reLocate = Double.Parse(dr["ReLocate"].ToString());
                            }
                        }
                        catch (Exception exc)
                        {
                        }

                        if (dr["WriteOff"] != DBNull.Value & writeoff > 0)
                        {
                            if (Double.Parse(dr["WriteOff"].ToString()) > Double.Parse(dr["Balance"].ToString()))
                            {
                                XtraMessageBox.Show("Couldn't commit to the numbers you specified. Please specify number less than the balance.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                                return;
                            }
                            int writeoffAmout = Convert.ToInt32(dr["WriteOff"]);
                            int qtyPerPack    = Convert.ToInt32(dr["QtyPerPack"]);
                            writeoffAmout *= qtyPerPack;
                            rp.LoadByPrimaryKey(Convert.ToInt32(dr["ReceivePalletID"]));
                            rdoc.LoadByPrimaryKey(rp.ReceiveID);
                            string x = dr["NewPalletLocation"].ToString();
                            rp.Balance -= writeoffAmout;
                            try
                            {
                                //  rp.ReceivedQuantity -= writeoffAmout;
                            }
                            catch { }
                            rdoc.QuantityLeft -= writeoffAmout;

                            ReceivePallet nrp = new ReceivePallet();
                            nrp.AddNew();
                            nrp.ReceiveID = rp.ReceiveID;
                            nrp.PalletID  = pl.GetpalletidbyPalletLocationOrgetnew(int.Parse(dr["NewPalletLocation"].ToString()));
                            //nrp.ReceivedQuantity = rp.ReceivedQuantity;
                            nrp.Balance       = writeoffAmout;
                            nrp.ReservedStock = 0;
                            //nrp.ReserveOrderID = rp.ReserveOrderID;
                            nrp.BoxSize           = rp.BoxSize;
                            nrp.PalletLocationID  = int.Parse(dr["NewPalletLocation"].ToString());
                            nrp.IsOriginalReceive = rp.IsOriginalReceive;



                            BLL.LossAndAdjustment d = new BLL.LossAndAdjustment();
                            d.AddNew();
                            d.GenerateRefNo();
                            d.ItemID   = Convert.ToInt32(dr["ItemID"]);
                            d.ReasonId = Convert.ToInt32(dr["Reason"]);
                            d.RecID    = rdoc.ID;
                            d.Quantity = writeoffAmout;
                            d.BatchNo  = rdoc.BatchNo;

                            CalendarLib.DateTimePickerEx edate = new CalendarLib.DateTimePickerEx();
                            edate.Value = DateTime.Today;
                            //TODO: fix to an ethiopian date here
                            edate.CustomFormat = "MM/dd/yyyy";

                            d.Date = ConvertDate.DateConverter(edate.Text);

                            d.EurDate = DateTime.Today;
                            d.Cost    = rdoc.IsColumnNull("Cost")? 0: Math.Abs(rdoc.Cost * writeoffAmout);
                            d.StoreId = rdoc.StoreID;
                            d.Losses  = true;
                            //todo:
                            d.ApprovedBy = CurrentContext.UserId.ToString();
                            //d.Remarks

                            InternalTransfer it = new  InternalTransfer();
                            it.AddNew();
                            it.ItemID = d.ItemID;
                            it.FromPalletLocationID = pl.GetPalletLocationIDByPalletID(int.Parse(dr["PalletID"].ToString()));
                            it.ToPalletLocationID   = nrp.PalletLocationID;
                            it.BatchNumber          = d.BatchNo;
                            if (!rdoc.IsColumnNull("ExpDate"))
                            {
                                it.ExpireDate = rdoc.ExpDate;
                            }
                            it.ReceiveDocID   = rdoc.ID;
                            it.ManufacturerID = rdoc.ManufacturerId;
                            it.QtyPerPack     = Convert.ToInt32(dr["QtyPerPack"]);
                            it.Packs          = rdoc.NoOfPack;
                            it.QuantityInBU   = nrp.Balance;


                            LossAndAdjustmentReason r = new LossAndAdjustmentReason();
                            it.Type = r.GetReasonByID(d.ReasonId);


                            // d.Save();
                            rdoc.Save();
                            rp.Save();

                            rdoc.QuantityLeft += writeoffAmout;
                            rdoc.Save();
                            nrp.Save();
                            it.Save();
                            int xs = it.ID;
                        }
                        else if (dr["ReLocate"] != DBNull.Value & reLocate > 0)
                        {
                            if (dr["ReLocate"] != DBNull.Value)
                            {
                                int amount     = Convert.ToInt32(dr["ReLocate"]);
                                int qtyPerPack = Convert.ToInt32(dr["QtyPerPack"]);
                                amount *= qtyPerPack;
                                rp.LoadByPrimaryKey(Convert.ToInt32(dr["ReceivePalletID"]));
                                rdoc.LoadByPrimaryKey(rp.ReceiveID);
                                int palletLocationID = Convert.ToInt32(dr["PalletLocationID"]);

                                int qPalletLocationID =
                                    PalletLocation.GetQuaranteenPalletLocationByPalletLocationID(palletLocationID); //PalletLocation.GetQuaranteenPalletLocation(Convert.ToInt32(dr["ID"]));
                                pl.LoadByPrimaryKey(qPalletLocationID);

                                ReceivePallet rp2    = new ReceivePallet();
                                ReceiveDoc    rd     = new ReceiveDoc();
                                Pallet        pallet = new Pallet();
                                rp.LoadByPrimaryKey(Convert.ToInt32(dr["ReceivePalletID"]));
                                rd.LoadByPrimaryKey(rp.ReceiveID);
                                pallet.AddNew();
                                Item item = new Item();
                                item.LoadByPrimaryKey(rdoc.ItemID);
                                if (item.StorageTypeID.ToString() == StorageType.BulkStore)
                                {
                                    pallet.PalletNo = Pallet.GetLastPanelNumber();
                                }
                                pallet.Save();
                                rp2.AddNew();
                                rp2.PalletID          = pl.GetpalletidbyPalletLocationOrgetnew(int.Parse(dr["NewPalletLocation"].ToString()));//pallet.ID;
                                rp2.ReceiveID         = rp.ReceiveID;
                                rp2.IsOriginalReceive = rp.IsOriginalReceive;
                                // calculate the new balance
                                BLL.ItemManufacturer im = new BLL.ItemManufacturer();
                                //im.LoadDefaultReceiving(rd.ItemID, Convert.ToInt32(dr["ManufacturerID"]));
                                //im.LoadIMbyLevel(rd.ItemID, Convert.ToInt32(dr["ManufacturerID"]), Convert.ToInt32(dr["BoxLevel"]));
                                //int packqty = (amount / im.QuantityInBasicUnit);
                                rd.QuantityLeft -= amount;
                                rp.Balance      -= amount;
                                rd.Save();
                                rp.Save();

                                rd.QuantityLeft += amount;
                                rp2.Balance      = amount;//packqty * im.QuantityInBasicUnit;
                                rd.Save();

                                rp2.BoxSize          = rp.BoxSize;
                                rp2.ReservedStock    = 0;
                                rp2.PalletLocationID = int.Parse(dr["NewPalletLocation"].ToString());
                                rp2.Save();

                                pl.Confirmed = false;
                                pl.Save();

                                // select the new pallet location here.

                                /*   XtraForm xdb = new XtraForm();
                                 * xdb.Controls.Add(panelControl2);
                                 * Item itms= new Item();
                                 * itms.GetItemByPrimaryKey(Convert.ToInt32(dr["ItemID"]));
                                 * lblItemName.Text = itms.FullItemName;
                                 * panelControl2.Visible = true;
                                 * panelControl2.Dock = DockStyle.Fill;
                                 * xdb.Text = "Select Location for relocated Item";
                                 * lkLocation.Properties.DataSource = PalletLocation.GetAllFreeFor(Convert.ToInt32(dr["ItemID"]));
                                 * xdb.ShowDialog();
                                 *
                                 * PalletLocation pl2 = new PalletLocation();
                                 * pl2.LoadByPrimaryKey(Convert.ToInt32(lkLocation.EditValue));
                                 * pl2.PalletID = pallet.ID;
                                 * pl2.Confirmed = false;
                                 * pl2.Save();
                                 */
                                InternalTransfer it = new InternalTransfer();

                                it.AddNew();
                                it.ItemID   = rd.ItemID;
                                it.BoxLevel = 0; // im.PackageLevel;
                                //it.ExpireDate = rd.ExpDate;
                                if (!rd.IsColumnNull("ExpDate"))
                                {
                                    it.ExpireDate = rd.ExpDate;
                                }
                                it.BatchNumber          = rd.BatchNo;
                                it.ManufacturerID       = Convert.ToInt32(dr["ManufacturerID"]);         //im.ManufacturerID;
                                it.FromPalletLocationID = qPalletLocationID;
                                it.ToPalletLocationID   = int.Parse(dr["NewPalletLocation"].ToString()); //pl2.ID;
                                it.QtyPerPack           = 1;
                                //it.Packs = pack qty;
                                it.ReceiveDocID = rp.ReceiveID;
                                it.QuantityInBU = amount; // it.QtyPerPack;
                                it.Type         = "ReLocation";
                                it.IssuedDate   = DateTime.Today;
                                it.Status       = 0;
                                it.PrintNumber  = printNubmer;
                                it.Save();
                            }
                        }
                    }
                    transaction.CommitTransaction();
                    BindQuarantine();
                    XtraMessageBox.Show("Quarantine Write off/Adjustment was commitd.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
            }
        }
 /// <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.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel1 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.PointOptions pointOptions1 = new DevExpress.XtraCharts.PointOptions();
     DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel2 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel3 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.XYDiagram xyDiagram2 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel4 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel5 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel6 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.XYDiagram xyDiagram3 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series5 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel7 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.Series series6 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel8 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel9 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.XYDiagram xyDiagram4 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series7 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel10 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.Series series8 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel11 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel12 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.XYDiagram xyDiagram5 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series9 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel13 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.Series series10 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel14 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel15 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SimpleDiagram3D simpleDiagram3D1 = new DevExpress.XtraCharts.SimpleDiagram3D();
     DevExpress.XtraCharts.Series series11 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.Pie3DSeriesLabel pie3DSeriesLabel1 = new DevExpress.XtraCharts.Pie3DSeriesLabel();
     DevExpress.XtraCharts.PiePointOptions piePointOptions1 = new DevExpress.XtraCharts.PiePointOptions();
     DevExpress.XtraCharts.Pie3DSeriesView pie3DSeriesView1 = new DevExpress.XtraCharts.Pie3DSeriesView();
     DevExpress.XtraCharts.Pie3DSeriesLabel pie3DSeriesLabel2 = new DevExpress.XtraCharts.Pie3DSeriesLabel();
     DevExpress.XtraCharts.Pie3DSeriesView pie3DSeriesView2 = new DevExpress.XtraCharts.Pie3DSeriesView();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel16 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ItemDetailReport));
     this.txtItemName = new DevExpress.XtraEditors.TextEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.chartBar = new DevExpress.XtraCharts.ChartControl();
     this.tabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tbSummary = new DevExpress.XtraTab.XtraTabPage();
     this.lblLastIssue = new System.Windows.Forms.Label();
     this.txtSOH = new System.Windows.Forms.Label();
     this.txtAMC = new System.Windows.Forms.Label();
     this.txtMOS = new System.Windows.Forms.Label();
     this.txtMin = new System.Windows.Forms.Label();
     this.txtMax = new System.Windows.Forms.Label();
     this.txtReorderAmount = new System.Windows.Forms.Label();
     this.txtExpiredAmount = new System.Windows.Forms.Label();
     this.txtNearExp = new System.Windows.Forms.Label();
     this.lblLastRec = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label32 = new System.Windows.Forms.Label();
     this.lblstat = new System.Windows.Forms.Label();
     this.label30 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.tbBinCard = new DevExpress.XtraTab.XtraTabPage();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.printBinCard = new DevExpress.XtraPrinting.Control.PrintControl();
     this.label24 = new System.Windows.Forms.Label();
     this.lkBinCardWarehouse = new DevExpress.XtraEditors.LookUpEdit();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.tbClassicBinCard = new DevExpress.XtraTab.XtraTabPage();
     this.lkWarehouses = new DevExpress.XtraEditors.LookUpEdit();
     this.lkYear = new DevExpress.XtraEditors.LookUpEdit();
     this.lkProgramFilter = new DevExpress.XtraEditors.LookUpEdit();
     this.transactionGrid = new DevExpress.XtraGrid.GridControl();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.tpDelete = new System.Windows.Forms.ToolStripMenuItem();
     this.gridViewBinCard = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colGRNF = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDocType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colManuf = 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.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUnitCost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTotalCost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label28 = new System.Windows.Forms.Label();
     this.tbSOHTrend = new DevExpress.XtraTab.XtraTabPage();
     this.groupSohDetail = new System.Windows.Forms.GroupBox();
     this.lkShowTable = new System.Windows.Forms.LinkLabel();
     this.label29 = new System.Windows.Forms.Label();
     this.tbAMCTrend = new DevExpress.XtraTab.XtraTabPage();
     this.lkDetailAmc = new System.Windows.Forms.LinkLabel();
     this.label34 = new System.Windows.Forms.Label();
     this.chartAmc = new DevExpress.XtraCharts.ChartControl();
     this.tbMOSTrend = new DevExpress.XtraTab.XtraTabPage();
     this.lkDetailMos = new System.Windows.Forms.LinkLabel();
     this.label35 = new System.Windows.Forms.Label();
     this.chartMOS = new DevExpress.XtraCharts.ChartControl();
     this.tbActivityTrend = new DevExpress.XtraTab.XtraTabPage();
     this.label36 = new System.Windows.Forms.Label();
     this.chartComp = new DevExpress.XtraCharts.ChartControl();
     this.tbSSTrend = new DevExpress.XtraTab.XtraTabPage();
     this.label20 = new System.Windows.Forms.Label();
     this.lblTime = new System.Windows.Forms.Label();
     this.lblCurStatus = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     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.label16 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.lblThreeStockout = new System.Windows.Forms.Label();
     this.lblSixStockOut = new System.Windows.Forms.Label();
     this.lblTwelveStockOut = new System.Windows.Forms.Label();
     this.lblThreeNearStock = new System.Windows.Forms.Label();
     this.lblSixNearStock = new System.Windows.Forms.Label();
     this.lblTwelveNear = new System.Windows.Forms.Label();
     this.lblThreeBelowMin = new System.Windows.Forms.Label();
     this.lblSixBelowMin = new System.Windows.Forms.Label();
     this.lblTwelveBelowMin = new System.Windows.Forms.Label();
     this.lblTwelveOverStock = new System.Windows.Forms.Label();
     this.lblSixOverStock = new System.Windows.Forms.Label();
     this.lblThreeOverStock = new System.Windows.Forms.Label();
     this.tbTransactions = new DevExpress.XtraTab.XtraTabPage();
     this.lblAvgIssues = new System.Windows.Forms.Label();
     this.lblAvgReceives = new System.Windows.Forms.Label();
     this.lblLastIssues = new System.Windows.Forms.Label();
     this.lblLastReceive = new System.Windows.Forms.Label();
     this.label23 = new System.Windows.Forms.Label();
     this.label22 = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.tbConsumptionTrend = new DevExpress.XtraTab.XtraTabPage();
     this.lkDetailCons = new System.Windows.Forms.LinkLabel();
     this.label33 = new System.Windows.Forms.Label();
     this.consuTrend = new DevExpress.XtraCharts.ChartControl();
     this.tbStockExpiryStatus = new DevExpress.XtraTab.XtraTabPage();
     this.chartPie = new DevExpress.XtraCharts.ChartControl();
     this.tbLogisticsSummary = new DevExpress.XtraTab.XtraTabPage();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.lookUpEdit1 = new DevExpress.XtraEditors.LookUpEdit();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.tbSOHLocation = new DevExpress.XtraTab.XtraTabPage();
     this.gridLocations = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPalletNumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPalletLocation = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tbSOHPriceSummary = new DevExpress.XtraTab.XtraTabPage();
     this.gridSOHSummary = new DevExpress.XtraGrid.GridControl();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lblItemID = new System.Windows.Forms.Label();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.dtDate = new CalendarLib.DateTimePickerEx();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     this.printDoc = new System.Drawing.Printing.PrintDocument();
     this.printDialog1 = new System.Windows.Forms.PrintDialog();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.txtitmName = new System.Windows.Forms.Label();
     this.label38 = new System.Windows.Forms.Label();
     this.lblBUnit = new System.Windows.Forms.Label();
     this.xpButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.btnExport = new DevExpress.XtraEditors.SimpleButton();
     this.lblItemSerialNumber = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tbSummary.SuspendLayout();
     this.tbBinCard.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     this.layoutControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkBinCardWarehouse.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     this.tbClassicBinCard.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkWarehouses.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkProgramFilter.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.transactionGrid)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewBinCard)).BeginInit();
     this.tbSOHTrend.SuspendLayout();
     this.tbAMCTrend.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartAmc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel6)).BeginInit();
     this.tbMOSTrend.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartMOS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel9)).BeginInit();
     this.tbActivityTrend.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartComp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel12)).BeginInit();
     this.tbSSTrend.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tbTransactions.SuspendLayout();
     this.tbConsumptionTrend.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.consuTrend)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel15)).BeginInit();
     this.tbStockExpiryStatus.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartPie)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(simpleDiagram3D1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView2)).BeginInit();
     this.tbLogisticsSummary.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     this.tbSOHLocation.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridLocations)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.tbSOHPriceSummary.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridSOHSummary)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel16)).BeginInit();
     this.SuspendLayout();
     //
     // txtItemName
     //
     this.txtItemName.Enabled = false;
     this.txtItemName.Location = new System.Drawing.Point(269, 21);
     this.txtItemName.Name = "txtItemName";
     this.txtItemName.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.txtItemName.Properties.Appearance.Options.UseForeColor = true;
     this.txtItemName.Size = new System.Drawing.Size(522, 20);
     this.txtItemName.TabIndex = 0;
     //
     // label1
     //
     this.label1.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label1.Location = new System.Drawing.Point(122, 25);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(117, 13);
     this.label1.TabIndex = 1;
     this.label1.Text = "Item Name";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // chartBar
     //
     this.chartBar.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.chartBar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.chartBar.Diagram = xyDiagram1;
     this.chartBar.Location = new System.Drawing.Point(6, 42);
     this.chartBar.Name = "chartBar";
     sideBySideBarSeriesLabel1.LineVisible = true;
     pointOptions1.ValueNumericOptions.Format = DevExpress.XtraCharts.NumericFormat.Number;
     pointOptions1.ValueNumericOptions.Precision = 3;
     sideBySideBarSeriesLabel1.PointOptions = pointOptions1;
     series1.Label = sideBySideBarSeriesLabel1;
     series1.Name = "Series 1";
     sideBySideBarSeriesLabel2.LineVisible = true;
     series2.Label = sideBySideBarSeriesLabel2;
     series2.Name = "Series 2";
     this.chartBar.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1,
     series2};
     sideBySideBarSeriesLabel3.LineVisible = true;
     this.chartBar.SeriesTemplate.Label = sideBySideBarSeriesLabel3;
     this.chartBar.Size = new System.Drawing.Size(960, 475);
     this.chartBar.TabIndex = 2;
     //
     // tabControl1
     //
     this.tabControl1.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.tabControl1.Location = new System.Drawing.Point(1, 63);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedTabPage = this.tbSummary;
     this.tabControl1.Size = new System.Drawing.Size(1046, 549);
     this.tabControl1.TabIndex = 3;
     this.tabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tbSummary,
     this.tbBinCard,
     this.tbClassicBinCard,
     this.tbSOHTrend,
     this.tbAMCTrend,
     this.tbMOSTrend,
     this.tbActivityTrend,
     this.tbSSTrend,
     this.tbTransactions,
     this.tbConsumptionTrend,
     this.tbStockExpiryStatus,
     this.tbLogisticsSummary,
     this.tbSOHLocation,
     this.tbSOHPriceSummary});
     this.tabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabControl1_SelectedPageChanged);
     //
     // tbSummary
     //
     this.tbSummary.Controls.Add(this.lblLastIssue);
     this.tbSummary.Controls.Add(this.txtSOH);
     this.tbSummary.Controls.Add(this.txtAMC);
     this.tbSummary.Controls.Add(this.txtMOS);
     this.tbSummary.Controls.Add(this.txtMin);
     this.tbSummary.Controls.Add(this.txtMax);
     this.tbSummary.Controls.Add(this.txtReorderAmount);
     this.tbSummary.Controls.Add(this.txtExpiredAmount);
     this.tbSummary.Controls.Add(this.txtNearExp);
     this.tbSummary.Controls.Add(this.lblLastRec);
     this.tbSummary.Controls.Add(this.label31);
     this.tbSummary.Controls.Add(this.label32);
     this.tbSummary.Controls.Add(this.lblstat);
     this.tbSummary.Controls.Add(this.label30);
     this.tbSummary.Controls.Add(this.label9);
     this.tbSummary.Controls.Add(this.label8);
     this.tbSummary.Controls.Add(this.label7);
     this.tbSummary.Controls.Add(this.label1);
     this.tbSummary.Controls.Add(this.label6);
     this.tbSummary.Controls.Add(this.txtItemName);
     this.tbSummary.Controls.Add(this.label5);
     this.tbSummary.Controls.Add(this.label4);
     this.tbSummary.Controls.Add(this.label3);
     this.tbSummary.Controls.Add(this.label2);
     this.tbSummary.Name = "tbSummary";
     this.tbSummary.PageVisible = false;
     this.tbSummary.Size = new System.Drawing.Size(1040, 521);
     this.tbSummary.Text = "Summary";
     //
     // lblLastIssue
     //
     this.lblLastIssue.AutoSize = true;
     this.lblLastIssue.Enabled = false;
     this.lblLastIssue.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLastIssue.ForeColor = System.Drawing.Color.Black;
     this.lblLastIssue.Location = new System.Drawing.Point(266, 355);
     this.lblLastIssue.Name = "lblLastIssue";
     this.lblLastIssue.Size = new System.Drawing.Size(14, 13);
     this.lblLastIssue.TabIndex = 24;
     this.lblLastIssue.Text = "0";
     //
     // txtSOH
     //
     this.txtSOH.AutoSize = true;
     this.txtSOH.Enabled = false;
     this.txtSOH.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSOH.ForeColor = System.Drawing.Color.Black;
     this.txtSOH.Location = new System.Drawing.Point(266, 85);
     this.txtSOH.Name = "txtSOH";
     this.txtSOH.Size = new System.Drawing.Size(14, 13);
     this.txtSOH.TabIndex = 25;
     this.txtSOH.Text = "0";
     //
     // txtAMC
     //
     this.txtAMC.AutoSize = true;
     this.txtAMC.Enabled = false;
     this.txtAMC.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtAMC.ForeColor = System.Drawing.Color.Black;
     this.txtAMC.Location = new System.Drawing.Point(266, 115);
     this.txtAMC.Name = "txtAMC";
     this.txtAMC.Size = new System.Drawing.Size(14, 13);
     this.txtAMC.TabIndex = 25;
     this.txtAMC.Text = "0";
     //
     // txtMOS
     //
     this.txtMOS.AutoSize = true;
     this.txtMOS.Enabled = false;
     this.txtMOS.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMOS.ForeColor = System.Drawing.Color.Black;
     this.txtMOS.Location = new System.Drawing.Point(266, 145);
     this.txtMOS.Name = "txtMOS";
     this.txtMOS.Size = new System.Drawing.Size(14, 13);
     this.txtMOS.TabIndex = 25;
     this.txtMOS.Text = "0";
     //
     // txtMin
     //
     this.txtMin.AutoSize = true;
     this.txtMin.Enabled = false;
     this.txtMin.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMin.ForeColor = System.Drawing.Color.Black;
     this.txtMin.Location = new System.Drawing.Point(266, 175);
     this.txtMin.Name = "txtMin";
     this.txtMin.Size = new System.Drawing.Size(14, 13);
     this.txtMin.TabIndex = 25;
     this.txtMin.Text = "0";
     //
     // txtMax
     //
     this.txtMax.AutoSize = true;
     this.txtMax.Enabled = false;
     this.txtMax.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMax.ForeColor = System.Drawing.Color.Black;
     this.txtMax.Location = new System.Drawing.Point(266, 205);
     this.txtMax.Name = "txtMax";
     this.txtMax.Size = new System.Drawing.Size(14, 13);
     this.txtMax.TabIndex = 25;
     this.txtMax.Text = "0";
     //
     // txtReorderAmount
     //
     this.txtReorderAmount.AutoSize = true;
     this.txtReorderAmount.Enabled = false;
     this.txtReorderAmount.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtReorderAmount.ForeColor = System.Drawing.Color.Black;
     this.txtReorderAmount.Location = new System.Drawing.Point(266, 235);
     this.txtReorderAmount.Name = "txtReorderAmount";
     this.txtReorderAmount.Size = new System.Drawing.Size(14, 13);
     this.txtReorderAmount.TabIndex = 25;
     this.txtReorderAmount.Text = "0";
     //
     // txtExpiredAmount
     //
     this.txtExpiredAmount.AutoSize = true;
     this.txtExpiredAmount.Enabled = false;
     this.txtExpiredAmount.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtExpiredAmount.ForeColor = System.Drawing.Color.Black;
     this.txtExpiredAmount.Location = new System.Drawing.Point(266, 265);
     this.txtExpiredAmount.Name = "txtExpiredAmount";
     this.txtExpiredAmount.Size = new System.Drawing.Size(14, 13);
     this.txtExpiredAmount.TabIndex = 25;
     this.txtExpiredAmount.Text = "0";
     //
     // txtNearExp
     //
     this.txtNearExp.AutoSize = true;
     this.txtNearExp.Enabled = false;
     this.txtNearExp.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNearExp.ForeColor = System.Drawing.Color.Black;
     this.txtNearExp.Location = new System.Drawing.Point(266, 295);
     this.txtNearExp.Name = "txtNearExp";
     this.txtNearExp.Size = new System.Drawing.Size(14, 13);
     this.txtNearExp.TabIndex = 25;
     this.txtNearExp.Text = "0";
     //
     // lblLastRec
     //
     this.lblLastRec.AutoSize = true;
     this.lblLastRec.Enabled = false;
     this.lblLastRec.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLastRec.ForeColor = System.Drawing.Color.Black;
     this.lblLastRec.Location = new System.Drawing.Point(266, 325);
     this.lblLastRec.Name = "lblLastRec";
     this.lblLastRec.Size = new System.Drawing.Size(14, 13);
     this.lblLastRec.TabIndex = 25;
     this.lblLastRec.Text = "0";
     //
     // label31
     //
     this.label31.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label31.Location = new System.Drawing.Point(136, 355);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(103, 13);
     this.label31.TabIndex = 22;
     this.label31.Text = "Last Issued Date";
     this.label31.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label32.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label32.Location = new System.Drawing.Point(122, 325);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(117, 13);
     this.label32.TabIndex = 23;
     this.label32.Text = "Last Received Date";
     this.label32.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // lblstat
     //
     this.lblstat.AutoSize = true;
     this.lblstat.Enabled = false;
     this.lblstat.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblstat.ForeColor = System.Drawing.Color.Black;
     this.lblstat.Location = new System.Drawing.Point(266, 55);
     this.lblstat.Name = "lblstat";
     this.lblstat.Size = new System.Drawing.Size(14, 13);
     this.lblstat.TabIndex = 21;
     this.lblstat.Text = "0";
     //
     // label30
     //
     this.label30.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label30.Location = new System.Drawing.Point(109, 55);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(130, 13);
     this.label30.TabIndex = 20;
     this.label30.Text = "Current Status";
     this.label30.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label9
     //
     this.label9.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label9.Location = new System.Drawing.Point(136, 295);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(103, 13);
     this.label9.TabIndex = 17;
     this.label9.Text = "Near Expiry Amount";
     this.label9.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label8
     //
     this.label8.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label8.Location = new System.Drawing.Point(141, 265);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(98, 13);
     this.label8.TabIndex = 17;
     this.label8.Text = "Expired";
     this.label8.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label7
     //
     this.label7.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label7.Location = new System.Drawing.Point(79, 235);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(160, 13);
     this.label7.TabIndex = 17;
     this.label7.Text = "Reorder Amount";
     this.label7.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label6
     //
     this.label6.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label6.Location = new System.Drawing.Point(79, 145);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(160, 13);
     this.label6.TabIndex = 17;
     this.label6.Text = "Months Of Stock";
     this.label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label5
     //
     this.label5.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label5.Location = new System.Drawing.Point(112, 205);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(127, 13);
     this.label5.TabIndex = 17;
     this.label5.Text = "Maximum Value";
     this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label4
     //
     this.label4.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label4.Location = new System.Drawing.Point(91, 175);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(148, 13);
     this.label4.TabIndex = 16;
     this.label4.Text = "Minimum Value";
     this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label3
     //
     this.label3.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label3.Location = new System.Drawing.Point(0, 115);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(239, 13);
     this.label3.TabIndex = 19;
     this.label3.Text = "Average Monthly Consumption";
     this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label2
     //
     this.label2.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label2.Location = new System.Drawing.Point(114, 85);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(125, 13);
     this.label2.TabIndex = 18;
     this.label2.Text = "Stock On Hand";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // tbBinCard
     //
     this.tbBinCard.Controls.Add(this.layoutControl2);
     this.tbBinCard.Name = "tbBinCard";
     this.tbBinCard.Size = new System.Drawing.Size(1040, 521);
     this.tbBinCard.Text = "Bin Card";
     //
     // layoutControl2
     //
     this.layoutControl2.Controls.Add(this.printBinCard);
     this.layoutControl2.Controls.Add(this.label24);
     this.layoutControl2.Controls.Add(this.lkBinCardWarehouse);
     this.layoutControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl2.Location = new System.Drawing.Point(0, 0);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(1040, 521);
     this.layoutControl2.TabIndex = 107;
     this.layoutControl2.Text = "layoutControl2";
     //
     // printBinCard
     //
     this.printBinCard.BackColor = System.Drawing.Color.Empty;
     this.printBinCard.ForeColor = System.Drawing.Color.Empty;
     this.printBinCard.IsMetric = false;
     this.printBinCard.Location = new System.Drawing.Point(12, 60);
     this.printBinCard.Name = "printBinCard";
     this.printBinCard.Size = new System.Drawing.Size(1016, 449);
     this.printBinCard.TabIndex = 104;
     this.printBinCard.TooltipFont = new System.Drawing.Font("Tahoma", 8.25F);
     //
     // label24
     //
     this.label24.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label24.Location = new System.Drawing.Point(12, 12);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(224, 20);
     this.label24.TabIndex = 104;
     this.label24.Text = "Electronic Bin Card ";
     //
     // lkBinCardWarehouse
     //
     this.lkBinCardWarehouse.Location = new System.Drawing.Point(298, 36);
     this.lkBinCardWarehouse.Name = "lkBinCardWarehouse";
     this.lkBinCardWarehouse.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBinCardWarehouse.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkBinCardWarehouse.Properties.DisplayMember = "Name";
     this.lkBinCardWarehouse.Properties.NullText = "Select Warehouse";
     this.lkBinCardWarehouse.Properties.ValueMember = "ID";
     this.lkBinCardWarehouse.Size = new System.Drawing.Size(129, 20);
     this.lkBinCardWarehouse.StyleController = this.layoutControl2;
     this.lkBinCardWarehouse.TabIndex = 106;
     this.lkBinCardWarehouse.EditValueChanged += new System.EventHandler(this.lkBinCardWarehouse_EditValueChanged);
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem4,
     this.emptySpaceItem2,
     this.layoutControlItem3,
     this.emptySpaceItem3,
     this.emptySpaceItem5,
     this.layoutControlItem5});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(1040, 521);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.label24;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(228, 24);
     this.layoutControlItem4.Text = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(228, 0);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(792, 24);
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.lkBinCardWarehouse;
     this.layoutControlItem3.CustomizationFormText = "Warehouse";
     this.layoutControlItem3.Location = new System.Drawing.Point(228, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(191, 24);
     this.layoutControlItem3.Text = "Warehouse";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(55, 13);
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(0, 24);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(228, 24);
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem5
     //
     this.emptySpaceItem5.AllowHotTrack = false;
     this.emptySpaceItem5.CustomizationFormText = "emptySpaceItem5";
     this.emptySpaceItem5.Location = new System.Drawing.Point(419, 24);
     this.emptySpaceItem5.Name = "emptySpaceItem5";
     this.emptySpaceItem5.Size = new System.Drawing.Size(601, 24);
     this.emptySpaceItem5.Text = "emptySpaceItem5";
     this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.printBinCard;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(1020, 453);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // tbClassicBinCard
     //
     this.tbClassicBinCard.Controls.Add(this.lkWarehouses);
     this.tbClassicBinCard.Controls.Add(this.lkYear);
     this.tbClassicBinCard.Controls.Add(this.lkProgramFilter);
     this.tbClassicBinCard.Controls.Add(this.btnExport);
     this.tbClassicBinCard.Controls.Add(this.transactionGrid);
     this.tbClassicBinCard.Controls.Add(this.label28);
     this.tbClassicBinCard.Controls.Add(this.xpButton1);
     this.tbClassicBinCard.Name = "tbClassicBinCard";
     this.tbClassicBinCard.Size = new System.Drawing.Size(1040, 521);
     this.tbClassicBinCard.Text = "Classic Bin Card";
     //
     // lkWarehouses
     //
     this.lkWarehouses.Location = new System.Drawing.Point(208, 41);
     this.lkWarehouses.Name = "lkWarehouses";
     this.lkWarehouses.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkWarehouses.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkWarehouses.Properties.DisplayMember = "Name";
     this.lkWarehouses.Properties.NullText = "Select Warehouse";
     this.lkWarehouses.Properties.ValueMember = "ID";
     this.lkWarehouses.Size = new System.Drawing.Size(209, 20);
     this.lkWarehouses.TabIndex = 105;
     this.lkWarehouses.EditValueChanged += new System.EventHandler(this.lkWarehouses_EditValueChanged);
     //
     // lkYear
     //
     this.lkYear.Location = new System.Drawing.Point(423, 42);
     this.lkYear.Name = "lkYear";
     this.lkYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkYear.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Year", "Year")});
     this.lkYear.Properties.DisplayMember = "Year";
     this.lkYear.Properties.ValueMember = "Year";
     this.lkYear.Size = new System.Drawing.Size(100, 20);
     this.lkYear.TabIndex = 104;
     this.lkYear.EditValueChanged += new System.EventHandler(this.lkYear_EditValueChanged);
     //
     // lkProgramFilter
     //
     this.lkProgramFilter.Location = new System.Drawing.Point(529, 42);
     this.lkProgramFilter.Name = "lkProgramFilter";
     this.lkProgramFilter.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkProgramFilter.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("CompanyName", "Name")});
     this.lkProgramFilter.Properties.DisplayMember = "CompanyName";
     this.lkProgramFilter.Properties.NullText = "Select Program";
     this.lkProgramFilter.Properties.ValueMember = "ID";
     this.lkProgramFilter.Size = new System.Drawing.Size(209, 20);
     this.lkProgramFilter.TabIndex = 13;
     this.lkProgramFilter.Visible = false;
     this.lkProgramFilter.EditValueChanged += new System.EventHandler(this.LkProgramFilterEditValueChanged);
     //
     // transactionGrid
     //
     this.transactionGrid.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.transactionGrid.ContextMenuStrip = this.contextMenuStrip1;
     this.transactionGrid.Location = new System.Drawing.Point(7, 68);
     this.transactionGrid.MainView = this.gridViewBinCard;
     this.transactionGrid.Name = "transactionGrid";
     this.transactionGrid.Size = new System.Drawing.Size(1032, 449);
     this.transactionGrid.TabIndex = 12;
     this.transactionGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewBinCard});
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tpDelete});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(108, 26);
     //
     // tpDelete
     //
     this.tpDelete.Name = "tpDelete";
     this.tpDelete.Size = new System.Drawing.Size(107, 22);
     this.tpDelete.Text = "Delete";
     this.tpDelete.Click += new System.EventHandler(this.tpDelete_Click);
     //
     // gridViewBinCard
     //
     this.gridViewBinCard.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colGRNF,
     this.colDocType,
     this.gridColumn15,
     this.colManuf,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn19,
     this.gridColumn20,
     this.gridColumn21,
     this.colUnitCost,
     this.colTotalCost,
     this.gridColumn24});
     this.gridViewBinCard.GridControl = this.transactionGrid;
     this.gridViewBinCard.Name = "gridViewBinCard";
     this.gridViewBinCard.OptionsBehavior.Editable = false;
     this.gridViewBinCard.OptionsCustomization.AllowSort = false;
     this.gridViewBinCard.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewBinCard.OptionsView.ShowGroupPanel = false;
     //
     // colGRNF
     //
     this.colGRNF.Caption = "GRNF";
     this.colGRNF.FieldName = "GRNF";
     this.colGRNF.Name = "colGRNF";
     this.colGRNF.Visible = true;
     this.colGRNF.VisibleIndex = 0;
     //
     // colDocType
     //
     this.colDocType.Caption = "Type";
     this.colDocType.FieldName = "DocType";
     this.colDocType.Name = "colDocType";
     this.colDocType.Visible = true;
     this.colDocType.VisibleIndex = 1;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Reference No";
     this.gridColumn15.FieldName = "RefNo";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 2;
     //
     // colManuf
     //
     this.colManuf.Caption = "Manufacturer";
     this.colManuf.FieldName = "Manufacturer";
     this.colManuf.Name = "colManuf";
     this.colManuf.Visible = true;
     this.colManuf.VisibleIndex = 3;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Date";
     this.gridColumn16.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn16.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn16.FieldName = "Date";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 4;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Batch No";
     this.gridColumn17.FieldName = "BatchNo";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 5;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Expiry Date";
     this.gridColumn18.DisplayFormat.FormatString = "MM/yyyy";
     this.gridColumn18.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn18.FieldName = "ExpDate";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 6;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Received";
     this.gridColumn19.DisplayFormat.FormatString = "#,##0";
     this.gridColumn19.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn19.FieldName = "Received";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 7;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Issued";
     this.gridColumn20.DisplayFormat.FormatString = "#,##0";
     this.gridColumn20.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn20.FieldName = "Issued";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 8;
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "Balance";
     this.gridColumn21.DisplayFormat.FormatString = "#,##0";
     this.gridColumn21.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn21.FieldName = "Balance";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 9;
     //
     // colUnitCost
     //
     this.colUnitCost.Caption = "Unit Cost";
     this.colUnitCost.DisplayFormat.FormatString = "#,##0.#0";
     this.colUnitCost.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colUnitCost.FieldName = "UnitPrice";
     this.colUnitCost.Name = "colUnitCost";
     this.colUnitCost.Visible = true;
     this.colUnitCost.VisibleIndex = 10;
     //
     // colTotalCost
     //
     this.colTotalCost.Caption = "Total Cost";
     this.colTotalCost.DisplayFormat.FormatString = "#,##0.#0";
     this.colTotalCost.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colTotalCost.FieldName = "TotalPrice";
     this.colTotalCost.Name = "colTotalCost";
     this.colTotalCost.Visible = true;
     this.colTotalCost.VisibleIndex = 11;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "To/From";
     this.gridColumn24.FieldName = "ToFrom";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 12;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(7, 15);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(200, 23);
     this.label28.TabIndex = 10;
     this.label28.Text = "Electronic Bin Card ";
     //
     // tbSOHTrend
     //
     this.tbSOHTrend.Controls.Add(this.groupSohDetail);
     this.tbSOHTrend.Controls.Add(this.lkShowTable);
     this.tbSOHTrend.Controls.Add(this.label29);
     this.tbSOHTrend.Controls.Add(this.chartBar);
     this.tbSOHTrend.Name = "tbSOHTrend";
     this.tbSOHTrend.Padding = new System.Windows.Forms.Padding(3);
     this.tbSOHTrend.PageVisible = false;
     this.tbSOHTrend.Size = new System.Drawing.Size(1040, 521);
     this.tbSOHTrend.Text = "SOH Trend";
     //
     // groupSohDetail
     //
     this.groupSohDetail.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.groupSohDetail.Location = new System.Drawing.Point(-1, 37);
     this.groupSohDetail.Name = "groupSohDetail";
     this.groupSohDetail.Size = new System.Drawing.Size(968, 496);
     this.groupSohDetail.TabIndex = 13;
     this.groupSohDetail.TabStop = false;
     this.groupSohDetail.Text = "Show trend by month";
     this.groupSohDetail.Visible = false;
     //
     // lkShowTable
     //
     this.lkShowTable.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lkShowTable.AutoSize = true;
     this.lkShowTable.Location = new System.Drawing.Point(1094, 12);
     this.lkShowTable.Name = "lkShowTable";
     this.lkShowTable.Size = new System.Drawing.Size(72, 13);
     this.lkShowTable.TabIndex = 12;
     this.lkShowTable.TabStop = true;
     this.lkShowTable.Text = "Show Table";
     this.lkShowTable.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LkShowTableLinkClicked);
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label29.Location = new System.Drawing.Point(7, 15);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(229, 23);
     this.label29.TabIndex = 11;
     this.label29.Text = "Trend - Stock On Hand";
     //
     // tbAMCTrend
     //
     this.tbAMCTrend.Controls.Add(this.lkDetailAmc);
     this.tbAMCTrend.Controls.Add(this.label34);
     this.tbAMCTrend.Controls.Add(this.chartAmc);
     this.tbAMCTrend.Name = "tbAMCTrend";
     this.tbAMCTrend.Padding = new System.Windows.Forms.Padding(3);
     this.tbAMCTrend.PageVisible = false;
     this.tbAMCTrend.Size = new System.Drawing.Size(1040, 521);
     this.tbAMCTrend.Text = "AMC Trend";
     //
     // lkDetailAmc
     //
     this.lkDetailAmc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lkDetailAmc.AutoSize = true;
     this.lkDetailAmc.Location = new System.Drawing.Point(1101, 22);
     this.lkDetailAmc.Name = "lkDetailAmc";
     this.lkDetailAmc.Size = new System.Drawing.Size(72, 13);
     this.lkDetailAmc.TabIndex = 14;
     this.lkDetailAmc.TabStop = true;
     this.lkDetailAmc.Text = "Show Table";
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label34.Location = new System.Drawing.Point(7, 15);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(453, 23);
     this.label34.TabIndex = 12;
     this.label34.Text = "Trend - Average Monthly Consumption (AMC) ";
     //
     // chartAmc
     //
     this.chartAmc.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.chartAmc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     xyDiagram2.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram2.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram2.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram2.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram2.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram2.AxisY.VisibleInPanesSerializable = "-1";
     this.chartAmc.Diagram = xyDiagram2;
     this.chartAmc.Location = new System.Drawing.Point(4, 58);
     this.chartAmc.Name = "chartAmc";
     this.chartAmc.PaletteRepository.Add("Palette 1", new DevExpress.XtraCharts.Palette("Palette 1", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[0]));
     this.chartAmc.PaletteRepository.Add("Palette 2", new DevExpress.XtraCharts.Palette("Palette 2", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[0]));
     sideBySideBarSeriesLabel4.LineVisible = true;
     series3.Label = sideBySideBarSeriesLabel4;
     series3.Name = "Series 1";
     sideBySideBarSeriesLabel5.LineVisible = true;
     series4.Label = sideBySideBarSeriesLabel5;
     series4.Name = "Series 2";
     this.chartAmc.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series3,
     series4};
     sideBySideBarSeriesLabel6.LineVisible = true;
     this.chartAmc.SeriesTemplate.Label = sideBySideBarSeriesLabel6;
     this.chartAmc.Size = new System.Drawing.Size(963, 452);
     this.chartAmc.TabIndex = 3;
     //
     // tbMOSTrend
     //
     this.tbMOSTrend.Controls.Add(this.lkDetailMos);
     this.tbMOSTrend.Controls.Add(this.label35);
     this.tbMOSTrend.Controls.Add(this.chartMOS);
     this.tbMOSTrend.Name = "tbMOSTrend";
     this.tbMOSTrend.Padding = new System.Windows.Forms.Padding(3);
     this.tbMOSTrend.PageVisible = false;
     this.tbMOSTrend.Size = new System.Drawing.Size(1040, 521);
     this.tbMOSTrend.Text = "MOS Trend";
     //
     // lkDetailMos
     //
     this.lkDetailMos.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lkDetailMos.AutoSize = true;
     this.lkDetailMos.Location = new System.Drawing.Point(1100, 24);
     this.lkDetailMos.Name = "lkDetailMos";
     this.lkDetailMos.Size = new System.Drawing.Size(72, 13);
     this.lkDetailMos.TabIndex = 16;
     this.lkDetailMos.TabStop = true;
     this.lkDetailMos.Text = "Show Table";
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label35.Location = new System.Drawing.Point(7, 15);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(248, 23);
     this.label35.TabIndex = 12;
     this.label35.Text = "Trend - Months of Stock ";
     //
     // chartMOS
     //
     this.chartMOS.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.chartMOS.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     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.chartMOS.Diagram = xyDiagram3;
     this.chartMOS.Location = new System.Drawing.Point(7, 48);
     this.chartMOS.Name = "chartMOS";
     this.chartMOS.PaletteName = "Palette 2";
     this.chartMOS.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)(70)))), ((int)(((byte)(163)))), ((int)(((byte)(54))))), System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(163)))), ((int)(((byte)(54)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(73)))), ((int)(((byte)(51))))), System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(73)))), ((int)(((byte)(51))))))}));
     this.chartMOS.PaletteRepository.Add("Palette 2", new DevExpress.XtraCharts.Palette("Palette 2", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[] {
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(168)))), ((int)(((byte)(39))))), System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(168)))), ((int)(((byte)(39)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(214)))), ((int)(((byte)(44)))), ((int)(((byte)(35))))), System.Drawing.Color.FromArgb(((int)(((byte)(214)))), ((int)(((byte)(44)))), ((int)(((byte)(35))))))}));
     sideBySideBarSeriesLabel7.LineVisible = true;
     series5.Label = sideBySideBarSeriesLabel7;
     series5.Name = "Series 1";
     sideBySideBarSeriesLabel8.LineVisible = true;
     series6.Label = sideBySideBarSeriesLabel8;
     series6.Name = "Series 2";
     this.chartMOS.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series5,
     series6};
     sideBySideBarSeriesLabel9.LineVisible = true;
     this.chartMOS.SeriesTemplate.Label = sideBySideBarSeriesLabel9;
     this.chartMOS.Size = new System.Drawing.Size(1160, 452);
     this.chartMOS.TabIndex = 4;
     //
     // tbActivityTrend
     //
     this.tbActivityTrend.Appearance.PageClient.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.tbActivityTrend.Appearance.PageClient.Options.UseBackColor = true;
     this.tbActivityTrend.Controls.Add(this.label36);
     this.tbActivityTrend.Controls.Add(this.chartComp);
     this.tbActivityTrend.Name = "tbActivityTrend";
     this.tbActivityTrend.Padding = new System.Windows.Forms.Padding(3);
     this.tbActivityTrend.PageVisible = false;
     this.tbActivityTrend.Size = new System.Drawing.Size(1040, 521);
     this.tbActivityTrend.Text = "Activity Trend";
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label36.Location = new System.Drawing.Point(7, 15);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(164, 23);
     this.label36.TabIndex = 12;
     this.label36.Text = "Trend - Activity ";
     //
     // chartComp
     //
     this.chartComp.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     xyDiagram4.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram4.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram4.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram4.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram4.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram4.AxisY.VisibleInPanesSerializable = "-1";
     this.chartComp.Diagram = xyDiagram4;
     this.chartComp.Location = new System.Drawing.Point(7, 48);
     this.chartComp.Name = "chartComp";
     this.chartComp.PaletteRepository.Add("Palette 1", new DevExpress.XtraCharts.Palette("Palette 1", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[0]));
     this.chartComp.PaletteRepository.Add("Palette 2", new DevExpress.XtraCharts.Palette("Palette 2", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[0]));
     sideBySideBarSeriesLabel10.LineVisible = true;
     series7.Label = sideBySideBarSeriesLabel10;
     series7.Name = "Series 1";
     sideBySideBarSeriesLabel11.LineVisible = true;
     series8.Label = sideBySideBarSeriesLabel11;
     series8.Name = "Series 2";
     this.chartComp.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series7,
     series8};
     sideBySideBarSeriesLabel12.LineVisible = true;
     this.chartComp.SeriesTemplate.Label = sideBySideBarSeriesLabel12;
     this.chartComp.Size = new System.Drawing.Size(967, 476);
     this.chartComp.TabIndex = 3;
     //
     // tbSSTrend
     //
     this.tbSSTrend.Controls.Add(this.label20);
     this.tbSSTrend.Controls.Add(this.lblTime);
     this.tbSSTrend.Controls.Add(this.lblCurStatus);
     this.tbSSTrend.Controls.Add(this.label19);
     this.tbSSTrend.Controls.Add(this.tableLayoutPanel1);
     this.tbSSTrend.Name = "tbSSTrend";
     this.tbSSTrend.PageVisible = false;
     this.tbSSTrend.Size = new System.Drawing.Size(1040, 521);
     this.tbSSTrend.Text = "Stock Status Trend";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.Location = new System.Drawing.Point(35, 106);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(142, 16);
     this.label20.TabIndex = 1;
     this.label20.Text = "Trend (No. of times)";
     //
     // lblTime
     //
     this.lblTime.AutoSize = true;
     this.lblTime.Location = new System.Drawing.Point(257, 68);
     this.lblTime.Name = "lblTime";
     this.lblTime.Size = new System.Drawing.Size(0, 13);
     this.lblTime.TabIndex = 1;
     //
     // lblCurStatus
     //
     this.lblCurStatus.AutoSize = true;
     this.lblCurStatus.Location = new System.Drawing.Point(150, 68);
     this.lblCurStatus.Name = "lblCurStatus";
     this.lblCurStatus.Size = new System.Drawing.Size(0, 13);
     this.lblCurStatus.TabIndex = 1;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(45, 68);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(104, 13);
     this.label19.TabIndex = 1;
     this.label19.Text = "Current Status : ";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
     this.tableLayoutPanel1.ColumnCount = 4;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 182F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 75F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 85F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 277F));
     this.tableLayoutPanel1.Controls.Add(this.label10, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.label11, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.label12, 2, 0);
     this.tableLayoutPanel1.Controls.Add(this.label13, 3, 0);
     this.tableLayoutPanel1.Controls.Add(this.label14, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.label15, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.label16, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.label18, 0, 4);
     this.tableLayoutPanel1.Controls.Add(this.lblThreeStockout, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.lblSixStockOut, 2, 1);
     this.tableLayoutPanel1.Controls.Add(this.lblTwelveStockOut, 3, 1);
     this.tableLayoutPanel1.Controls.Add(this.lblThreeNearStock, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.lblSixNearStock, 2, 2);
     this.tableLayoutPanel1.Controls.Add(this.lblTwelveNear, 3, 2);
     this.tableLayoutPanel1.Controls.Add(this.lblThreeBelowMin, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.lblSixBelowMin, 2, 3);
     this.tableLayoutPanel1.Controls.Add(this.lblTwelveBelowMin, 3, 3);
     this.tableLayoutPanel1.Controls.Add(this.lblTwelveOverStock, 3, 4);
     this.tableLayoutPanel1.Controls.Add(this.lblSixOverStock, 2, 4);
     this.tableLayoutPanel1.Controls.Add(this.lblThreeOverStock, 1, 4);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(38, 134);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 5;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(419, 109);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(4, 1);
     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(187, 1);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(52, 13);
     this.label11.TabIndex = 1;
     this.label11.Text = "3 Month";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(263, 1);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(52, 13);
     this.label12.TabIndex = 1;
     this.label12.Text = "6 Month";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(349, 1);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(59, 13);
     this.label13.TabIndex = 1;
     this.label13.Text = "12 Month";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(4, 22);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(63, 13);
     this.label14.TabIndex = 1;
     this.label14.Text = "Stock Out";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(4, 43);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(94, 13);
     this.label15.TabIndex = 1;
     this.label15.Text = "Near Stock Out";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(4, 64);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(64, 13);
     this.label16.TabIndex = 1;
     this.label16.Text = "Below Min";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(4, 85);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(71, 13);
     this.label18.TabIndex = 1;
     this.label18.Text = "Over Stock";
     //
     // lblThreeStockout
     //
     this.lblThreeStockout.AutoSize = true;
     this.lblThreeStockout.Location = new System.Drawing.Point(187, 22);
     this.lblThreeStockout.Name = "lblThreeStockout";
     this.lblThreeStockout.Size = new System.Drawing.Size(14, 13);
     this.lblThreeStockout.TabIndex = 1;
     this.lblThreeStockout.Text = "0";
     //
     // lblSixStockOut
     //
     this.lblSixStockOut.AutoSize = true;
     this.lblSixStockOut.Location = new System.Drawing.Point(263, 22);
     this.lblSixStockOut.Name = "lblSixStockOut";
     this.lblSixStockOut.Size = new System.Drawing.Size(14, 13);
     this.lblSixStockOut.TabIndex = 1;
     this.lblSixStockOut.Text = "0";
     //
     // lblTwelveStockOut
     //
     this.lblTwelveStockOut.AutoSize = true;
     this.lblTwelveStockOut.Location = new System.Drawing.Point(349, 22);
     this.lblTwelveStockOut.Name = "lblTwelveStockOut";
     this.lblTwelveStockOut.Size = new System.Drawing.Size(14, 13);
     this.lblTwelveStockOut.TabIndex = 1;
     this.lblTwelveStockOut.Text = "0";
     //
     // lblThreeNearStock
     //
     this.lblThreeNearStock.AutoSize = true;
     this.lblThreeNearStock.Location = new System.Drawing.Point(187, 43);
     this.lblThreeNearStock.Name = "lblThreeNearStock";
     this.lblThreeNearStock.Size = new System.Drawing.Size(14, 13);
     this.lblThreeNearStock.TabIndex = 1;
     this.lblThreeNearStock.Text = "0";
     //
     // lblSixNearStock
     //
     this.lblSixNearStock.AutoSize = true;
     this.lblSixNearStock.Location = new System.Drawing.Point(263, 43);
     this.lblSixNearStock.Name = "lblSixNearStock";
     this.lblSixNearStock.Size = new System.Drawing.Size(14, 13);
     this.lblSixNearStock.TabIndex = 1;
     this.lblSixNearStock.Text = "0";
     //
     // lblTwelveNear
     //
     this.lblTwelveNear.AutoSize = true;
     this.lblTwelveNear.Location = new System.Drawing.Point(349, 43);
     this.lblTwelveNear.Name = "lblTwelveNear";
     this.lblTwelveNear.Size = new System.Drawing.Size(14, 13);
     this.lblTwelveNear.TabIndex = 1;
     this.lblTwelveNear.Text = "0";
     //
     // lblThreeBelowMin
     //
     this.lblThreeBelowMin.AutoSize = true;
     this.lblThreeBelowMin.Location = new System.Drawing.Point(187, 64);
     this.lblThreeBelowMin.Name = "lblThreeBelowMin";
     this.lblThreeBelowMin.Size = new System.Drawing.Size(14, 13);
     this.lblThreeBelowMin.TabIndex = 1;
     this.lblThreeBelowMin.Text = "0";
     //
     // lblSixBelowMin
     //
     this.lblSixBelowMin.AutoSize = true;
     this.lblSixBelowMin.Location = new System.Drawing.Point(263, 64);
     this.lblSixBelowMin.Name = "lblSixBelowMin";
     this.lblSixBelowMin.Size = new System.Drawing.Size(14, 13);
     this.lblSixBelowMin.TabIndex = 1;
     this.lblSixBelowMin.Text = "0";
     //
     // lblTwelveBelowMin
     //
     this.lblTwelveBelowMin.AutoSize = true;
     this.lblTwelveBelowMin.Location = new System.Drawing.Point(349, 64);
     this.lblTwelveBelowMin.Name = "lblTwelveBelowMin";
     this.lblTwelveBelowMin.Size = new System.Drawing.Size(14, 13);
     this.lblTwelveBelowMin.TabIndex = 1;
     this.lblTwelveBelowMin.Text = "0";
     //
     // lblTwelveOverStock
     //
     this.lblTwelveOverStock.AutoSize = true;
     this.lblTwelveOverStock.Location = new System.Drawing.Point(349, 85);
     this.lblTwelveOverStock.Name = "lblTwelveOverStock";
     this.lblTwelveOverStock.Size = new System.Drawing.Size(14, 13);
     this.lblTwelveOverStock.TabIndex = 1;
     this.lblTwelveOverStock.Text = "0";
     //
     // lblSixOverStock
     //
     this.lblSixOverStock.AutoSize = true;
     this.lblSixOverStock.Location = new System.Drawing.Point(263, 85);
     this.lblSixOverStock.Name = "lblSixOverStock";
     this.lblSixOverStock.Size = new System.Drawing.Size(14, 13);
     this.lblSixOverStock.TabIndex = 1;
     this.lblSixOverStock.Text = "0";
     //
     // lblThreeOverStock
     //
     this.lblThreeOverStock.AutoSize = true;
     this.lblThreeOverStock.Location = new System.Drawing.Point(187, 85);
     this.lblThreeOverStock.Name = "lblThreeOverStock";
     this.lblThreeOverStock.Size = new System.Drawing.Size(14, 13);
     this.lblThreeOverStock.TabIndex = 1;
     this.lblThreeOverStock.Text = "0";
     //
     // tbTransactions
     //
     this.tbTransactions.Controls.Add(this.lblAvgIssues);
     this.tbTransactions.Controls.Add(this.lblAvgReceives);
     this.tbTransactions.Controls.Add(this.lblLastIssues);
     this.tbTransactions.Controls.Add(this.lblLastReceive);
     this.tbTransactions.Controls.Add(this.label23);
     this.tbTransactions.Controls.Add(this.label22);
     this.tbTransactions.Controls.Add(this.label21);
     this.tbTransactions.Controls.Add(this.label17);
     this.tbTransactions.Name = "tbTransactions";
     this.tbTransactions.PageVisible = false;
     this.tbTransactions.Size = new System.Drawing.Size(1040, 521);
     this.tbTransactions.Text = "Transaction";
     //
     // lblAvgIssues
     //
     this.lblAvgIssues.AutoSize = true;
     this.lblAvgIssues.Location = new System.Drawing.Point(357, 184);
     this.lblAvgIssues.Name = "lblAvgIssues";
     this.lblAvgIssues.Size = new System.Drawing.Size(14, 13);
     this.lblAvgIssues.TabIndex = 1;
     this.lblAvgIssues.Text = "0";
     this.lblAvgIssues.Visible = false;
     //
     // lblAvgReceives
     //
     this.lblAvgReceives.AutoSize = true;
     this.lblAvgReceives.Location = new System.Drawing.Point(357, 153);
     this.lblAvgReceives.Name = "lblAvgReceives";
     this.lblAvgReceives.Size = new System.Drawing.Size(14, 13);
     this.lblAvgReceives.TabIndex = 1;
     this.lblAvgReceives.Text = "0";
     this.lblAvgReceives.Visible = false;
     //
     // lblLastIssues
     //
     this.lblLastIssues.AutoSize = true;
     this.lblLastIssues.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLastIssues.Location = new System.Drawing.Point(353, 105);
     this.lblLastIssues.Name = "lblLastIssues";
     this.lblLastIssues.Size = new System.Drawing.Size(22, 23);
     this.lblLastIssues.TabIndex = 1;
     this.lblLastIssues.Text = "0";
     //
     // lblLastReceive
     //
     this.lblLastReceive.AutoSize = true;
     this.lblLastReceive.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLastReceive.Location = new System.Drawing.Point(353, 67);
     this.lblLastReceive.Name = "lblLastReceive";
     this.lblLastReceive.Size = new System.Drawing.Size(22, 23);
     this.lblLastReceive.TabIndex = 1;
     this.lblLastReceive.Text = "0";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label23.Location = new System.Drawing.Point(141, 182);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(210, 16);
     this.label23.TabIndex = 0;
     this.label23.Text = "AVG. no. of days b/n Issues : ";
     this.label23.Visible = false;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location = new System.Drawing.Point(125, 151);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(226, 16);
     this.label22.TabIndex = 0;
     this.label22.Text = "AVG. no. of days b/n Receives : ";
     this.label22.Visible = false;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.Location = new System.Drawing.Point(141, 105);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(214, 23);
     this.label21.TabIndex = 0;
     this.label21.Text = "Last Issued Date : ";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location = new System.Drawing.Point(116, 67);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(239, 23);
     this.label17.TabIndex = 0;
     this.label17.Text = "Last Received Date : ";
     //
     // tbConsumptionTrend
     //
     this.tbConsumptionTrend.Controls.Add(this.lkDetailCons);
     this.tbConsumptionTrend.Controls.Add(this.label33);
     this.tbConsumptionTrend.Controls.Add(this.consuTrend);
     this.tbConsumptionTrend.Name = "tbConsumptionTrend";
     this.tbConsumptionTrend.Padding = new System.Windows.Forms.Padding(3);
     this.tbConsumptionTrend.PageVisible = false;
     this.tbConsumptionTrend.Size = new System.Drawing.Size(1040, 521);
     this.tbConsumptionTrend.Text = "Consumption Trend";
     //
     // lkDetailCons
     //
     this.lkDetailCons.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lkDetailCons.AutoSize = true;
     this.lkDetailCons.Location = new System.Drawing.Point(1100, 17);
     this.lkDetailCons.Name = "lkDetailCons";
     this.lkDetailCons.Size = new System.Drawing.Size(72, 13);
     this.lkDetailCons.TabIndex = 16;
     this.lkDetailCons.TabStop = true;
     this.lkDetailCons.Text = "Show Table";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label33.Location = new System.Drawing.Point(7, 15);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(212, 23);
     this.label33.TabIndex = 12;
     this.label33.Text = "Trend - Consumption";
     //
     // consuTrend
     //
     this.consuTrend.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.consuTrend.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     xyDiagram5.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram5.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram5.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram5.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram5.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram5.AxisY.VisibleInPanesSerializable = "-1";
     this.consuTrend.Diagram = xyDiagram5;
     this.consuTrend.Location = new System.Drawing.Point(10, 41);
     this.consuTrend.Name = "consuTrend";
     sideBySideBarSeriesLabel13.LineVisible = true;
     series9.Label = sideBySideBarSeriesLabel13;
     series9.Name = "Series 1";
     sideBySideBarSeriesLabel14.LineVisible = true;
     series10.Label = sideBySideBarSeriesLabel14;
     series10.Name = "Series 2";
     this.consuTrend.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series9,
     series10};
     sideBySideBarSeriesLabel15.LineVisible = true;
     this.consuTrend.SeriesTemplate.Label = sideBySideBarSeriesLabel15;
     this.consuTrend.Size = new System.Drawing.Size(955, 476);
     this.consuTrend.TabIndex = 3;
     //
     // tbStockExpiryStatus
     //
     this.tbStockExpiryStatus.Appearance.PageClient.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.tbStockExpiryStatus.Appearance.PageClient.Options.UseBackColor = true;
     this.tbStockExpiryStatus.Controls.Add(this.chartPie);
     this.tbStockExpiryStatus.Name = "tbStockExpiryStatus";
     this.tbStockExpiryStatus.Padding = new System.Windows.Forms.Padding(3);
     this.tbStockExpiryStatus.PageVisible = false;
     this.tbStockExpiryStatus.Size = new System.Drawing.Size(1040, 521);
     this.tbStockExpiryStatus.Text = "Stock Expiry Status";
     //
     // chartPie
     //
     this.chartPie.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.chartPie.BorderOptions.Visible = false;
     simpleDiagram3D1.RotationMatrixSerializable = "1;0;0;0;0;0.5;-0.866025403784439;0;0;0.866025403784439;0.5;0;0;0;0;1";
     this.chartPie.Diagram = simpleDiagram3D1;
     this.chartPie.Dock = System.Windows.Forms.DockStyle.Fill;
     this.chartPie.Location = new System.Drawing.Point(3, 3);
     this.chartPie.Name = "chartPie";
     this.chartPie.PaletteName = "Palette 2";
     this.chartPie.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)(0)))), ((int)(((byte)(187)))), ((int)(((byte)(47))))), System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(187)))), ((int)(((byte)(47)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))), System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))))}));
     this.chartPie.PaletteRepository.Add("Palette 2", new DevExpress.XtraCharts.Palette("Palette 2", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[] {
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(151)))), ((int)(((byte)(73))))), System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(151)))), ((int)(((byte)(73)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(198)))), ((int)(((byte)(23)))), ((int)(((byte)(23))))), System.Drawing.Color.FromArgb(((int)(((byte)(198)))), ((int)(((byte)(23)))), ((int)(((byte)(23)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(6))))), System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(6))))))}));
     pie3DSeriesLabel1.LineVisible = true;
     piePointOptions1.PointView = DevExpress.XtraCharts.PointView.SeriesName;
     piePointOptions1.ValueNumericOptions.Format = DevExpress.XtraCharts.NumericFormat.Percent;
     pie3DSeriesLabel1.PointOptions = piePointOptions1;
     series11.Label = pie3DSeriesLabel1;
     series11.Name = "Series 1";
     series11.View = pie3DSeriesView1;
     this.chartPie.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series11};
     pie3DSeriesLabel2.LineVisible = true;
     this.chartPie.SeriesTemplate.Label = pie3DSeriesLabel2;
     this.chartPie.SeriesTemplate.View = pie3DSeriesView2;
     this.chartPie.Size = new System.Drawing.Size(1034, 515);
     this.chartPie.TabIndex = 21;
     //
     // tbLogisticsSummary
     //
     this.tbLogisticsSummary.Controls.Add(this.layoutControl1);
     this.tbLogisticsSummary.Name = "tbLogisticsSummary";
     this.tbLogisticsSummary.Padding = new System.Windows.Forms.Padding(3);
     this.tbLogisticsSummary.PageVisible = false;
     this.tbLogisticsSummary.Size = new System.Drawing.Size(1040, 521);
     this.tbLogisticsSummary.Text = "Logistics Summary";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.lookUpEdit1);
     this.layoutControl1.Controls.Add(this.gridControl1);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(3, 3);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1034, 515);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // lookUpEdit1
     //
     this.lookUpEdit1.Location = new System.Drawing.Point(45, 12);
     this.lookUpEdit1.Name = "lookUpEdit1";
     this.lookUpEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit1.Size = new System.Drawing.Size(168, 20);
     this.lookUpEdit1.StyleController = this.layoutControl1;
     this.lookUpEdit1.TabIndex = 5;
     //
     // gridControl1
     //
     this.gridControl1.Location = new System.Drawing.Point(12, 52);
     this.gridControl1.MainView = this.gridView3;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(1010, 451);
     this.gridControl1.TabIndex = 4;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView3});
     //
     // gridView3
     //
     this.gridView3.GridControl = this.gridControl1;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "Root";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.emptySpaceItem1});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Size = new System.Drawing.Size(1034, 515);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gridControl1;
     this.layoutControlItem1.CustomizationFormText = "Text";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1014, 471);
     this.layoutControlItem1.Text = "Text";
     this.layoutControlItem1.TextLocation = DevExpress.Utils.Locations.Top;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(30, 13);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.lookUpEdit1;
     this.layoutControlItem2.CustomizationFormText = "Month";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(205, 24);
     this.layoutControlItem2.Text = "Month";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(30, 13);
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(205, 0);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(809, 24);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // tbSOHLocation
     //
     this.tbSOHLocation.Controls.Add(this.gridLocations);
     this.tbSOHLocation.Name = "tbSOHLocation";
     this.tbSOHLocation.Padding = new System.Windows.Forms.Padding(3);
     this.tbSOHLocation.Size = new System.Drawing.Size(1040, 521);
     this.tbSOHLocation.Text = "SOH Locations";
     //
     // gridLocations
     //
     this.gridLocations.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridLocations.Location = new System.Drawing.Point(3, 3);
     this.gridLocations.MainView = this.gridView1;
     this.gridLocations.Name = "gridLocations";
     this.gridLocations.Size = new System.Drawing.Size(1034, 515);
     this.gridLocations.TabIndex = 0;
     this.gridLocations.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn3,
     this.gridColumn5,
     this.gridColumn2,
     this.colPalletNumber,
     this.colPalletLocation,
     this.gridColumn4});
     this.gridView1.GridControl = this.gridLocations;
     this.gridView1.GroupCount = 1;
     this.gridView1.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Balance", null, "")});
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsBehavior.SummariesIgnoreNullValues = true;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowFooter = true;
     this.gridView1.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colPalletLocation, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Receive Date";
     this.gridColumn1.FieldName = "EurDate";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 100;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Batch No";
     this.gridColumn3.FieldName = "BatchNo";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 4;
     this.gridColumn3.Width = 113;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Expiry Date";
     this.gridColumn5.FieldName = "ExpiryDate";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 1;
     this.gridColumn5.Width = 227;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Balance";
     this.gridColumn2.FieldName = "Balance";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum)});
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 2;
     this.gridColumn2.Width = 184;
     //
     // colPalletNumber
     //
     this.colPalletNumber.Caption = "PalletNumber";
     this.colPalletNumber.FieldName = "PalletNo";
     this.colPalletNumber.Name = "colPalletNumber";
     this.colPalletNumber.Visible = true;
     this.colPalletNumber.VisibleIndex = 5;
     this.colPalletNumber.Width = 147;
     //
     // colPalletLocation
     //
     this.colPalletLocation.Caption = "Pallet Location";
     this.colPalletLocation.FieldName = "PalletLocation";
     this.colPalletLocation.Name = "colPalletLocation";
     this.colPalletLocation.OptionsColumn.AllowEdit = false;
     this.colPalletLocation.Visible = true;
     this.colPalletLocation.VisibleIndex = 6;
     this.colPalletLocation.Width = 182;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Manufacturer";
     this.gridColumn4.FieldName = "ManufacturerName";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width = 199;
     //
     // tbSOHPriceSummary
     //
     this.tbSOHPriceSummary.Controls.Add(this.gridSOHSummary);
     this.tbSOHPriceSummary.Name = "tbSOHPriceSummary";
     this.tbSOHPriceSummary.Size = new System.Drawing.Size(1040, 521);
     this.tbSOHPriceSummary.Text = "SOH Price Summary";
     //
     // gridSOHSummary
     //
     this.gridSOHSummary.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridSOHSummary.Location = new System.Drawing.Point(0, 0);
     this.gridSOHSummary.MainView = this.gridView4;
     this.gridSOHSummary.Name = "gridSOHSummary";
     this.gridSOHSummary.Size = new System.Drawing.Size(1040, 521);
     this.gridSOHSummary.TabIndex = 1;
     this.gridSOHSummary.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView4});
     //
     // gridView4
     //
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn14,
     this.gridColumn13,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12});
     this.gridView4.GridControl = this.gridSOHSummary;
     this.gridView4.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Balance", null, "")});
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsBehavior.Editable = false;
     this.gridView4.OptionsBehavior.SummariesIgnoreNullValues = true;
     this.gridView4.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView4.OptionsView.ShowFooter = true;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Unit Cost";
     this.gridColumn14.FieldName = "Cost";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 4;
     this.gridColumn14.Width = 97;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Supplier";
     this.gridColumn13.FieldName = "Supplier";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 2;
     this.gridColumn13.Width = 166;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Receive Date";
     this.gridColumn6.FieldName = "EurDate";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width = 90;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Batch No";
     this.gridColumn7.FieldName = "BatchNo";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 128;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Expiry Date";
     this.gridColumn8.FieldName = "ExpiryDate";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowEdit = false;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 1;
     this.gridColumn8.Width = 161;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Balance";
     this.gridColumn9.FieldName = "Balance";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowEdit = false;
     this.gridColumn9.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum)});
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 3;
     this.gridColumn9.Width = 102;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "PalletNumber";
     this.gridColumn10.FieldName = "PalletNo";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 7;
     this.gridColumn10.Width = 106;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Pallet Location";
     this.gridColumn11.FieldName = "PalletLocation";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowEdit = false;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 8;
     this.gridColumn11.Width = 157;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Manufacturer";
     this.gridColumn12.FieldName = "ManufacturerName";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.AllowEdit = false;
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 5;
     this.gridColumn12.Width = 167;
     //
     // lblItemID
     //
     this.lblItemID.AutoSize = true;
     this.lblItemID.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblItemID.ForeColor = System.Drawing.SystemColors.AppWorkspace;
     this.lblItemID.Location = new System.Drawing.Point(12, 36);
     this.lblItemID.Name = "lblItemID";
     this.lblItemID.Size = new System.Drawing.Size(0, 18);
     this.lblItemID.TabIndex = 26;
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(973, 520);
     this.xtraTabPage1.Text = "xtraTabPage1";
     //
     // 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.Black;
     this.dtDate.CustomFormat = "MM/dd/ yy";
     this.dtDate.DayOfWeekCharacters = 2;
     this.dtDate.ForeColor = System.Drawing.Color.Black;
     this.dtDate.Location = new System.Drawing.Point(748, 10);
     this.dtDate.Name = "dtDate";
     this.dtDate.PopUpFontSize = 9.75F;
     this.dtDate.Size = new System.Drawing.Size(114, 20);
     this.dtDate.TabIndex = 17;
     this.dtDate.Value = new System.DateTime(2008, 10, 21, 0, 0, 0, 0);
     this.dtDate.Visible = false;
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.Location = new System.Drawing.Point(962, 34);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 20;
     this.btnCancel.Text = "Close";
     this.btnCancel.Click += new System.EventHandler(this.BtnCancelClick);
     //
     // chartControl1
     //
     this.chartControl1.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.chartControl1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.chartControl1.Location = new System.Drawing.Point(7, 25);
     this.chartControl1.Name = "chartControl1";
     this.chartControl1.PaletteRepository.Add("Palette 1", new DevExpress.XtraCharts.Palette("Palette 1", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[0]));
     this.chartControl1.PaletteRepository.Add("Palette 2", new DevExpress.XtraCharts.Palette("Palette 2", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[0]));
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[0];
     sideBySideBarSeriesLabel16.LineVisible = true;
     this.chartControl1.SeriesTemplate.Label = sideBySideBarSeriesLabel16;
     this.chartControl1.Size = new System.Drawing.Size(974, 411);
     this.chartControl1.TabIndex = 2;
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // toolTip1
     //
     this.toolTip1.AutoPopDelay = 5000;
     this.toolTip1.InitialDelay = 500;
     this.toolTip1.ReshowDelay = 0;
     this.toolTip1.ShowAlways = true;
     this.toolTip1.ToolTipTitle = "Item Name";
     //
     // txtitmName
     //
     this.txtitmName.AutoSize = true;
     this.txtitmName.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtitmName.Location = new System.Drawing.Point(81, 12);
     this.txtitmName.Name = "txtitmName";
     this.txtitmName.Size = new System.Drawing.Size(0, 18);
     this.txtitmName.TabIndex = 100;
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Location = new System.Drawing.Point(71, 40);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(92, 13);
     this.label38.TabIndex = 101;
     this.label38.Text = "Unit of Issue : ";
     //
     // lblBUnit
     //
     this.lblBUnit.AutoSize = true;
     this.lblBUnit.Location = new System.Drawing.Point(168, 40);
     this.lblBUnit.Name = "lblBUnit";
     this.lblBUnit.Size = new System.Drawing.Size(0, 13);
     this.lblBUnit.TabIndex = 101;
     //
     // xpButton1
     //
     this.xpButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.xpButton1.Image = ((System.Drawing.Image)(resources.GetObject("xpButton1.Image")));
     this.xpButton1.Location = new System.Drawing.Point(893, 38);
     this.xpButton1.Name = "xpButton1";
     this.xpButton1.Size = new System.Drawing.Size(75, 23);
     this.xpButton1.TabIndex = 15;
     this.xpButton1.Text = "Print";
     this.xpButton1.Click += new System.EventHandler(this.BtnPrintClicked);
     //
     // btnExport
     //
     this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExport.Location = new System.Drawing.Point(770, 38);
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new System.Drawing.Size(106, 23);
     this.btnExport.TabIndex = 103;
     this.btnExport.Text = "Export Bin Card";
     this.btnExport.Click += new System.EventHandler(this.BtnExportClick);
     //
     // lblItemSerialNumber
     //
     this.lblItemSerialNumber.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.lblItemSerialNumber.Location = new System.Drawing.Point(287, 5);
     this.lblItemSerialNumber.Name = "lblItemSerialNumber";
     this.lblItemSerialNumber.Size = new System.Drawing.Size(132, 16);
     this.lblItemSerialNumber.TabIndex = 104;
     this.lblItemSerialNumber.Text = "Item Serial Number: ";
     //
     // ItemDetailReport
     //
     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(1049, 614);
     this.Controls.Add(this.lblItemSerialNumber);
     this.Controls.Add(this.lblItemID);
     this.Controls.Add(this.lblBUnit);
     this.Controls.Add(this.label38);
     this.Controls.Add(this.txtitmName);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.dtDate);
     this.Controls.Add(this.tabControl1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "ItemDetailReport";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Item Detail Reports";
     this.Load += new System.EventHandler(this.BinCardTransactionLoad);
     ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tbSummary.ResumeLayout(false);
     this.tbSummary.PerformLayout();
     this.tbBinCard.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     this.layoutControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkBinCardWarehouse.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     this.tbClassicBinCard.ResumeLayout(false);
     this.tbClassicBinCard.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkWarehouses.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkProgramFilter.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.transactionGrid)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewBinCard)).EndInit();
     this.tbSOHTrend.ResumeLayout(false);
     this.tbSOHTrend.PerformLayout();
     this.tbAMCTrend.ResumeLayout(false);
     this.tbAMCTrend.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartAmc)).EndInit();
     this.tbMOSTrend.ResumeLayout(false);
     this.tbMOSTrend.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartMOS)).EndInit();
     this.tbActivityTrend.ResumeLayout(false);
     this.tbActivityTrend.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartComp)).EndInit();
     this.tbSSTrend.ResumeLayout(false);
     this.tbSSTrend.PerformLayout();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.tbTransactions.ResumeLayout(false);
     this.tbTransactions.PerformLayout();
     this.tbConsumptionTrend.ResumeLayout(false);
     this.tbConsumptionTrend.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.consuTrend)).EndInit();
     this.tbStockExpiryStatus.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(simpleDiagram3D1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartPie)).EndInit();
     this.tbLogisticsSummary.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     this.tbSOHLocation.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridLocations)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.tbSOHPriceSummary.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridSOHSummary)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        private void Link_CreateMarginalHeaderArea(object sender, CreateAreaEventArgs e)
        {
            GeneralInfo info = new GeneralInfo();
            info.LoadAll();
            // old header
            //string header = info.HospitalName + "Inventory Log of " + lblAdjDate.Text;

            //header with reference number  and date included
            CalendarLib.DateTimePickerEx dtDate = new CalendarLib.DateTimePickerEx
            {
                Value = DateTime.Now,
                CustomFormat = "MM/dd/yyyy"
            };
            DateTime dtCurrent = Convert.ToDateTime(dtDate.Text);
            string header = info.HospitalName + "Inventory Log of " + lblAdjDate.Text + "    " + dtCurrent.ToString("MM dd,yyyy");
            printableComponentLink1.PageHeaderFooter = header;

            TextBrick brick = e.Graph.DrawString("", Color.DarkBlue, new RectangleF(0, 0, 200, 100), BorderSide.None);
            TextBrick brick1 = e.Graph.DrawString(header, Color.DarkBlue, new RectangleF(0, 20, 200, 100), BorderSide.None);
            TextBrick brick2 = e.Graph.DrawString("", Color.DarkBlue, new RectangleF(0, 40, 200, 100), BorderSide.None);
        }
        private void detailToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var dr = gridView1.GetFocusedDataRow();

            if (dr == null) return;

            int tranId = Convert.ToInt32(dr["ID"]);

            var dtDate = new CalendarLib.DateTimePickerEx
                                                      {
                                                          Value = DateTime.Now,
                                                          CustomFormat = "MM/dd/yyyy"
                                                      };
            DateTime dtCur = ConvertDate.DateConverter(dtDate.Text);
            int itemId = Convert.ToInt32(dr["ItemID"]);
            int yr = ((dtCur.Month < 11) ? dtCur.Year : dtCur.Year + 1);
            switch (VisibilitySetting.HandleUnits)
            {
                case 1:
                    {
                        var con = new ItemDetailReport(itemId, Convert.ToInt32(cboStores.EditValue), yr, 0);
                        con.ShowDialog();
                    }
                    break;
                case 2:
                    {
                        int unitId = Convert.ToInt32(dr["UnitID"]);
                        var con = new ItemDetailReport(itemId, Convert.ToInt32(cboStores.EditValue), yr, 0,unitId);
                        con.ShowDialog();
                    }
                    break;
                case 3:
                    {
                        int unitId = Convert.ToInt32(dr["UnitID"]);
                        var con = new ItemDetailReport(itemId, Convert.ToInt32(cboStores.EditValue), yr, 0,unitId);
                        con.ShowDialog();
                    }
                    break;
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InvoiceForm));
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     this.boxSizedList = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.layoutControl3 = new DevExpress.XtraLayout.LayoutControl();
     this.lblPicklistPrintedDate = new DevExpress.XtraEditors.LabelControl();
     this.lblPicklistConfirmedBy = new DevExpress.XtraEditors.LabelControl();
     this.lblAppDate = new DevExpress.XtraEditors.LabelControl();
     this.lblIssueStatus = new DevExpress.XtraEditors.LabelControl();
     this.lblIssueTypes = new DevExpress.XtraEditors.LabelControl();
     this.lblissuedDate = new DevExpress.XtraEditors.LabelControl();
     this.lblPaymentType = new DevExpress.XtraEditors.LabelControl();
     this.lblApprovedBy = new DevExpress.XtraEditors.LabelControl();
     this.lblIssuedBy = new DevExpress.XtraEditors.LabelControl();
     this.lblRefNo = new DevExpress.XtraEditors.LabelControl();
     this.lblApprovedDate = new DevExpress.XtraEditors.LabelControl();
     this.lblInstitutionType = new DevExpress.XtraEditors.LabelControl();
     this.lblRegion = new DevExpress.XtraEditors.LabelControl();
     this.lblZone = new DevExpress.XtraEditors.LabelControl();
     this.lblWoreda = new DevExpress.XtraEditors.LabelControl();
     this.lblOwnership = new DevExpress.XtraEditors.LabelControl();
     this.lblMode = new DevExpress.XtraEditors.LabelControl();
     this.chkIncludeInsurance = new DevExpress.XtraEditors.CheckEdit();
     this.btnReturnToApprovalStep = new DevExpress.XtraEditors.SimpleButton();
     this.txtFacilityNameFilter = new DevExpress.XtraEditors.TextEdit();
     this.gridOutstandingPickLists = new DevExpress.XtraGrid.GridControl();
     this.gridOutstandingPickListView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn48 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.btnConfirmIssue1 = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancelIssue = new DevExpress.XtraEditors.SimpleButton();
     this.txtConfirmOrderNumber = new DevExpress.XtraEditors.TextEdit();
     this.txtConfirmApprovedBy = new DevExpress.XtraEditors.TextEdit();
     this.txtConfirmFromStore = new DevExpress.XtraEditors.TextEdit();
     this.txtConfirmRequestedBy = new DevExpress.XtraEditors.TextEdit();
     this.dtIssuedDate = new CalendarLib.DateTimePickerEx();
     this.txtRemarks = new DevExpress.XtraEditors.MemoEdit();
     this.txtIssueRefNo = new DevExpress.XtraEditors.TextEdit();
     this.gridOutstandingPicklistDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewConfirmation = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn76 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSKUPicked = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.colBUPicked = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn47 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn60 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn62 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.txtIssuedBy = new DevExpress.XtraEditors.TextEdit();
     this.lkMode = new DevExpress.XtraEditors.LookUpEdit();
     this.lkPaymentType = new DevExpress.XtraEditors.LookUpEdit();
     this.layoutControlItem18 = new DevExpress.XtraLayout.LayoutControlItem();
     this.tabbedControlGroup1 = new DevExpress.XtraLayout.TabbedControlGroup();
     this.layoutControlGroup11 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem26 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem25 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem20 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem21 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem27 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem22 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup7 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup12 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.HeaderSection = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem23 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem30 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem31 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem32 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem28 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem29 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup13 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem19 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem42 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem43 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutSupplimentaryOrder = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcOutstandingPicklists = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem50 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup5 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu();
     this.dxValidationProvider1 = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider();
     this.emptySpaceItem15 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup8 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup9 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup10 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem10 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem22 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem23 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem();
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink();
     this.printOrder = new DevExpress.XtraPrinting.PrintableComponentLink();
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl3)).BeginInit();
     this.layoutControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkIncludeInsurance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFacilityNameFilter.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPickLists)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPickListView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmOrderNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmApprovedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmFromStore.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmRequestedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIssueRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPicklistDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewConfirmation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIssuedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkMode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPaymentType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabbedControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderSection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem42)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem43)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutSupplimentaryOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcOutstandingPicklists)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem50)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     this.SuspendLayout();
     //
     // boxSizedList
     //
     this.boxSizedList.AutoHeight = false;
     this.boxSizedList.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.boxSizedList.DisplayMember = "Name";
     this.boxSizedList.Name = "boxSizedList";
     this.boxSizedList.ValueMember = "ID";
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // repositoryItemDateEdit3
     //
     this.repositoryItemDateEdit3.AutoHeight = false;
     this.repositoryItemDateEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit3.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemDateEdit3.EditFormat.FormatString = "mm-DD-YYYY";
     this.repositoryItemDateEdit3.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit3.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.DisplayText;
     this.repositoryItemDateEdit3.Name = "repositoryItemDateEdit3";
     //
     // repositoryItemButtonEdit4
     //
     this.repositoryItemButtonEdit4.AutoHeight = false;
     this.repositoryItemButtonEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemButtonEdit4.Name = "repositoryItemButtonEdit4";
     this.repositoryItemButtonEdit4.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // layoutControl3
     //
     this.layoutControl3.AllowCustomizationMenu = false;
     this.layoutControl3.Controls.Add(this.lblPicklistPrintedDate);
     this.layoutControl3.Controls.Add(this.lblPicklistConfirmedBy);
     this.layoutControl3.Controls.Add(this.lblAppDate);
     this.layoutControl3.Controls.Add(this.lblIssueStatus);
     this.layoutControl3.Controls.Add(this.lblIssueTypes);
     this.layoutControl3.Controls.Add(this.lblissuedDate);
     this.layoutControl3.Controls.Add(this.lblPaymentType);
     this.layoutControl3.Controls.Add(this.lblApprovedBy);
     this.layoutControl3.Controls.Add(this.lblIssuedBy);
     this.layoutControl3.Controls.Add(this.lblRefNo);
     this.layoutControl3.Controls.Add(this.lblApprovedDate);
     this.layoutControl3.Controls.Add(this.lblInstitutionType);
     this.layoutControl3.Controls.Add(this.lblRegion);
     this.layoutControl3.Controls.Add(this.lblZone);
     this.layoutControl3.Controls.Add(this.lblWoreda);
     this.layoutControl3.Controls.Add(this.lblOwnership);
     this.layoutControl3.Controls.Add(this.lblMode);
     this.layoutControl3.Controls.Add(this.chkIncludeInsurance);
     this.layoutControl3.Controls.Add(this.btnReturnToApprovalStep);
     this.layoutControl3.Controls.Add(this.txtFacilityNameFilter);
     this.layoutControl3.Controls.Add(this.gridOutstandingPickLists);
     this.layoutControl3.Controls.Add(this.simpleButton1);
     this.layoutControl3.Controls.Add(this.btnConfirmIssue1);
     this.layoutControl3.Controls.Add(this.btnCancelIssue);
     this.layoutControl3.Controls.Add(this.txtConfirmOrderNumber);
     this.layoutControl3.Controls.Add(this.txtConfirmApprovedBy);
     this.layoutControl3.Controls.Add(this.txtConfirmFromStore);
     this.layoutControl3.Controls.Add(this.txtConfirmRequestedBy);
     this.layoutControl3.Controls.Add(this.dtIssuedDate);
     this.layoutControl3.Controls.Add(this.txtRemarks);
     this.layoutControl3.Controls.Add(this.txtIssueRefNo);
     this.layoutControl3.Controls.Add(this.gridOutstandingPicklistDetail);
     this.layoutControl3.Controls.Add(this.txtIssuedBy);
     this.layoutControl3.Controls.Add(this.lkMode);
     this.layoutControl3.Controls.Add(this.lkPaymentType);
     this.layoutControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl3.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem18,
     this.tabbedControlGroup1,
     this.layoutControlItem26,
     this.layoutControlItem25,
     this.layoutControlItem20,
     this.layoutControlItem17,
     this.layoutControlItem21,
     this.layoutControlItem27,
     this.layoutControlItem22,
     this.layoutControlItem1,
     this.layoutControlItem12,
     this.layoutControlItem15});
     this.layoutControl3.Location = new System.Drawing.Point(0, 0);
     this.layoutControl3.Margin = new System.Windows.Forms.Padding(0);
     this.layoutControl3.Name = "layoutControl3";
     this.layoutControl3.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(330, 260, 250, 350);
     this.layoutControl3.Root = this.layoutControlGroup7;
     this.layoutControl3.Size = new System.Drawing.Size(1123, 575);
     this.layoutControl3.TabIndex = 37;
     this.layoutControl3.Text = "layoutControl3";
     //
     // lblPicklistPrintedDate
     //
     this.lblPicklistPrintedDate.Location = new System.Drawing.Point(823, 104);
     this.lblPicklistPrintedDate.Name = "lblPicklistPrintedDate";
     this.lblPicklistPrintedDate.Size = new System.Drawing.Size(91, 16);
     this.lblPicklistPrintedDate.StyleController = this.layoutControl3;
     this.lblPicklistPrintedDate.TabIndex = 63;
     //
     // lblPicklistConfirmedBy
     //
     this.lblPicklistConfirmedBy.Location = new System.Drawing.Point(823, 124);
     this.lblPicklistConfirmedBy.Name = "lblPicklistConfirmedBy";
     this.lblPicklistConfirmedBy.Size = new System.Drawing.Size(91, 16);
     this.lblPicklistConfirmedBy.StyleController = this.layoutControl3;
     this.lblPicklistConfirmedBy.TabIndex = 62;
     //
     // lblAppDate
     //
     this.lblAppDate.Location = new System.Drawing.Point(622, 104);
     this.lblAppDate.Name = "lblAppDate";
     this.lblAppDate.Size = new System.Drawing.Size(91, 16);
     this.lblAppDate.StyleController = this.layoutControl3;
     this.lblAppDate.TabIndex = 61;
     //
     // lblIssueStatus
     //
     this.lblIssueStatus.Location = new System.Drawing.Point(977, 104);
     this.lblIssueStatus.Name = "lblIssueStatus";
     this.lblIssueStatus.Size = new System.Drawing.Size(135, 16);
     this.lblIssueStatus.StyleController = this.layoutControl3;
     this.lblIssueStatus.TabIndex = 60;
     //
     // lblIssueTypes
     //
     this.lblIssueTypes.Location = new System.Drawing.Point(977, 124);
     this.lblIssueTypes.Name = "lblIssueTypes";
     this.lblIssueTypes.Size = new System.Drawing.Size(135, 16);
     this.lblIssueTypes.StyleController = this.layoutControl3;
     this.lblIssueTypes.TabIndex = 59;
     //
     // lblissuedDate
     //
     this.lblissuedDate.Location = new System.Drawing.Point(424, 104);
     this.lblissuedDate.Name = "lblissuedDate";
     this.lblissuedDate.Size = new System.Drawing.Size(87, 16);
     this.lblissuedDate.StyleController = this.layoutControl3;
     this.lblissuedDate.TabIndex = 58;
     //
     // lblPaymentType
     //
     this.lblPaymentType.Location = new System.Drawing.Point(384, 50);
     this.lblPaymentType.Name = "lblPaymentType";
     this.lblPaymentType.Size = new System.Drawing.Size(139, 16);
     this.lblPaymentType.StyleController = this.layoutControl3;
     this.lblPaymentType.TabIndex = 57;
     //
     // lblApprovedBy
     //
     this.lblApprovedBy.Location = new System.Drawing.Point(622, 124);
     this.lblApprovedBy.Name = "lblApprovedBy";
     this.lblApprovedBy.Size = new System.Drawing.Size(91, 16);
     this.lblApprovedBy.StyleController = this.layoutControl3;
     this.lblApprovedBy.TabIndex = 56;
     //
     // lblIssuedBy
     //
     this.lblIssuedBy.Location = new System.Drawing.Point(424, 124);
     this.lblIssuedBy.Name = "lblIssuedBy";
     this.lblIssuedBy.Size = new System.Drawing.Size(87, 16);
     this.lblIssuedBy.StyleController = this.layoutControl3;
     this.lblIssuedBy.TabIndex = 55;
     //
     // lblRefNo
     //
     this.lblRefNo.Location = new System.Drawing.Point(594, 50);
     this.lblRefNo.Name = "lblRefNo";
     this.lblRefNo.Size = new System.Drawing.Size(132, 16);
     this.lblRefNo.StyleController = this.layoutControl3;
     this.lblRefNo.TabIndex = 54;
     //
     // lblApprovedDate
     //
     this.lblApprovedDate.Location = new System.Drawing.Point(854, 104);
     this.lblApprovedDate.Name = "lblApprovedDate";
     this.lblApprovedDate.Size = new System.Drawing.Size(58, 16);
     this.lblApprovedDate.StyleController = this.layoutControl3;
     this.lblApprovedDate.TabIndex = 53;
     //
     // lblInstitutionType
     //
     this.lblInstitutionType.Location = new System.Drawing.Point(795, 50);
     this.lblInstitutionType.Name = "lblInstitutionType";
     this.lblInstitutionType.Size = new System.Drawing.Size(317, 16);
     this.lblInstitutionType.StyleController = this.layoutControl3;
     this.lblInstitutionType.TabIndex = 52;
     //
     // lblRegion
     //
     this.lblRegion.Location = new System.Drawing.Point(795, 70);
     this.lblRegion.Name = "lblRegion";
     this.lblRegion.Size = new System.Drawing.Size(317, 16);
     this.lblRegion.StyleController = this.layoutControl3;
     this.lblRegion.TabIndex = 51;
     //
     // lblZone
     //
     this.lblZone.Location = new System.Drawing.Point(594, 70);
     this.lblZone.Name = "lblZone";
     this.lblZone.Size = new System.Drawing.Size(132, 16);
     this.lblZone.StyleController = this.layoutControl3;
     this.lblZone.TabIndex = 50;
     //
     // lblWoreda
     //
     this.lblWoreda.Location = new System.Drawing.Point(384, 70);
     this.lblWoreda.Name = "lblWoreda";
     this.lblWoreda.Size = new System.Drawing.Size(139, 16);
     this.lblWoreda.StyleController = this.layoutControl3;
     this.lblWoreda.TabIndex = 49;
     //
     // lblOwnership
     //
     this.lblOwnership.Location = new System.Drawing.Point(594, 30);
     this.lblOwnership.Name = "lblOwnership";
     this.lblOwnership.Size = new System.Drawing.Size(518, 16);
     this.lblOwnership.StyleController = this.layoutControl3;
     this.lblOwnership.TabIndex = 48;
     //
     // lblMode
     //
     this.lblMode.Location = new System.Drawing.Point(384, 30);
     this.lblMode.Name = "lblMode";
     this.lblMode.Size = new System.Drawing.Size(139, 16);
     this.lblMode.StyleController = this.layoutControl3;
     this.lblMode.TabIndex = 47;
     //
     // chkIncludeInsurance
     //
     this.chkIncludeInsurance.Location = new System.Drawing.Point(318, 151);
     this.chkIncludeInsurance.Name = "chkIncludeInsurance";
     this.chkIncludeInsurance.Properties.Caption = "Include Insurance";
     this.chkIncludeInsurance.Size = new System.Drawing.Size(801, 19);
     this.chkIncludeInsurance.StyleController = this.layoutControl3;
     this.chkIncludeInsurance.TabIndex = 45;
     //
     // btnReturnToApprovalStep
     //
     this.btnReturnToApprovalStep.Image = global::HCMIS.Desktop.Properties.Resources.Undo;
     this.btnReturnToApprovalStep.Location = new System.Drawing.Point(685, 549);
     this.btnReturnToApprovalStep.Name = "btnReturnToApprovalStep";
     this.btnReturnToApprovalStep.Size = new System.Drawing.Size(142, 22);
     this.btnReturnToApprovalStep.StyleController = this.layoutControl3;
     this.btnReturnToApprovalStep.TabIndex = 39;
     this.btnReturnToApprovalStep.Text = "Return to SDO";
     this.btnReturnToApprovalStep.Click += new System.EventHandler(this.btnReturnToApprovalStep_Click);
     //
     // txtFacilityNameFilter
     //
     this.txtFacilityNameFilter.Location = new System.Drawing.Point(50, 62);
     this.txtFacilityNameFilter.Name = "txtFacilityNameFilter";
     this.txtFacilityNameFilter.Size = new System.Drawing.Size(243, 20);
     this.txtFacilityNameFilter.StyleController = this.layoutControl3;
     this.txtFacilityNameFilter.TabIndex = 44;
     this.txtFacilityNameFilter.EditValueChanged += new System.EventHandler(this.txtFacilityNameFilter_EditValueChanged);
     //
     // gridOutstandingPickLists
     //
     this.gridOutstandingPickLists.Location = new System.Drawing.Point(5, 98);
     this.gridOutstandingPickLists.MainView = this.gridOutstandingPickListView;
     this.gridOutstandingPickLists.Name = "gridOutstandingPickLists";
     this.gridOutstandingPickLists.Size = new System.Drawing.Size(300, 448);
     this.gridOutstandingPickLists.TabIndex = 0;
     this.gridOutstandingPickLists.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridOutstandingPickListView});
     //
     // gridOutstandingPickListView
     //
     this.gridOutstandingPickListView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn48,
     this.gridColumn49,
     this.gridColumn46});
     this.gridOutstandingPickListView.GridControl = this.gridOutstandingPickLists;
     this.gridOutstandingPickListView.GroupCount = 1;
     this.gridOutstandingPickListView.Name = "gridOutstandingPickListView";
     this.gridOutstandingPickListView.OptionsBehavior.Editable = false;
     this.gridOutstandingPickListView.OptionsCustomization.AllowColumnMoving = false;
     this.gridOutstandingPickListView.OptionsCustomization.AllowColumnResizing = false;
     this.gridOutstandingPickListView.OptionsCustomization.AllowSort = false;
     this.gridOutstandingPickListView.OptionsMenu.EnableColumnMenu = false;
     this.gridOutstandingPickListView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridOutstandingPickListView.OptionsSelection.UseIndicatorForSelection = false;
     this.gridOutstandingPickListView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridOutstandingPickListView.OptionsView.ShowGroupPanel = false;
     this.gridOutstandingPickListView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn46, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridOutstandingPickListView.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.OnOutstandingPicklistSelected);
     //
     // gridColumn48
     //
     this.gridColumn48.Caption = "Referance Number";
     this.gridColumn48.FieldName = "RefNo";
     this.gridColumn48.Name = "gridColumn48";
     this.gridColumn48.OptionsColumn.AllowEdit = false;
     this.gridColumn48.OptionsColumn.AllowFocus = false;
     this.gridColumn48.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn48.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsColumn.AllowMove = false;
     this.gridColumn48.OptionsColumn.AllowShowHide = false;
     this.gridColumn48.OptionsColumn.AllowSize = false;
     this.gridColumn48.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn48.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn48.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn48.OptionsFilter.AllowFilter = false;
     this.gridColumn48.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn48.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.Visible = true;
     this.gridColumn48.VisibleIndex = 0;
     //
     // gridColumn49
     //
     this.gridColumn49.Caption = "Requested By";
     this.gridColumn49.FieldName = "RequestedBy";
     this.gridColumn49.Name = "gridColumn49";
     this.gridColumn49.OptionsColumn.AllowEdit = false;
     this.gridColumn49.OptionsColumn.AllowFocus = false;
     this.gridColumn49.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn49.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsColumn.AllowMove = false;
     this.gridColumn49.OptionsColumn.AllowShowHide = false;
     this.gridColumn49.OptionsColumn.AllowSize = false;
     this.gridColumn49.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn49.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn49.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn49.OptionsFilter.AllowFilter = false;
     this.gridColumn49.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn49.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.Visible = true;
     this.gridColumn49.VisibleIndex = 1;
     this.gridColumn49.Width = 159;
     //
     // gridColumn46
     //
     this.gridColumn46.Caption = "Route";
     this.gridColumn46.FieldName = "RouteName";
     this.gridColumn46.Name = "gridColumn46";
     this.gridColumn46.OptionsColumn.AllowEdit = false;
     this.gridColumn46.OptionsColumn.AllowFocus = false;
     this.gridColumn46.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn46.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsColumn.AllowMove = false;
     this.gridColumn46.OptionsColumn.AllowShowHide = false;
     this.gridColumn46.OptionsColumn.AllowSize = false;
     this.gridColumn46.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn46.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn46.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn46.OptionsFilter.AllowFilter = false;
     this.gridColumn46.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn46.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.Visible = true;
     this.gridColumn46.VisibleIndex = 2;
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(539, 549);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(142, 22);
     this.simpleButton1.StyleController = this.layoutControl3;
     this.simpleButton1.TabIndex = 43;
     this.simpleButton1.Text = "Supplimentary PickList";
     //
     // btnConfirmIssue1
     //
     this.btnConfirmIssue1.Image = ((System.Drawing.Image)(resources.GetObject("btnConfirmIssue1.Image")));
     this.btnConfirmIssue1.Location = new System.Drawing.Point(831, 549);
     this.btnConfirmIssue1.Name = "btnConfirmIssue1";
     this.btnConfirmIssue1.Size = new System.Drawing.Size(142, 22);
     this.btnConfirmIssue1.StyleController = this.layoutControl3;
     this.btnConfirmIssue1.TabIndex = 42;
     this.btnConfirmIssue1.Text = "Confirm Issue";
     this.btnConfirmIssue1.Click += new System.EventHandler(this.btnConfirmIssue_Click);
     //
     // btnCancelIssue
     //
     this.btnCancelIssue.Image = ((System.Drawing.Image)(resources.GetObject("btnCancelIssue.Image")));
     this.btnCancelIssue.Location = new System.Drawing.Point(977, 549);
     this.btnCancelIssue.Name = "btnCancelIssue";
     this.btnCancelIssue.Size = new System.Drawing.Size(142, 22);
     this.btnCancelIssue.StyleController = this.layoutControl3;
     this.btnCancelIssue.TabIndex = 41;
     this.btnCancelIssue.Text = "Cancel";
     this.btnCancelIssue.Click += new System.EventHandler(this.btnCancelIssue_Click);
     //
     // txtConfirmOrderNumber
     //
     this.txtConfirmOrderNumber.Enabled = false;
     this.txtConfirmOrderNumber.Location = new System.Drawing.Point(378, 119);
     this.txtConfirmOrderNumber.Name = "txtConfirmOrderNumber";
     this.txtConfirmOrderNumber.Size = new System.Drawing.Size(217, 20);
     this.txtConfirmOrderNumber.StyleController = this.layoutControl3;
     this.txtConfirmOrderNumber.TabIndex = 40;
     //
     // txtConfirmApprovedBy
     //
     this.txtConfirmApprovedBy.Enabled = false;
     this.txtConfirmApprovedBy.Location = new System.Drawing.Point(938, 100);
     this.txtConfirmApprovedBy.Name = "txtConfirmApprovedBy";
     this.txtConfirmApprovedBy.Size = new System.Drawing.Size(50, 20);
     this.txtConfirmApprovedBy.StyleController = this.layoutControl3;
     this.txtConfirmApprovedBy.TabIndex = 39;
     //
     // txtConfirmFromStore
     //
     this.txtConfirmFromStore.Enabled = false;
     this.txtConfirmFromStore.Location = new System.Drawing.Point(527, 54);
     this.txtConfirmFromStore.Name = "txtConfirmFromStore";
     this.txtConfirmFromStore.Size = new System.Drawing.Size(201, 20);
     this.txtConfirmFromStore.StyleController = this.layoutControl3;
     this.txtConfirmFromStore.TabIndex = 38;
     //
     // txtConfirmRequestedBy
     //
     this.txtConfirmRequestedBy.Enabled = false;
     this.txtConfirmRequestedBy.Location = new System.Drawing.Point(378, 167);
     this.txtConfirmRequestedBy.Name = "txtConfirmRequestedBy";
     this.txtConfirmRequestedBy.Size = new System.Drawing.Size(217, 20);
     this.txtConfirmRequestedBy.StyleController = this.layoutControl3;
     this.txtConfirmRequestedBy.TabIndex = 37;
     //
     // dtIssuedDate
     //
     this.dtIssuedDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.dtIssuedDate.CalendarFont = new System.Drawing.Font("Nyala", 13F);
     this.dtIssuedDate.CalendarForeColor = System.Drawing.Color.Black;
     this.dtIssuedDate.DayOfWeekCharacters = 1;
     this.dtIssuedDate.Enabled = false;
     this.dtIssuedDate.ForeColor = System.Drawing.Color.Black;
     this.dtIssuedDate.Location = new System.Drawing.Point(590, 104);
     this.dtIssuedDate.MinDateTime = new System.DateTime(2002, 1, 12, 0, 0, 0, 0);
     this.dtIssuedDate.Name = "dtIssuedDate";
     this.dtIssuedDate.PopUpFontSize = 10F;
     this.dtIssuedDate.Size = new System.Drawing.Size(120, 36);
     this.dtIssuedDate.TabIndex = 28;
     this.dtIssuedDate.Value = new System.DateTime(2012, 1, 12, 0, 0, 0, 0);
     //
     // txtRemarks
     //
     this.txtRemarks.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.txtRemarks.Location = new System.Drawing.Point(343, 447);
     this.txtRemarks.Name = "txtRemarks";
     this.txtRemarks.Size = new System.Drawing.Size(235, 124);
     this.txtRemarks.StyleController = this.layoutControl3;
     this.txtRemarks.TabIndex = 32;
     //
     // txtIssueRefNo
     //
     this.txtIssueRefNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtIssueRefNo.Enabled = false;
     this.txtIssueRefNo.Location = new System.Drawing.Point(378, 100);
     this.txtIssueRefNo.Name = "txtIssueRefNo";
     this.txtIssueRefNo.Size = new System.Drawing.Size(50, 20);
     this.txtIssueRefNo.StyleController = this.layoutControl3;
     this.txtIssueRefNo.TabIndex = 34;
     //
     // gridOutstandingPicklistDetail
     //
     this.gridOutstandingPicklistDetail.Location = new System.Drawing.Point(318, 174);
     this.gridOutstandingPicklistDetail.MainView = this.gridViewConfirmation;
     this.gridOutstandingPicklistDetail.Margin = new System.Windows.Forms.Padding(0);
     this.gridOutstandingPicklistDetail.Name = "gridOutstandingPicklistDetail";
     this.gridOutstandingPicklistDetail.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemMemoEdit3,
     this.repositoryItemTextEdit2});
     this.gridOutstandingPicklistDetail.Size = new System.Drawing.Size(801, 371);
     this.gridOutstandingPicklistDetail.TabIndex = 13;
     this.gridOutstandingPicklistDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewConfirmation});
     this.gridOutstandingPicklistDetail.DoubleClick += new System.EventHandler(this.gridOutstandingPicklistDetail_DoubleClick);
     //
     // gridViewConfirmation
     //
     this.gridViewConfirmation.Appearance.GroupFooter.BackColor = System.Drawing.Color.White;
     this.gridViewConfirmation.Appearance.GroupFooter.BackColor2 = System.Drawing.Color.White;
     this.gridViewConfirmation.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.gridViewConfirmation.Appearance.GroupFooter.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.gridViewConfirmation.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewConfirmation.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewConfirmation.Appearance.GroupFooter.Options.UseTextOptions = true;
     this.gridViewConfirmation.Appearance.GroupFooter.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewConfirmation.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.gridViewConfirmation.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.gridViewConfirmation.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gridViewConfirmation.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewConfirmation.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewConfirmation.Appearance.GroupRow.Options.UseForeColor = true;
     this.gridViewConfirmation.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn76,
     this.gridColumn22,
     this.gridColumn23,
     this.gridColumn35,
     this.gridColumn36,
     this.gridColumn37,
     this.gridColumn38,
     this.gridColumn39,
     this.gridColumn40,
     this.colSKUPicked,
     this.colBUPicked,
     this.gridColumn47,
     this.colCost,
     this.gridColumn60,
     this.gridColumn62,
     this.gridColumn50});
     this.gridViewConfirmation.GridControl = this.gridOutstandingPicklistDetail;
     this.gridViewConfirmation.GroupCount = 1;
     this.gridViewConfirmation.Name = "gridViewConfirmation";
     this.gridViewConfirmation.OptionsBehavior.AutoExpandAllGroups = true;
     this.gridViewConfirmation.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewConfirmation.OptionsCustomization.AllowColumnResizing = false;
     this.gridViewConfirmation.OptionsDetail.AllowExpandEmptyDetails = true;
     this.gridViewConfirmation.OptionsMenu.EnableColumnMenu = false;
     this.gridViewConfirmation.OptionsView.AllowCellMerge = true;
     this.gridViewConfirmation.OptionsView.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.Hidden;
     this.gridViewConfirmation.OptionsView.RowAutoHeight = true;
     this.gridViewConfirmation.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewConfirmation.OptionsView.ShowFooter = true;
     this.gridViewConfirmation.OptionsView.ShowGroupPanel = false;
     this.gridViewConfirmation.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn22, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewConfirmation.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView2_CellValueChanged);
     //
     // gridColumn76
     //
     this.gridColumn76.Caption = "Unit";
     this.gridColumn76.FieldName = "Unit";
     this.gridColumn76.Name = "gridColumn76";
     this.gridColumn76.OptionsColumn.AllowEdit = false;
     this.gridColumn76.OptionsColumn.AllowFocus = false;
     this.gridColumn76.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn76.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.OptionsColumn.AllowMove = false;
     this.gridColumn76.OptionsColumn.AllowShowHide = false;
     this.gridColumn76.OptionsColumn.AllowSize = false;
     this.gridColumn76.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn76.OptionsFilter.AllowFilter = false;
     this.gridColumn76.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn76.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.Visible = true;
     this.gridColumn76.VisibleIndex = 4;
     //
     // gridColumn22
     //
     this.gridColumn22.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn22.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn22.Caption = "Item";
     this.gridColumn22.ColumnEdit = this.repositoryItemMemoEdit3;
     this.gridColumn22.FieldName = "FullItemName";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.OptionsColumn.AllowEdit = false;
     this.gridColumn22.OptionsColumn.AllowFocus = false;
     this.gridColumn22.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.AllowMove = false;
     this.gridColumn22.OptionsColumn.AllowShowHide = false;
     this.gridColumn22.OptionsColumn.AllowSize = false;
     this.gridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn22.OptionsFilter.AllowFilter = false;
     this.gridColumn22.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn22.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.Width = 84;
     //
     // repositoryItemMemoEdit3
     //
     this.repositoryItemMemoEdit3.Name = "repositoryItemMemoEdit3";
     //
     // gridColumn23
     //
     this.gridColumn23.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn23.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn23.Caption = "Manufacturer";
     this.gridColumn23.FieldName = "ManufacturerName";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.OptionsColumn.AllowEdit = false;
     this.gridColumn23.OptionsColumn.AllowFocus = false;
     this.gridColumn23.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn23.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsColumn.AllowMove = false;
     this.gridColumn23.OptionsColumn.AllowShowHide = false;
     this.gridColumn23.OptionsColumn.AllowSize = false;
     this.gridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn23.OptionsFilter.AllowFilter = false;
     this.gridColumn23.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn23.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 0;
     this.gridColumn23.Width = 103;
     //
     // gridColumn35
     //
     this.gridColumn35.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn35.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn35.Caption = "Pack Size";
     this.gridColumn35.FieldName = "BoxSizeDisplay";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.OptionsColumn.AllowEdit = false;
     this.gridColumn35.OptionsColumn.AllowFocus = false;
     this.gridColumn35.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn35.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsColumn.AllowMove = false;
     this.gridColumn35.OptionsColumn.AllowShowHide = false;
     this.gridColumn35.OptionsColumn.AllowSize = false;
     this.gridColumn35.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn35.OptionsFilter.AllowFilter = false;
     this.gridColumn35.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn35.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.Width = 120;
     //
     // gridColumn36
     //
     this.gridColumn36.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn36.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn36.Caption = "Packs To Pick";
     this.gridColumn36.DisplayFormat.FormatString = "#,###.##";
     this.gridColumn36.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn36.FieldName = "SKUTOPICK";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.OptionsColumn.AllowEdit = false;
     this.gridColumn36.OptionsColumn.AllowFocus = false;
     this.gridColumn36.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn36.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsColumn.AllowMove = false;
     this.gridColumn36.OptionsColumn.AllowShowHide = false;
     this.gridColumn36.OptionsColumn.AllowSize = false;
     this.gridColumn36.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn36.OptionsFilter.AllowFilter = false;
     this.gridColumn36.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn36.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.Visible = true;
     this.gridColumn36.VisibleIndex = 5;
     this.gridColumn36.Width = 101;
     //
     // gridColumn37
     //
     this.gridColumn37.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn37.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn37.Caption = "Batch";
     this.gridColumn37.FieldName = "BatchNumber";
     this.gridColumn37.Name = "gridColumn37";
     this.gridColumn37.OptionsColumn.AllowEdit = false;
     this.gridColumn37.OptionsColumn.AllowFocus = false;
     this.gridColumn37.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn37.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsColumn.AllowMove = false;
     this.gridColumn37.OptionsColumn.AllowShowHide = false;
     this.gridColumn37.OptionsColumn.AllowSize = false;
     this.gridColumn37.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn37.OptionsFilter.AllowFilter = false;
     this.gridColumn37.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn37.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.Visible = true;
     this.gridColumn37.VisibleIndex = 1;
     this.gridColumn37.Width = 67;
     //
     // gridColumn38
     //
     this.gridColumn38.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn38.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn38.Caption = "Expiry Date";
     this.gridColumn38.ColumnEdit = this.repositoryItemDateEdit3;
     this.gridColumn38.DisplayFormat.FormatString = "MMM/d/yyyy";
     this.gridColumn38.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn38.FieldName = "ExpireDate";
     this.gridColumn38.Name = "gridColumn38";
     this.gridColumn38.OptionsColumn.AllowEdit = false;
     this.gridColumn38.OptionsColumn.AllowFocus = false;
     this.gridColumn38.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn38.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsColumn.AllowMove = false;
     this.gridColumn38.OptionsColumn.AllowShowHide = false;
     this.gridColumn38.OptionsColumn.AllowSize = false;
     this.gridColumn38.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn38.OptionsFilter.AllowFilter = false;
     this.gridColumn38.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn38.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.Visible = true;
     this.gridColumn38.VisibleIndex = 2;
     this.gridColumn38.Width = 99;
     //
     // gridColumn39
     //
     this.gridColumn39.ColumnEdit = this.repositoryItemButtonEdit4;
     this.gridColumn39.Name = "gridColumn39";
     this.gridColumn39.OptionsColumn.AllowEdit = false;
     this.gridColumn39.OptionsColumn.AllowFocus = false;
     this.gridColumn39.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn39.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsColumn.AllowMove = false;
     this.gridColumn39.OptionsColumn.AllowShowHide = false;
     this.gridColumn39.OptionsColumn.AllowSize = false;
     this.gridColumn39.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn39.OptionsFilter.AllowFilter = false;
     this.gridColumn39.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn39.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.gridColumn39.Width = 25;
     //
     // gridColumn40
     //
     this.gridColumn40.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn40.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn40.Caption = "Volume";
     this.gridColumn40.FieldName = "Volume";
     this.gridColumn40.Name = "gridColumn40";
     this.gridColumn40.OptionsColumn.AllowEdit = false;
     this.gridColumn40.OptionsColumn.AllowFocus = false;
     this.gridColumn40.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn40.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsColumn.AllowMove = false;
     this.gridColumn40.OptionsColumn.AllowShowHide = false;
     this.gridColumn40.OptionsColumn.AllowSize = false;
     this.gridColumn40.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn40.OptionsFilter.AllowFilter = false;
     this.gridColumn40.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn40.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     //
     // colSKUPicked
     //
     this.colSKUPicked.Caption = "Packs Picked";
     this.colSKUPicked.ColumnEdit = this.repositoryItemTextEdit2;
     this.colSKUPicked.DisplayFormat.FormatString = "#,###";
     this.colSKUPicked.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colSKUPicked.FieldName = "SKUPICKED";
     this.colSKUPicked.Name = "colSKUPicked";
     this.colSKUPicked.OptionsColumn.AllowEdit = false;
     this.colSKUPicked.OptionsColumn.AllowFocus = false;
     this.colSKUPicked.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.OptionsColumn.AllowIncrementalSearch = false;
     this.colSKUPicked.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.OptionsColumn.AllowMove = false;
     this.colSKUPicked.OptionsColumn.AllowShowHide = false;
     this.colSKUPicked.OptionsColumn.AllowSize = false;
     this.colSKUPicked.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.OptionsFilter.AllowAutoFilter = false;
     this.colSKUPicked.OptionsFilter.AllowFilter = false;
     this.colSKUPicked.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colSKUPicked.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.Width = 78;
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     //
     // colBUPicked
     //
     this.colBUPicked.Caption = "Qty picked in BU";
     this.colBUPicked.DisplayFormat.FormatString = "#,###";
     this.colBUPicked.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colBUPicked.FieldName = "BUPICKED";
     this.colBUPicked.GroupFormat.FormatString = "#,###";
     this.colBUPicked.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colBUPicked.Name = "colBUPicked";
     this.colBUPicked.OptionsColumn.AllowEdit = false;
     this.colBUPicked.OptionsColumn.AllowFocus = false;
     this.colBUPicked.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsColumn.AllowIncrementalSearch = false;
     this.colBUPicked.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsColumn.AllowMove = false;
     this.colBUPicked.OptionsColumn.AllowShowHide = false;
     this.colBUPicked.OptionsColumn.AllowSize = false;
     this.colBUPicked.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsFilter.AllowAutoFilter = false;
     this.colBUPicked.OptionsFilter.AllowFilter = false;
     this.colBUPicked.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colBUPicked.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum)});
     this.colBUPicked.Width = 102;
     //
     // gridColumn47
     //
     this.gridColumn47.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn47.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn47.Caption = "Location";
     this.gridColumn47.FieldName = "PalletLocation";
     this.gridColumn47.Name = "gridColumn47";
     this.gridColumn47.OptionsColumn.AllowEdit = false;
     this.gridColumn47.OptionsColumn.AllowFocus = false;
     this.gridColumn47.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn47.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsColumn.AllowMove = false;
     this.gridColumn47.OptionsColumn.AllowShowHide = false;
     this.gridColumn47.OptionsColumn.AllowSize = false;
     this.gridColumn47.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn47.OptionsFilter.AllowFilter = false;
     this.gridColumn47.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn47.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.Visible = true;
     this.gridColumn47.VisibleIndex = 3;
     this.gridColumn47.Width = 100;
     //
     // colCost
     //
     this.colCost.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.colCost.AppearanceCell.Options.UseBackColor = true;
     this.colCost.Caption = "Price";
     this.colCost.DisplayFormat.FormatString = "#,##0.#0";
     this.colCost.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colCost.FieldName = "Cost";
     this.colCost.GroupFormat.FormatString = "#,###.##";
     this.colCost.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colCost.Name = "colCost";
     this.colCost.OptionsColumn.AllowEdit = false;
     this.colCost.OptionsColumn.AllowFocus = false;
     this.colCost.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsColumn.AllowIncrementalSearch = false;
     this.colCost.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsColumn.AllowMove = false;
     this.colCost.OptionsColumn.AllowShowHide = false;
     this.colCost.OptionsColumn.AllowSize = false;
     this.colCost.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsFilter.AllowAutoFilter = false;
     this.colCost.OptionsFilter.AllowFilter = false;
     this.colCost.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colCost.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Cost", "{0:#,###.##}")});
     this.colCost.Visible = true;
     this.colCost.VisibleIndex = 7;
     this.colCost.Width = 85;
     //
     // gridColumn60
     //
     this.gridColumn60.Caption = "Units";
     this.gridColumn60.FieldName = "SKUBU";
     this.gridColumn60.Name = "gridColumn60";
     this.gridColumn60.OptionsColumn.AllowEdit = false;
     this.gridColumn60.OptionsColumn.AllowFocus = false;
     this.gridColumn60.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn60.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn60.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn60.OptionsColumn.AllowMove = false;
     this.gridColumn60.OptionsColumn.AllowShowHide = false;
     this.gridColumn60.OptionsColumn.AllowSize = false;
     this.gridColumn60.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn60.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn60.OptionsFilter.AllowFilter = false;
     this.gridColumn60.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn60.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn60.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn60.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColumn62
     //
     this.gridColumn62.Caption = "Unit Price";
     this.gridColumn62.DisplayFormat.FormatString = "#,##0.#0";
     this.gridColumn62.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn62.FieldName = "UnitPrice";
     this.gridColumn62.Name = "gridColumn62";
     this.gridColumn62.OptionsColumn.AllowEdit = false;
     this.gridColumn62.OptionsColumn.AllowFocus = false;
     this.gridColumn62.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn62.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.OptionsColumn.AllowMove = false;
     this.gridColumn62.OptionsColumn.AllowShowHide = false;
     this.gridColumn62.OptionsColumn.AllowSize = false;
     this.gridColumn62.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn62.OptionsFilter.AllowFilter = false;
     this.gridColumn62.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn62.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.Visible = true;
     this.gridColumn62.VisibleIndex = 6;
     //
     // gridColumn50
     //
     this.gridColumn50.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn50.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn50.Caption = "Packs to Pick";
     this.gridColumn50.FieldName = "Packs";
     this.gridColumn50.Name = "gridColumn50";
     this.gridColumn50.OptionsColumn.AllowEdit = false;
     this.gridColumn50.OptionsColumn.AllowFocus = false;
     this.gridColumn50.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn50.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.OptionsColumn.AllowMove = false;
     this.gridColumn50.OptionsColumn.AllowShowHide = false;
     this.gridColumn50.OptionsColumn.AllowSize = false;
     this.gridColumn50.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn50.OptionsFilter.AllowFilter = false;
     this.gridColumn50.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn50.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.Width = 77;
     //
     // txtIssuedBy
     //
     this.txtIssuedBy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.txtIssuedBy.Enabled = false;
     this.txtIssuedBy.Location = new System.Drawing.Point(609, 124);
     this.txtIssuedBy.Name = "txtIssuedBy";
     this.txtIssuedBy.Size = new System.Drawing.Size(53, 20);
     this.txtIssuedBy.StyleController = this.layoutControl3;
     this.txtIssuedBy.TabIndex = 31;
     //
     // lkMode
     //
     this.lkMode.EditValue = "Select Mode";
     this.lkMode.Location = new System.Drawing.Point(50, 36);
     this.lkMode.Name = "lkMode";
     this.lkMode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkMode.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TypeName", "Name")});
     this.lkMode.Properties.DisplayMember = "TypeName";
     this.lkMode.Properties.PopupSizeable = false;
     this.lkMode.Properties.ShowFooter = false;
     this.lkMode.Properties.ShowHeader = false;
     this.lkMode.Properties.ValueMember = "ID";
     this.lkMode.Size = new System.Drawing.Size(243, 20);
     this.lkMode.StyleController = this.layoutControl3;
     this.lkMode.TabIndex = 46;
     this.lkMode.EditValueChanged += new System.EventHandler(this.lkMode_EditValueChanged);
     //
     // lkPaymentType
     //
     this.lkPaymentType.EditValue = "Select Payment Type";
     this.lkPaymentType.Enabled = false;
     this.lkPaymentType.Location = new System.Drawing.Point(867, 30);
     this.lkPaymentType.Margin = new System.Windows.Forms.Padding(0);
     this.lkPaymentType.Name = "lkPaymentType";
     this.lkPaymentType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkPaymentType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkPaymentType.Properties.DisplayMember = "Name";
     this.lkPaymentType.Properties.PopupSizeable = false;
     this.lkPaymentType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lkPaymentType.Properties.ValueMember = "ID";
     this.lkPaymentType.Size = new System.Drawing.Size(127, 20);
     this.lkPaymentType.StyleController = this.layoutControl3;
     this.lkPaymentType.TabIndex = 38;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.dxValidationProvider1.SetValidationRule(this.lkPaymentType, conditionValidationRule1);
     this.lkPaymentType.EditValueChanged += new System.EventHandler(this.lkPaymentType_EditValueChanged);
     this.lkPaymentType.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.cboCashCredit_EditValueChanging);
     //
     // layoutControlItem18
     //
     this.layoutControlItem18.CustomizationFormText = "layoutControlItem18";
     this.layoutControlItem18.Location = new System.Drawing.Point(387, 72);
     this.layoutControlItem18.Name = "layoutControlItem18";
     this.layoutControlItem18.Size = new System.Drawing.Size(330, 24);
     this.layoutControlItem18.Text = "layoutControlItem18";
     this.layoutControlItem18.TextSize = new System.Drawing.Size(100, 0);
     this.layoutControlItem18.TextToControlDistance = 0;
     this.layoutControlItem18.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // tabbedControlGroup1
     //
     this.tabbedControlGroup1.CustomizationFormText = "tabbedControlGroup1";
     this.tabbedControlGroup1.Location = new System.Drawing.Point(421, 241);
     this.tabbedControlGroup1.Name = "tabbedControlGroup1";
     this.tabbedControlGroup1.SelectedTabPage = this.layoutControlGroup11;
     this.tabbedControlGroup1.SelectedTabPageIndex = 0;
     this.tabbedControlGroup1.Size = new System.Drawing.Size(148, 132);
     this.tabbedControlGroup1.TabPages.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup11});
     this.tabbedControlGroup1.Text = "tabbedControlGroup1";
     //
     // layoutControlGroup11
     //
     this.layoutControlGroup11.CustomizationFormText = "layoutControlGroup11";
     this.layoutControlGroup11.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup11.Name = "layoutControlGroup11";
     this.layoutControlGroup11.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup11.Size = new System.Drawing.Size(124, 86);
     this.layoutControlGroup11.Text = "layoutControlGroup11";
     //
     // layoutControlItem26
     //
     this.layoutControlItem26.Control = this.txtConfirmFromStore;
     this.layoutControlItem26.CustomizationFormText = "layoutControlItem26";
     this.layoutControlItem26.Location = new System.Drawing.Point(189, 50);
     this.layoutControlItem26.Name = "layoutControlItem26";
     this.layoutControlItem26.Size = new System.Drawing.Size(310, 24);
     this.layoutControlItem26.Text = "From Store";
     this.layoutControlItem26.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem26.TextToControlDistance = 5;
     //
     // layoutControlItem25
     //
     this.layoutControlItem25.Control = this.txtConfirmRequestedBy;
     this.layoutControlItem25.CustomizationFormText = "layoutControlItem25";
     this.layoutControlItem25.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem25.Name = "layoutControlItem25";
     this.layoutControlItem25.Size = new System.Drawing.Size(326, 24);
     this.layoutControlItem25.Text = "Requested By";
     this.layoutControlItem25.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem25.TextToControlDistance = 5;
     //
     // layoutControlItem20
     //
     this.layoutControlItem20.Control = this.txtConfirmOrderNumber;
     this.layoutControlItem20.CustomizationFormText = "Order Number";
     this.layoutControlItem20.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem20.Name = "layoutControlItem20";
     this.layoutControlItem20.Size = new System.Drawing.Size(326, 24);
     this.layoutControlItem20.Text = "Order Number";
     this.layoutControlItem20.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem20.TextToControlDistance = 5;
     //
     // layoutControlItem17
     //
     this.layoutControlItem17.Control = this.txtIssueRefNo;
     this.layoutControlItem17.CustomizationFormText = "Ref. No";
     this.layoutControlItem17.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem17.Name = "layoutControlItem17";
     this.layoutControlItem17.Size = new System.Drawing.Size(159, 24);
     this.layoutControlItem17.Text = "Ref. No:";
     this.layoutControlItem17.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem17.TextToControlDistance = 5;
     //
     // layoutControlItem21
     //
     this.layoutControlItem21.Control = this.txtIssuedBy;
     this.layoutControlItem21.CustomizationFormText = "Issued By";
     this.layoutControlItem21.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem21.Name = "layoutControlItem21";
     this.layoutControlItem21.Size = new System.Drawing.Size(144, 24);
     this.layoutControlItem21.Text = "Issued By";
     this.layoutControlItem21.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem21.TextToControlDistance = 5;
     //
     // layoutControlItem27
     //
     this.layoutControlItem27.Control = this.txtConfirmApprovedBy;
     this.layoutControlItem27.CustomizationFormText = "Approved By";
     this.layoutControlItem27.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem27.Name = "layoutControlItem27";
     this.layoutControlItem27.Size = new System.Drawing.Size(158, 24);
     this.layoutControlItem27.Text = "Approved By";
     this.layoutControlItem27.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem27.TextToControlDistance = 5;
     //
     // layoutControlItem22
     //
     this.layoutControlItem22.Control = this.txtRemarks;
     this.layoutControlItem22.CustomizationFormText = "Remarks";
     this.layoutControlItem22.Location = new System.Drawing.Point(257, 443);
     this.layoutControlItem22.Name = "layoutControlItem22";
     this.layoutControlItem22.Size = new System.Drawing.Size(321, 128);
     this.layoutControlItem22.Text = "Remarks";
     this.layoutControlItem22.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem22.TextToControlDistance = 5;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.lkPaymentType;
     this.layoutControlItem1.CustomizationFormText = "Payment Type";
     this.layoutControlItem1.Location = new System.Drawing.Point(468, 0);
     this.layoutControlItem1.MinSize = new System.Drawing.Size(128, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(205, 24);
     this.layoutControlItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem1.Text = "Payment Type";
     this.layoutControlItem1.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(69, 13);
     this.layoutControlItem1.TextToControlDistance = 5;
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem12.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem12.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem12.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem12.Control = this.lblApprovedDate;
     this.layoutControlItem12.CustomizationFormText = "Approved Date:";
     this.layoutControlItem12.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem12.MaxSize = new System.Drawing.Size(188, 20);
     this.layoutControlItem12.MinSize = new System.Drawing.Size(188, 20);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Size = new System.Drawing.Size(188, 20);
     this.layoutControlItem12.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem12.Text = "Approved Date:";
     this.layoutControlItem12.TextSize = new System.Drawing.Size(121, 13);
     this.layoutControlItem12.TextToControlDistance = 5;
     //
     // layoutControlItem15
     //
     this.layoutControlItem15.Control = this.dtIssuedDate;
     this.layoutControlItem15.CustomizationFormText = "Issued Date";
     this.layoutControlItem15.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem15.MinSize = new System.Drawing.Size(186, 24);
     this.layoutControlItem15.Name = "layoutControlItem15";
     this.layoutControlItem15.Size = new System.Drawing.Size(187, 40);
     this.layoutControlItem15.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem15.Text = "Issued Date";
     this.layoutControlItem15.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem15.TextSize = new System.Drawing.Size(58, 13);
     this.layoutControlItem15.TextToControlDistance = 5;
     //
     // layoutControlGroup7
     //
     this.layoutControlGroup7.CustomizationFormText = "layoutControlGroup7";
     this.layoutControlGroup7.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup7.GroupBordersVisible = false;
     this.layoutControlGroup7.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup12,
     this.layoutControlGroup13,
     this.layoutControlItem42,
     this.layoutControlItem43,
     this.layoutSupplimentaryOrder,
     this.lcOutstandingPicklists,
     this.layoutControlItem3,
     this.emptySpaceItem2,
     this.emptySpaceItem3});
     this.layoutControlGroup7.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup7.Name = "Root";
     this.layoutControlGroup7.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup7.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutControlGroup7.Size = new System.Drawing.Size(1123, 575);
     this.layoutControlGroup7.Text = "Root";
     this.layoutControlGroup7.TextVisible = false;
     //
     // layoutControlGroup12
     //
     this.layoutControlGroup12.CustomizationFormText = "Order Headers";
     this.layoutControlGroup12.GroupBordersVisible = false;
     this.layoutControlGroup12.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.HeaderSection,
     this.layoutControlGroup2,
     this.layoutControlGroup3,
     this.layoutControlGroup4,
     this.layoutControlGroup1});
     this.layoutControlGroup12.Location = new System.Drawing.Point(314, 0);
     this.layoutControlGroup12.Name = "layoutControlGroup12";
     this.layoutControlGroup12.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup12.Size = new System.Drawing.Size(805, 147);
     this.layoutControlGroup12.Text = "Order Headers";
     //
     // HeaderSection
     //
     this.HeaderSection.AppearanceGroup.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.HeaderSection.AppearanceGroup.Options.UseFont = true;
     this.HeaderSection.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.HeaderSection.AppearanceItemCaption.Options.UseFont = true;
     this.HeaderSection.CustomizationFormText = " ";
     this.HeaderSection.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem6,
     this.layoutControlItem7,
     this.layoutControlItem8,
     this.layoutControlItem9,
     this.layoutControlItem10,
     this.layoutControlItem23,
     this.layoutControlItem11,
     this.layoutControlItem13});
     this.HeaderSection.Location = new System.Drawing.Point(0, 0);
     this.HeaderSection.Name = "HeaderSection";
     this.HeaderSection.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.HeaderSection.Size = new System.Drawing.Size(805, 93);
     this.HeaderSection.Text = " ";
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem6.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem6.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem6.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem6.Control = this.lblMode;
     this.layoutControlItem6.CustomizationFormText = "Mode:";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem6.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem6.MinSize = new System.Drawing.Size(51, 20);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(202, 20);
     this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem6.Text = "Mode:";
     this.layoutControlItem6.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem6.TextSize = new System.Drawing.Size(34, 13);
     this.layoutControlItem6.TextToControlDistance = 25;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem7.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem7.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem7.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem7.Control = this.lblOwnership;
     this.layoutControlItem7.CustomizationFormText = "Ownership Type:";
     this.layoutControlItem7.Location = new System.Drawing.Point(202, 0);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(64, 17);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(589, 20);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.Text = "Ownership:";
     this.layoutControlItem7.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(62, 13);
     this.layoutControlItem7.TextToControlDistance = 5;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem8.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem8.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem8.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem8.Control = this.lblWoreda;
     this.layoutControlItem8.CustomizationFormText = "Woreda:";
     this.layoutControlItem8.Location = new System.Drawing.Point(0, 40);
     this.layoutControlItem8.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem8.MinSize = new System.Drawing.Size(51, 20);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(202, 20);
     this.layoutControlItem8.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem8.Text = "Woreda:";
     this.layoutControlItem8.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem8.TextSize = new System.Drawing.Size(47, 13);
     this.layoutControlItem8.TextToControlDistance = 12;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem9.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem9.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem9.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem9.Control = this.lblZone;
     this.layoutControlItem9.CustomizationFormText = "Zone:";
     this.layoutControlItem9.Location = new System.Drawing.Point(202, 40);
     this.layoutControlItem9.MinSize = new System.Drawing.Size(78, 17);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(203, 20);
     this.layoutControlItem9.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem9.Text = "Zone:";
     this.layoutControlItem9.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem9.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem9.TextToControlDistance = 36;
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem10.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem10.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem10.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem10.Control = this.lblRegion;
     this.layoutControlItem10.CustomizationFormText = "Region:";
     this.layoutControlItem10.Location = new System.Drawing.Point(405, 40);
     this.layoutControlItem10.MinSize = new System.Drawing.Size(66, 17);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(386, 20);
     this.layoutControlItem10.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem10.Text = "Region:";
     this.layoutControlItem10.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem10.TextSize = new System.Drawing.Size(42, 13);
     this.layoutControlItem10.TextToControlDistance = 23;
     //
     // layoutControlItem23
     //
     this.layoutControlItem23.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem23.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem23.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem23.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem23.Control = this.lblPaymentType;
     this.layoutControlItem23.CustomizationFormText = "Payment Type:";
     this.layoutControlItem23.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem23.MinSize = new System.Drawing.Size(82, 17);
     this.layoutControlItem23.Name = "layoutControlItem23";
     this.layoutControlItem23.Size = new System.Drawing.Size(202, 20);
     this.layoutControlItem23.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem23.Text = "Payment:";
     this.layoutControlItem23.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem23.TextSize = new System.Drawing.Size(54, 13);
     this.layoutControlItem23.TextToControlDistance = 5;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem11.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem11.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem11.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem11.Control = this.lblInstitutionType;
     this.layoutControlItem11.CustomizationFormText = "Type:";
     this.layoutControlItem11.Location = new System.Drawing.Point(405, 20);
     this.layoutControlItem11.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem11.MinSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(386, 20);
     this.layoutControlItem11.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem11.Text = "Inst. Type:";
     this.layoutControlItem11.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem11.TextSize = new System.Drawing.Size(60, 13);
     this.layoutControlItem11.TextToControlDistance = 5;
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem13.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem13.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem13.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem13.Control = this.lblRefNo;
     this.layoutControlItem13.CustomizationFormText = "Ref. No:";
     this.layoutControlItem13.Location = new System.Drawing.Point(202, 20);
     this.layoutControlItem13.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem13.MinSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(203, 20);
     this.layoutControlItem13.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem13.Text = "Ref. No:";
     this.layoutControlItem13.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem13.TextSize = new System.Drawing.Size(42, 13);
     this.layoutControlItem13.TextToControlDistance = 25;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem24,
     this.layoutControlItem14});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 93);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup2.Size = new System.Drawing.Size(204, 54);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // layoutControlItem24
     //
     this.layoutControlItem24.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem24.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem24.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem24.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem24.Control = this.lblissuedDate;
     this.layoutControlItem24.CustomizationFormText = "Issued Date:";
     this.layoutControlItem24.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem24.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem24.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem24.Name = "layoutControlItem24";
     this.layoutControlItem24.Size = new System.Drawing.Size(190, 20);
     this.layoutControlItem24.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem24.Text = "Requested Date:";
     this.layoutControlItem24.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem24.TextSize = new System.Drawing.Size(94, 13);
     this.layoutControlItem24.TextToControlDistance = 5;
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem14.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem14.Control = this.lblIssuedBy;
     this.layoutControlItem14.CustomizationFormText = "Issued By:";
     this.layoutControlItem14.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem14.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem14.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(190, 20);
     this.layoutControlItem14.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem14.Text = "Requested By:";
     this.layoutControlItem14.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem14.TextSize = new System.Drawing.Size(81, 13);
     this.layoutControlItem14.TextToControlDistance = 18;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem16,
     this.layoutControlItem30});
     this.layoutControlGroup3.Location = new System.Drawing.Point(204, 93);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup3.Size = new System.Drawing.Size(202, 54);
     this.layoutControlGroup3.Text = "layoutControlGroup3";
     this.layoutControlGroup3.TextVisible = false;
     //
     // layoutControlItem16
     //
     this.layoutControlItem16.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem16.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem16.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem16.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem16.Control = this.lblApprovedBy;
     this.layoutControlItem16.CustomizationFormText = "Approved By:";
     this.layoutControlItem16.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem16.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem16.MinSize = new System.Drawing.Size(86, 20);
     this.layoutControlItem16.Name = "layoutControlItem16";
     this.layoutControlItem16.Size = new System.Drawing.Size(188, 20);
     this.layoutControlItem16.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem16.Text = "Approved By:";
     this.layoutControlItem16.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem16.TextSize = new System.Drawing.Size(75, 13);
     this.layoutControlItem16.TextToControlDistance = 18;
     //
     // layoutControlItem30
     //
     this.layoutControlItem30.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem30.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem30.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem30.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem30.Control = this.lblAppDate;
     this.layoutControlItem30.CustomizationFormText = "Approved Date:";
     this.layoutControlItem30.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem30.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem30.Name = "layoutControlItem30";
     this.layoutControlItem30.Size = new System.Drawing.Size(188, 20);
     this.layoutControlItem30.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem30.Text = "Approved Date:";
     this.layoutControlItem30.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem30.TextSize = new System.Drawing.Size(88, 13);
     this.layoutControlItem30.TextToControlDistance = 5;
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "layoutControlGroup4";
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem31,
     this.layoutControlItem32});
     this.layoutControlGroup4.Location = new System.Drawing.Point(406, 93);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup4.Size = new System.Drawing.Size(201, 54);
     this.layoutControlGroup4.Text = "layoutControlGroup4";
     this.layoutControlGroup4.TextVisible = false;
     //
     // layoutControlItem31
     //
     this.layoutControlItem31.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem31.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem31.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem31.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem31.Control = this.lblPicklistConfirmedBy;
     this.layoutControlItem31.CustomizationFormText = "Picklist Confirmed By:";
     this.layoutControlItem31.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem31.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem31.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem31.Name = "layoutControlItem31";
     this.layoutControlItem31.Size = new System.Drawing.Size(187, 20);
     this.layoutControlItem31.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem31.Text = "Picklisted By:";
     this.layoutControlItem31.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem31.TextSize = new System.Drawing.Size(74, 13);
     this.layoutControlItem31.TextToControlDistance = 18;
     //
     // layoutControlItem32
     //
     this.layoutControlItem32.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem32.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem32.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem32.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem32.Control = this.lblPicklistPrintedDate;
     this.layoutControlItem32.CustomizationFormText = "Picklisted Date:";
     this.layoutControlItem32.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem32.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem32.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem32.Name = "layoutControlItem32";
     this.layoutControlItem32.Size = new System.Drawing.Size(187, 20);
     this.layoutControlItem32.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem32.Text = "Picklisted Date:";
     this.layoutControlItem32.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem32.TextSize = new System.Drawing.Size(87, 13);
     this.layoutControlItem32.TextToControlDistance = 5;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem28,
     this.layoutControlItem29});
     this.layoutControlGroup1.Location = new System.Drawing.Point(607, 93);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup1.Size = new System.Drawing.Size(198, 54);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem28
     //
     this.layoutControlItem28.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem28.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem28.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem28.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem28.Control = this.lblIssueTypes;
     this.layoutControlItem28.CustomizationFormText = "Issue Type:";
     this.layoutControlItem28.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem28.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem28.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem28.Name = "layoutControlItem28";
     this.layoutControlItem28.Size = new System.Drawing.Size(184, 20);
     this.layoutControlItem28.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem28.Text = "Type:";
     this.layoutControlItem28.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem28.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem28.TextToControlDistance = 14;
     //
     // layoutControlItem29
     //
     this.layoutControlItem29.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem29.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem29.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem29.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem29.Control = this.lblIssueStatus;
     this.layoutControlItem29.CustomizationFormText = "Issue Status:";
     this.layoutControlItem29.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem29.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem29.Name = "layoutControlItem29";
     this.layoutControlItem29.Size = new System.Drawing.Size(184, 20);
     this.layoutControlItem29.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem29.Text = "Status:";
     this.layoutControlItem29.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem29.TextSize = new System.Drawing.Size(40, 13);
     this.layoutControlItem29.TextToControlDistance = 5;
     //
     // layoutControlGroup13
     //
     this.layoutControlGroup13.CustomizationFormText = "Pick List Confirmation";
     this.layoutControlGroup13.GroupBordersVisible = false;
     this.layoutControlGroup13.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem19,
     this.layoutControlItem4});
     this.layoutControlGroup13.Location = new System.Drawing.Point(314, 147);
     this.layoutControlGroup13.Name = "layoutControlGroup13";
     this.layoutControlGroup13.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup13.Size = new System.Drawing.Size(805, 398);
     this.layoutControlGroup13.Text = "Pick List Confirmation";
     //
     // layoutControlItem19
     //
     this.layoutControlItem19.Control = this.gridOutstandingPicklistDetail;
     this.layoutControlItem19.CustomizationFormText = "layoutControlItem19";
     this.layoutControlItem19.Location = new System.Drawing.Point(0, 23);
     this.layoutControlItem19.Name = "layoutControlItem19";
     this.layoutControlItem19.Size = new System.Drawing.Size(805, 375);
     this.layoutControlItem19.Text = "layoutControlItem19";
     this.layoutControlItem19.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem19.TextToControlDistance = 0;
     this.layoutControlItem19.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.chkIncludeInsurance;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(805, 23);
     this.layoutControlItem4.Text = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible = false;
     //
     // layoutControlItem42
     //
     this.layoutControlItem42.Control = this.btnCancelIssue;
     this.layoutControlItem42.CustomizationFormText = "layoutControlItem42";
     this.layoutControlItem42.Location = new System.Drawing.Point(973, 545);
     this.layoutControlItem42.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem42.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem42.Name = "layoutControlItem42";
     this.layoutControlItem42.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem42.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem42.Text = "layoutControlItem42";
     this.layoutControlItem42.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem42.TextToControlDistance = 0;
     this.layoutControlItem42.TextVisible = false;
     //
     // layoutControlItem43
     //
     this.layoutControlItem43.Control = this.btnConfirmIssue1;
     this.layoutControlItem43.CustomizationFormText = "layoutControlItem43";
     this.layoutControlItem43.Location = new System.Drawing.Point(827, 545);
     this.layoutControlItem43.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem43.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem43.Name = "layoutControlItem43";
     this.layoutControlItem43.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem43.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem43.Text = "layoutControlItem43";
     this.layoutControlItem43.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem43.TextToControlDistance = 0;
     this.layoutControlItem43.TextVisible = false;
     //
     // layoutSupplimentaryOrder
     //
     this.layoutSupplimentaryOrder.Control = this.simpleButton1;
     this.layoutSupplimentaryOrder.CustomizationFormText = "layoutSupplimentaryOrder";
     this.layoutSupplimentaryOrder.Location = new System.Drawing.Point(535, 545);
     this.layoutSupplimentaryOrder.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutSupplimentaryOrder.MinSize = new System.Drawing.Size(146, 26);
     this.layoutSupplimentaryOrder.Name = "layoutSupplimentaryOrder";
     this.layoutSupplimentaryOrder.Size = new System.Drawing.Size(146, 26);
     this.layoutSupplimentaryOrder.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutSupplimentaryOrder.Text = "layoutSupplimentaryOrder";
     this.layoutSupplimentaryOrder.TextSize = new System.Drawing.Size(0, 0);
     this.layoutSupplimentaryOrder.TextToControlDistance = 0;
     this.layoutSupplimentaryOrder.TextVisible = false;
     this.layoutSupplimentaryOrder.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // lcOutstandingPicklists
     //
     this.lcOutstandingPicklists.CustomizationFormText = "Outstanding Pick Lists";
     this.lcOutstandingPicklists.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem50,
     this.layoutControlGroup5,
     this.emptySpaceItem1});
     this.lcOutstandingPicklists.Location = new System.Drawing.Point(0, 0);
     this.lcOutstandingPicklists.Name = "lcOutstandingPicklists";
     this.lcOutstandingPicklists.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.lcOutstandingPicklists.Size = new System.Drawing.Size(306, 571);
     this.lcOutstandingPicklists.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.lcOutstandingPicklists.Text = "Outstanding Pick Lists";
     this.lcOutstandingPicklists.TextLocation = DevExpress.Utils.Locations.Left;
     this.lcOutstandingPicklists.TextVisible = false;
     //
     // layoutControlItem50
     //
     this.layoutControlItem50.Control = this.gridOutstandingPickLists;
     this.layoutControlItem50.CustomizationFormText = "layoutControlItem50";
     this.layoutControlItem50.Location = new System.Drawing.Point(0, 93);
     this.layoutControlItem50.MaxSize = new System.Drawing.Size(304, 0);
     this.layoutControlItem50.MinSize = new System.Drawing.Size(304, 24);
     this.layoutControlItem50.Name = "layoutControlItem50";
     this.layoutControlItem50.Size = new System.Drawing.Size(304, 452);
     this.layoutControlItem50.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem50.Text = "layoutControlItem50";
     this.layoutControlItem50.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem50.TextToControlDistance = 0;
     this.layoutControlItem50.TextVisible = false;
     //
     // layoutControlGroup5
     //
     this.layoutControlGroup5.CustomizationFormText = "Filter";
     this.layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem2,
     this.layoutControlItem5});
     this.layoutControlGroup5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup5.Name = "layoutControlGroup5";
     this.layoutControlGroup5.Size = new System.Drawing.Size(304, 93);
     this.layoutControlGroup5.Text = "Filter";
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.txtFacilityNameFilter;
     this.layoutControlItem2.ControlAlignment = System.Drawing.ContentAlignment.BottomLeft;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(300, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(236, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(280, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Filter:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(28, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.lkMode;
     this.layoutControlItem5.CustomizationFormText = "Mode";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem5.MinSize = new System.Drawing.Size(85, 20);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(280, 26);
     this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem5.Text = "Mode:";
     this.layoutControlItem5.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem5.TextToControlDistance = 3;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 545);
     this.emptySpaceItem1.MaxSize = new System.Drawing.Size(0, 24);
     this.emptySpaceItem1.MinSize = new System.Drawing.Size(104, 24);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(304, 24);
     this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnReturnToApprovalStep;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(681, 545);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible = false;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(314, 545);
     this.emptySpaceItem2.MaxSize = new System.Drawing.Size(0, 26);
     this.emptySpaceItem2.MinSize = new System.Drawing.Size(10, 26);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(221, 26);
     this.emptySpaceItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(306, 0);
     this.emptySpaceItem3.MaxSize = new System.Drawing.Size(8, 0);
     this.emptySpaceItem3.MinSize = new System.Drawing.Size(8, 10);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(8, 571);
     this.emptySpaceItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // popupMenu1
     //
     this.popupMenu1.Name = "popupMenu1";
     //
     // emptySpaceItem15
     //
     this.emptySpaceItem15.AllowHotTrack = false;
     this.emptySpaceItem15.CustomizationFormText = "emptySpaceItem15";
     this.emptySpaceItem15.Location = new System.Drawing.Point(0, 116);
     this.emptySpaceItem15.Name = "emptySpaceItem15";
     this.emptySpaceItem15.Size = new System.Drawing.Size(717, 10);
     this.emptySpaceItem15.Text = "emptySpaceItem15";
     this.emptySpaceItem15.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup8
     //
     this.layoutControlGroup8.CustomizationFormText = "layoutControlGroup8";
     this.layoutControlGroup8.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup8.Name = "layoutControlGroup8";
     this.layoutControlGroup8.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup8.Size = new System.Drawing.Size(717, 116);
     this.layoutControlGroup8.Text = "layoutControlGroup8";
     //
     // layoutControlGroup9
     //
     this.layoutControlGroup9.CustomizationFormText = "layoutControlGroup9";
     this.layoutControlGroup9.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup9.Name = "layoutControlGroup9";
     this.layoutControlGroup9.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup9.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup9.Text = "layoutControlGroup9";
     //
     // layoutControlGroup10
     //
     this.layoutControlGroup10.CustomizationFormText = "layoutControlGroup10";
     this.layoutControlGroup10.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup10.Name = "layoutControlGroup10";
     this.layoutControlGroup10.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup10.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup10.Text = "layoutControlGroup10";
     //
     // emptySpaceItem10
     //
     this.emptySpaceItem10.AllowHotTrack = false;
     this.emptySpaceItem10.CustomizationFormText = "emptySpaceItem10";
     this.emptySpaceItem10.Location = new System.Drawing.Point(0, 0);
     this.emptySpaceItem10.Name = "emptySpaceItem10";
     this.emptySpaceItem10.Size = new System.Drawing.Size(693, 10);
     this.emptySpaceItem10.Text = "emptySpaceItem10";
     this.emptySpaceItem10.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem22
     //
     this.emptySpaceItem22.AllowHotTrack = false;
     this.emptySpaceItem22.CustomizationFormText = "emptySpaceItem22";
     this.emptySpaceItem22.Location = new System.Drawing.Point(85, 0);
     this.emptySpaceItem22.Name = "emptySpaceItem22";
     this.emptySpaceItem22.Size = new System.Drawing.Size(119, 479);
     this.emptySpaceItem22.Text = "emptySpaceItem22";
     this.emptySpaceItem22.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem23
     //
     this.emptySpaceItem23.AllowHotTrack = false;
     this.emptySpaceItem23.CustomizationFormText = "emptySpaceItem23";
     this.emptySpaceItem23.Location = new System.Drawing.Point(1179, 24);
     this.emptySpaceItem23.Name = "emptySpaceItem23";
     this.emptySpaceItem23.Size = new System.Drawing.Size(10, 455);
     this.emptySpaceItem23.Text = "emptySpaceItem23";
     this.emptySpaceItem23.TextSize = new System.Drawing.Size(0, 0);
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
     this.printableComponentLink1,
     this.printOrder});
     //
     // printableComponentLink1
     //
     this.printableComponentLink1.Landscape = true;
     this.printableComponentLink1.Margins = new System.Drawing.Printing.Margins(20, 20, 20, 20);
     this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(null, new DevExpress.XtraPrinting.PageFooterArea(new string[] {
         "[Time Printed]",
         "[Date Printed]",
         "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))), DevExpress.XtraPrinting.BrickAlignment.Near));
     this.printableComponentLink1.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printableComponentLink1.PrintingSystemBase = this.printingSystem1;
     this.printableComponentLink1.RtfReportHeader = resources.GetString("printableComponentLink1.RtfReportHeader");
     //
     // printOrder
     //
     this.printOrder.Landscape = true;
     this.printOrder.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printOrder.PrintingSystemBase = this.printingSystem1;
     //
     // InvoiceForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1123, 575);
     this.Controls.Add(this.layoutControl3);
     this.Name = "InvoiceForm";
     this.Text = "Order";
     this.Load += new System.EventHandler(this.OrderForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl3)).EndInit();
     this.layoutControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chkIncludeInsurance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFacilityNameFilter.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPickLists)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPickListView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmOrderNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmApprovedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmFromStore.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmRequestedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIssueRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPicklistDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewConfirmation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIssuedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkMode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPaymentType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabbedControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderSection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem42)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem43)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutSupplimentaryOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcOutstandingPicklists)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem50)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     this.ResumeLayout(false);
 }
        private void LstTreeFocusedNodeChanged(object sender, DevExpress.XtraTreeList.FocusedNodeChangedEventArgs e)
        {
            DateTime dt1 = new DateTime();
            DateTime dt2 = new DateTime();
            CalendarLib.DateTimePickerEx dtDate = new CalendarLib.DateTimePickerEx();
            dtDate.CustomFormat = "MM/dd/yyyy";
            dtDate.Value = DateTimeHelper.ServerDateTime;
            DateTime dtCurrent = ConvertDate.DateConverter(dtDate.Text);

            DataRowView dr = (DataRowView)lstTree.GetDataRecordByNode(lstTree.FocusedNode);

            if (dr != null)
            {

                LossAndAdjustment disp = new LossAndAdjustment();
                DataTable dtRec = new DataTable();
                if (dr["ParentID"] == DBNull.Value)
                {
                    int yr = ((dtCurrent.Month > 10) ? dtCurrent.Year : dtCurrent.Year - 1);
                    dt1 = new DateTime(Convert.ToInt32(dr["ID"]) - 1, 11, 1);
                    dt2 = new DateTime(Convert.ToInt32(dr["ID"]), 11, 1);
                    dtRec = disp.GetTransactionByDateRange(Convert.ToInt32(lkActivity.EditValue), dt1, dt2);
                    string dateString = dr["RefNo"].ToString();
                    lblAdjDate.Text = dateString;
                }
                else
                {
                    dtRec = disp.GetDocumentByRefNo(dr["RefNo"].ToString(), Convert.ToInt32(lkActivity.EditValue), dr["Date"].ToString());
                    lblAdjDate.Text = Convert.ToDateTime(dr["Date"]).ToString("MM dd,yyyy");
                }
                gridAdjustments.DataSource = dtRec;
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LogAdjustment));
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.detailToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.detailToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.dtTo = new CalendarLib.DateTimePickerEx();
     this.dtFrom = new CalendarLib.DateTimePickerEx();
     this.cboReasons = new DevExpress.XtraEditors.LookUpEdit();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.lstTree = new DevExpress.XtraTreeList.TreeList();
     this.colRefNo = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.gridAdjustments = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.button1 = new DevExpress.XtraEditors.SimpleButton();
     this.btnPrint = new DevExpress.XtraEditors.SimpleButton();
     this.lblAdjDate = new System.Windows.Forms.Label();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.simpleLabelItem1 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem6 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lkActivity = new DevExpress.XtraEditors.GridLookUpEdit();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboReasons.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lstTree)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridAdjustments)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkActivity.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     this.SuspendLayout();
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.detailToolStripMenuItem,
     this.detailToolStripMenuItem1});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(107, 48);
     this.contextMenuStrip1.Text = "conTran";
     //
     // detailToolStripMenuItem
     //
     this.detailToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("detailToolStripMenuItem.Image")));
     this.detailToolStripMenuItem.Name = "detailToolStripMenuItem";
     this.detailToolStripMenuItem.Size = new System.Drawing.Size(106, 22);
     this.detailToolStripMenuItem.Text = "detail";
     //
     // detailToolStripMenuItem1
     //
     this.detailToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("detailToolStripMenuItem1.Image")));
     this.detailToolStripMenuItem1.Name = "detailToolStripMenuItem1";
     this.detailToolStripMenuItem1.Size = new System.Drawing.Size(106, 22);
     this.detailToolStripMenuItem1.Text = "delete";
     //
     // dtTo
     //
     this.dtTo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.dtTo.CalendarFont = new System.Drawing.Font("Nyala", 17.75F);
     this.dtTo.CalendarForeColor = System.Drawing.Color.Black;
     this.dtTo.DayOfWeekCharacters = 2;
     this.dtTo.ForeColor = System.Drawing.Color.Black;
     this.dtTo.Location = new System.Drawing.Point(1011, 59);
     this.dtTo.Name = "dtTo";
     this.dtTo.PopUpFontSize = 6.75F;
     this.dtTo.Size = new System.Drawing.Size(146, 20);
     this.dtTo.TabIndex = 12;
     this.dtTo.Value = new System.DateTime(2011, 7, 3, 0, 0, 0, 0);
     this.dtTo.ValueChanged += new System.EventHandler(this.dtTo_ValueChanged);
     //
     // dtFrom
     //
     this.dtFrom.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.dtFrom.CalendarFont = new System.Drawing.Font("Nyala", 17.75F);
     this.dtFrom.CalendarForeColor = System.Drawing.Color.Black;
     this.dtFrom.DayOfWeekCharacters = 2;
     this.dtFrom.ForeColor = System.Drawing.Color.Black;
     this.dtFrom.Location = new System.Drawing.Point(1011, 34);
     this.dtFrom.Name = "dtFrom";
     this.dtFrom.PopUpFontSize = 6.75F;
     this.dtFrom.Size = new System.Drawing.Size(146, 21);
     this.dtFrom.TabIndex = 12;
     this.dtFrom.Value = new System.DateTime(2011, 7, 3, 0, 0, 0, 0);
     this.dtFrom.ValueChanged += new System.EventHandler(this.dtTo_ValueChanged);
     //
     // cboReasons
     //
     this.cboReasons.Location = new System.Drawing.Point(428, 58);
     this.cboReasons.Name = "cboReasons";
     this.cboReasons.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboReasons.Properties.DisplayMember = "Reason";
     this.cboReasons.Properties.DropDownRows = 4;
     this.cboReasons.Properties.NullText = "Select Adjustment Reason";
     this.cboReasons.Properties.ValueMember = "ID";
     this.cboReasons.Size = new System.Drawing.Size(222, 20);
     this.cboReasons.StyleController = this.layoutControl1;
     this.cboReasons.TabIndex = 0;
     this.cboReasons.EditValueChanged += new System.EventHandler(this.cboReasons_EditValueChanged);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.lkActivity);
     this.layoutControl1.Controls.Add(this.lstTree);
     this.layoutControl1.Controls.Add(this.gridAdjustments);
     this.layoutControl1.Controls.Add(this.dtTo);
     this.layoutControl1.Controls.Add(this.cboReasons);
     this.layoutControl1.Controls.Add(this.dtFrom);
     this.layoutControl1.Controls.Add(this.button1);
     this.layoutControl1.Controls.Add(this.btnPrint);
     this.layoutControl1.Controls.Add(this.lblAdjDate);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1172, 625);
     this.layoutControl1.TabIndex = 33;
     this.layoutControl1.Text = "layoutControl1";
     //
     // lstTree
     //
     this.lstTree.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.colRefNo,
     this.treeListColumn2});
     this.lstTree.Location = new System.Drawing.Point(10, 29);
     this.lstTree.Name = "lstTree";
     this.lstTree.OptionsBehavior.Editable = false;
     this.lstTree.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.lstTree.OptionsView.ShowIndicator = false;
     this.lstTree.PreviewFieldName = "RefNo";
     this.lstTree.RootValue = null;
     this.lstTree.Size = new System.Drawing.Size(290, 586);
     this.lstTree.TabIndex = 34;
     this.lstTree.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.LstTreeFocusedNodeChanged);
     //
     // colRefNo
     //
     this.colRefNo.Caption = "Ref No";
     this.colRefNo.FieldName = "RefNo";
     this.colRefNo.Name = "colRefNo";
     this.colRefNo.Visible = true;
     this.colRefNo.VisibleIndex = 0;
     this.colRefNo.Width = 149;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "Date";
     this.treeListColumn2.FieldName = "Date";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.Visible = true;
     this.treeListColumn2.VisibleIndex = 1;
     this.treeListColumn2.Width = 90;
     //
     // gridAdjustments
     //
     this.gridAdjustments.Location = new System.Drawing.Point(315, 83);
     this.gridAdjustments.MainView = this.gridView1;
     this.gridAdjustments.Name = "gridAdjustments";
     this.gridAdjustments.Size = new System.Drawing.Size(842, 501);
     this.gridAdjustments.TabIndex = 33;
     this.gridAdjustments.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8});
     this.gridView1.GridControl = this.gridAdjustments;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowFooter = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "No";
     this.gridColumn1.FieldName = "RowNo";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 35;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Date";
     this.gridColumn2.FieldName = "Date";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 73;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Item Name";
     this.gridColumn3.FieldName = "FullItemName";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 311;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Batch No";
     this.gridColumn4.FieldName = "BatchNo";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width = 98;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Qty";
     this.gridColumn5.DisplayFormat.FormatString = "#,##0";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn5.FieldName = "Quantity";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "QuantityDetail", "{0:#,##0}")});
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 84;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Total Price";
     this.gridColumn6.DisplayFormat.FormatString = "#,##0.#0";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "Cost";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "gridColumn6", "{0:#,##0.#0}")});
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 97;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Reason";
     this.gridColumn7.FieldName = "Reason";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 105;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Approved By";
     this.gridColumn8.FieldName = "ApprovedBy";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Width = 87;
     //
     // button1
     //
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Image = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
     this.button1.Location = new System.Drawing.Point(929, 588);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(111, 22);
     this.button1.StyleController = this.layoutControl1;
     this.button1.TabIndex = 23;
     this.button1.Text = "Export";
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // btnPrint
     //
     this.btnPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrint.Image = ((System.Drawing.Image)(resources.GetObject("btnPrint.Image")));
     this.btnPrint.Location = new System.Drawing.Point(1044, 588);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(113, 22);
     this.btnPrint.StyleController = this.layoutControl1;
     this.btnPrint.TabIndex = 32;
     this.btnPrint.Text = "Print";
     this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
     //
     // lblAdjDate
     //
     this.lblAdjDate.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAdjDate.Location = new System.Drawing.Point(665, 59);
     this.lblAdjDate.Name = "lblAdjDate";
     this.lblAdjDate.Size = new System.Drawing.Size(218, 20);
     this.lblAdjDate.TabIndex = 30;
     this.lblAdjDate.Text = "Upto Date";
     this.lblAdjDate.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "Root";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1172, 625);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup3,
     this.layoutControlGroup4});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutControlGroup2.Size = new System.Drawing.Size(1172, 625);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "Reference Numbers";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem10});
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup3.Size = new System.Drawing.Size(300, 615);
     this.layoutControlGroup3.Text = "Reference Numbers";
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.Control = this.lstTree;
     this.layoutControlItem10.CustomizationFormText = "layoutControlItem10";
     this.layoutControlItem10.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(294, 590);
     this.layoutControlItem10.Text = "layoutControlItem10";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem10.TextToControlDistance = 0;
     this.layoutControlItem10.TextVisible = false;
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "Items";
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem6,
     this.emptySpaceItem1,
     this.simpleLabelItem1,
     this.emptySpaceItem4,
     this.layoutControlItem3,
     this.layoutControlItem2,
     this.layoutControlItem4,
     this.layoutControlItem9,
     this.emptySpaceItem6,
     this.layoutControlItem7,
     this.layoutControlItem5,
     this.layoutControlItem1});
     this.layoutControlGroup4.Location = new System.Drawing.Point(300, 0);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.Padding = new DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5);
     this.layoutControlGroup4.Size = new System.Drawing.Size(862, 615);
     this.layoutControlGroup4.Text = "Items";
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnPrint;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(729, 554);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(117, 26);
     this.layoutControlItem6.Text = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(339, 0);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(11, 49);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // simpleLabelItem1
     //
     this.simpleLabelItem1.AllowHotTrack = false;
     this.simpleLabelItem1.CustomizationFormText = "Adjustments Made On:";
     this.simpleLabelItem1.Location = new System.Drawing.Point(350, 0);
     this.simpleLabelItem1.MaxSize = new System.Drawing.Size(222, 32);
     this.simpleLabelItem1.MinSize = new System.Drawing.Size(222, 25);
     this.simpleLabelItem1.Name = "simpleLabelItem1";
     this.simpleLabelItem1.Size = new System.Drawing.Size(222, 25);
     this.simpleLabelItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.simpleLabelItem1.Text = "Adjustments Made On:";
     this.simpleLabelItem1.TextSize = new System.Drawing.Size(110, 13);
     //
     // emptySpaceItem4
     //
     this.emptySpaceItem4.AllowHotTrack = false;
     this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4";
     this.emptySpaceItem4.Location = new System.Drawing.Point(572, 0);
     this.emptySpaceItem4.Name = "emptySpaceItem4";
     this.emptySpaceItem4.Size = new System.Drawing.Size(11, 49);
     this.emptySpaceItem4.Text = "emptySpaceItem4";
     this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.dtFrom;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(583, 0);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(263, 25);
     this.layoutControlItem3.Text = "From";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(110, 13);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cboReasons;
     this.layoutControlItem2.CustomizationFormText = "Adjustment Reason";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(339, 25);
     this.layoutControlItem2.Text = "Adjustment Reason";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(110, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.dtTo;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(583, 25);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(263, 24);
     this.layoutControlItem4.Text = "To";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(110, 13);
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.gridAdjustments;
     this.layoutControlItem9.CustomizationFormText = "layoutControlItem9";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 49);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(846, 505);
     this.layoutControlItem9.Text = "layoutControlItem9";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem9.TextToControlDistance = 0;
     this.layoutControlItem9.TextVisible = false;
     //
     // emptySpaceItem6
     //
     this.emptySpaceItem6.AllowHotTrack = false;
     this.emptySpaceItem6.CustomizationFormText = "emptySpaceItem6";
     this.emptySpaceItem6.Location = new System.Drawing.Point(0, 554);
     this.emptySpaceItem6.Name = "emptySpaceItem6";
     this.emptySpaceItem6.Size = new System.Drawing.Size(614, 26);
     this.emptySpaceItem6.Text = "emptySpaceItem6";
     this.emptySpaceItem6.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.button1;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(614, 554);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(115, 26);
     this.layoutControlItem7.Text = "layoutControlItem7";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.lblAdjDate;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(350, 25);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(222, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // lkActivity
     //
     this.lkActivity.Location = new System.Drawing.Point(428, 34);
     this.lkActivity.Name = "lkActivity";
     this.lkActivity.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkActivity.Properties.View = this.gridLookUpEdit1View;
     this.lkActivity.Size = new System.Drawing.Size(222, 20);
     this.lkActivity.StyleController = this.layoutControl1;
     this.lkActivity.TabIndex = 35;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.lkActivity;
     this.layoutControlItem1.CustomizationFormText = "Activity";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(339, 24);
     this.layoutControlItem1.Text = "Activity";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(110, 13);
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // LogAdjustment
     //
     this.Appearance.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1172, 625);
     this.Controls.Add(this.layoutControl1);
     this.Name = "LogAdjustment";
     this.Text = "Stock Report";
     this.Load += new System.EventHandler(this.ManageItems_Load);
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cboReasons.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lstTree)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridAdjustments)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkActivity.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     this.ResumeLayout(false);
 }
        private void btnCommit_Click(object sender, EventArgs e)
        {
            if (ValidateQuarantine())
            {

                MyGeneration.dOOdads.TransactionMgr transaction = MyGeneration.dOOdads.TransactionMgr.ThreadTransactionMgr();
                transaction.BeginTransaction();
                if (DialogResult.Yes == XtraMessageBox.Show("Are you sure you want to commit the Loss and Adjustment on this screen?", "Confirmation", MessageBoxButtons.YesNo, MessageBoxIcon.Question))
                {
                    // do the actual commit here.
                    int printNubmer = InternalTransfer.GetNewPrintNumber() + 1;
                    PalletLocation pl = new PalletLocation();
                    Pallet p = new Pallet();
                    ReceiveDoc rdoc = new ReceiveDoc();
                    ReceivePallet rp = new ReceivePallet();
                    for (int i = 0; i < gridView1.RowCount; i++)
                    {
                        DataRow dr = gridView1.GetDataRow(i);
                        Double writeoff = 0;
                        Double reLocate = 0;
                        try
                        {
                            if (dr["WriteOff"] != DBNull.Value)
                            {
                                writeoff = Double.Parse(dr["WriteOff"].ToString());
                            }
                            if (dr["ReLocate"] != DBNull.Value)
                            {
                                reLocate = Double.Parse(dr["ReLocate"].ToString());
                            }
                        }
                        catch (Exception exc)
                        {
                        }

                        if(dr["WriteOff"] != DBNull.Value & writeoff>0)
                        {
                            if (Double.Parse(dr["WriteOff"].ToString()) > Double.Parse(dr["Balance"].ToString()))
                            {
                                XtraMessageBox.Show("Couldn't commit to the numbers you specified. Please specify number less than the balance.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                                return;
                            }
                            int writeoffAmout = Convert.ToInt32(dr["WriteOff"]);
                            int qtyPerPack = Convert.ToInt32(dr["QtyPerPack"]);
                            writeoffAmout *= qtyPerPack;
                            rp.LoadByPrimaryKey(Convert.ToInt32(dr["ReceivePalletID"]));
                            rdoc.LoadByPrimaryKey(rp.ReceiveID);
                            string x = dr["NewPalletLocation"].ToString();
                            rp.Balance -= writeoffAmout;
                            try
                            {
                              //  rp.ReceivedQuantity -= writeoffAmout;
                            }
                            catch { }
                            rdoc.QuantityLeft -= writeoffAmout;

                             ReceivePallet nrp =new ReceivePallet();
                             nrp.AddNew();
                             nrp.ReceiveID = rp.ReceiveID;
                             nrp.PalletID = pl.GetpalletidbyPalletLocationOrgetnew(int.Parse(dr["NewPalletLocation"].ToString()));
                            //nrp.ReceivedQuantity = rp.ReceivedQuantity;
                            nrp.Balance = writeoffAmout;
                            nrp.ReservedStock = 0;
                            //nrp.ReserveOrderID = rp.ReserveOrderID;
                            nrp.BoxSize = rp.BoxSize;
                            nrp.PalletLocationID = int.Parse(dr["NewPalletLocation"].ToString());
                            nrp.IsOriginalReceive = rp.IsOriginalReceive;

                            BLL.LossAndAdjustment d = new BLL.LossAndAdjustment();
                            d.AddNew();
                            d.GenerateRefNo();
                            d.ItemID = Convert.ToInt32(dr["ItemID"]);
                            d.ReasonId = Convert.ToInt32(dr["Reason"]);
                            d.RecID = rdoc.ID;
                            d.Quantity = writeoffAmout;
                            d.BatchNo = rdoc.BatchNo;

                            CalendarLib.DateTimePickerEx edate = new CalendarLib.DateTimePickerEx();
                            edate.Value = DateTime.Today;
                            //TODO: fix to an ethiopian date here
                            edate.CustomFormat = "MM/dd/yyyy";

                            d.Date = ConvertDate.DateConverter(edate.Text);

                            d.EurDate = DateTime.Today;
                             d.Cost = rdoc.IsColumnNull("Cost")? 0: Math.Abs(rdoc.Cost * writeoffAmout);
                            d.StoreId = rdoc.StoreID;
                            d.Losses = true;
                            //todo:
                            d.ApprovedBy = CurrentContext.UserId.ToString();
                            //d.Remarks

                             InternalTransfer it =new  InternalTransfer();
                             it.AddNew();
                            it.ItemID = d.ItemID;
                            it.FromPalletLocationID = pl.GetPalletLocationIDByPalletID(int.Parse(dr["PalletID"].ToString()));
                            it.ToPalletLocationID = nrp.PalletLocationID;
                            it.BatchNumber = d.BatchNo;
                            if (!rdoc.IsColumnNull("ExpDate"))
                            {
                                it.ExpireDate = rdoc.ExpDate;
                            }
                            it.ReceiveDocID = rdoc.ID;
                            it.ManufacturerID = rdoc.ManufacturerId;
                            it.QtyPerPack = Convert.ToInt32(dr["QtyPerPack"]);
                            it.Packs = rdoc.NoOfPack;
                            it.QuantityInBU = nrp.Balance;

                            LossAndAdjustmentReason r = new LossAndAdjustmentReason();
                            it.Type = r.GetReasonByID(d.ReasonId);

                           // d.Save();
                            rdoc.Save();
                            rp.Save();

                            rdoc.QuantityLeft += writeoffAmout;
                             rdoc.Save();
                             nrp.Save();
                             it.Save();
                            int xs = it.ID;
                        }
                        else if (dr["ReLocate"] != DBNull.Value & reLocate > 0)
                         {

                             if (dr["ReLocate"] != DBNull.Value)
                             {
                                 int amount = Convert.ToInt32(dr["ReLocate"]);
                                 int qtyPerPack = Convert.ToInt32(dr["QtyPerPack"]);
                                 amount *= qtyPerPack;
                                 rp.LoadByPrimaryKey(Convert.ToInt32(dr["ReceivePalletID"]));
                                 rdoc.LoadByPrimaryKey(rp.ReceiveID);
                                 int palletLocationID = Convert.ToInt32(dr["PalletLocationID"]);

                                 int qPalletLocationID =
                                     PalletLocation.GetQuaranteenPalletLocationByPalletLocationID(palletLocationID);//PalletLocation.GetQuaranteenPalletLocation(Convert.ToInt32(dr["ID"]));
                                 pl.LoadByPrimaryKey(qPalletLocationID);

                                 ReceivePallet rp2 = new ReceivePallet();
                                 ReceiveDoc rd = new ReceiveDoc();
                                 Pallet pallet = new Pallet();
                                 rp.LoadByPrimaryKey(Convert.ToInt32(dr["ReceivePalletID"]));
                                 rd.LoadByPrimaryKey(rp.ReceiveID);
                                 pallet.AddNew();
                                 Item item = new Item();
                                 item.LoadByPrimaryKey(rdoc.ItemID);
                                 if (item.StorageTypeID.ToString() == StorageType.BulkStore)
                                 {
                                     pallet.PalletNo = Pallet.GetLastPanelNumber();

                                 }
                                 pallet.Save();
                                 rp2.AddNew();
                                 rp2.PalletID = pl.GetpalletidbyPalletLocationOrgetnew(int.Parse(dr["NewPalletLocation"].ToString()));//pallet.ID;
                                 rp2.ReceiveID = rp.ReceiveID;
                                 rp2.IsOriginalReceive = rp.IsOriginalReceive;
                                 // calculate the new balance
                                 BLL.ItemManufacturer im = new BLL.ItemManufacturer();
                                 //im.LoadDefaultReceiving(rd.ItemID, Convert.ToInt32(dr["ManufacturerID"]));
                                 //im.LoadIMbyLevel(rd.ItemID, Convert.ToInt32(dr["ManufacturerID"]), Convert.ToInt32(dr["BoxLevel"]));
                                 //int packqty = (amount / im.QuantityInBasicUnit);
                                 rd.QuantityLeft -= amount;
                                 rp.Balance -= amount;
                                rd.Save();
                                rp.Save();

                                 rd.QuantityLeft += amount;
                                 rp2.Balance = amount;//packqty * im.QuantityInBasicUnit;
                                 rd.Save();

                                 rp2.BoxSize = rp.BoxSize;
                                 rp2.ReservedStock = 0;
                                 rp2.PalletLocationID= int.Parse(dr["NewPalletLocation"].ToString());
                                 rp2.Save();

                                 pl.Confirmed = false;
                                 pl.Save();

                                 // select the new pallet location here.
                              /*   XtraForm xdb = new XtraForm();
                                 xdb.Controls.Add(panelControl2);
                                 Item itms= new Item();
                                 itms.GetItemByPrimaryKey(Convert.ToInt32(dr["ItemID"]));
                                 lblItemName.Text = itms.FullItemName;
                                 panelControl2.Visible = true;
                                 panelControl2.Dock = DockStyle.Fill;
                                 xdb.Text = "Select Location for relocated Item";
                                 lkLocation.Properties.DataSource = PalletLocation.GetAllFreeFor(Convert.ToInt32(dr["ItemID"]));
                                 xdb.ShowDialog();

                                 PalletLocation pl2 = new PalletLocation();
                                 pl2.LoadByPrimaryKey(Convert.ToInt32(lkLocation.EditValue));
                                 pl2.PalletID = pallet.ID;
                                 pl2.Confirmed = false;
                                 pl2.Save();
                                 */
                                 InternalTransfer it = new InternalTransfer();

                                 it.AddNew();
                                 it.ItemID = rd.ItemID;
                                 it.BoxLevel = 0;// im.PackageLevel;
                                 //it.ExpireDate = rd.ExpDate;
                                 if (!rd.IsColumnNull("ExpDate"))
                                 {
                                     it.ExpireDate = rd.ExpDate;
                                 }
                                 it.BatchNumber = rd.BatchNo;
                                 it.ManufacturerID = Convert.ToInt32(dr["ManufacturerID"]);//im.ManufacturerID;
                                 it.FromPalletLocationID = qPalletLocationID;
                                 it.ToPalletLocationID = int.Parse(dr["NewPalletLocation"].ToString()); //pl2.ID;
                                 it.QtyPerPack = 1;
                                //it.Packs = pack qty;
                                 it.ReceiveDocID = rp.ReceiveID;
                                 it.QuantityInBU = amount;// it.QtyPerPack;
                                 it.Type = "ReLocation";
                                 it.IssuedDate = DateTime.Today;
                                 it.Status = 0;
                                 it.PrintNumber = printNubmer;
                                 it.Save();
                             }
                         }
                    }
                    transaction.CommitTransaction();
                    BindQuarantine();
                    XtraMessageBox.Show("Quarantine Write off/Adjustment was commitd.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
            }
        }
        private void btnDeleteWithRfNo_Click(object sender, EventArgs e)
        {
            CalendarLib.DateTimePickerEx dtDate = new CalendarLib.DateTimePickerEx
                                                      {
                                                          CustomFormat = "MM/dd/yyyy",
                                                          Value = DateTime.Now
                                                      };
            DateTime dtCurrent = ConvertDate.DateConverter(dtDate.Text);

            DataRowView dr = (DataRowView) lstTree.GetDataRecordByNode(lstTree.FocusedNode);

            if (dr == null) return;

            ReceiveDoc rec = new ReceiveDoc();
            DataTable dtRec;
            if (dr["ParentID"] == DBNull.Value)
            {
                int yr = ((dtCurrent.Month > 10) ? dtCurrent.Year : dtCurrent.Year - 1);
                DateTime dt1 = new DateTime(Convert.ToInt32(dr["ID"]) - 1, 11, 1);
                DateTime dt2 = new DateTime(Convert.ToInt32(dr["ID"]), 11, 1);
                dtRec = rec.GetTransactionByDateRange(Convert.ToInt32(cboStores.EditValue), dt1, dt2);
                string dateString = dr["RefNo"].ToString();
                lblRecDate.Text = dateString;
            }
            else
            {
                dtRec = rec.GetTransactionByRefNo(dr["RefNo"].ToString(), Convert.ToInt32(cboStores.EditValue),
                                                  dr["Date"].ToString());
                lblRecDate.Text = Convert.ToDateTime(dr["Date"]).ToString("MM dd,yyyy");
            }
            foreach (DataRow recieve in dtRec.Rows)
            {
               AddDeletedRecieveDocs(recieve);
            }
        }