Example #1
0
        /// <summary>
        /// 按参数表绑定LookUpEdit控件
        /// </summary>
        /// <param name="control">LookUpEdit控件</param>
        /// <param name="type">参数类型</param>
        /// <param name="isRefreshData">是否刷新数据</param>
        public static void BindLookUpByParameter(LookUpEdit control, string type, AppendType appendType, bool isRefreshData)
        {
            //加载数据
            if (!dictParameter.ContainsKey(type) || isRefreshData)
            {
                List<SysParameter> _lstParameter = WcfServiceHelper.Client.GetParameterListByType(type).ToList();
                dictParameter.Add(type, _lstParameter);
            }

            List<SysParameter> lstParameter = dictParameter[type].OrderBy(obj => obj.OrderID).ToList();
            if (appendType != AppendType.None)
            {
                SysParameter para = new SysParameter();
                para.Code = "";
                if (appendType == AppendType.All)
                {
                    para.DisplayName = "全部";
                    para.FullName = "全部";
                }
                else if (appendType == AppendType.Blank)
                {
                    para.DisplayName = "";
                    para.FullName = "";
                }
                lstParameter.Insert(0, para);
            }

            control.Properties.DataSource = lstParameter;
        }
 private void InitializeComponent()
 {
     this.cboParticipantIDValue = new LookUpEdit();
     this.cboPartType = new LookUpEdit();
     this.label4 = new Label();
     this.cboParticipantIDValue.Properties.BeginInit();
     this.cboPartType.Properties.BeginInit();
     base.SuspendLayout();
     this.cboParticipantIDValue.Location = new Point(0x36, 0x29);
     this.cboParticipantIDValue.Name = "cboParticipantIDValue";
     this.cboParticipantIDValue.Size = new Size(0xbc, 0x17);
     this.cboParticipantIDValue.TabIndex = 6;
     this.cboPartType.Location = new Point(0x36, 12);
     this.cboPartType.Name = "cboPartType";
     this.cboPartType.Size = new Size(0xbc, 0x17);
     this.cboPartType.TabIndex = 4;
     this.label4.AutoSize = true;
     this.label4.Location = new Point(11, 15);
     this.label4.Name = "label4";
     this.label4.Size = new Size(0x29, 12);
     this.label4.TabIndex = 5;
     this.label4.Text = "类型:";
     base.AutoScaleDimensions = new SizeF(6f, 12f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.Controls.Add(this.cboParticipantIDValue);
     base.Controls.Add(this.cboPartType);
     base.Controls.Add(this.label4);
     base.Name = "ParticipantTypeEdit";
     base.Size = new Size(0xfe, 0x4a);
     this.cboParticipantIDValue.Properties.EndInit();
     this.cboPartType.Properties.EndInit();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Example #3
0
 public virtual void CheckEditor(LookUpEdit editor)
 {
     if (editor.EditValue.GetInt() <= 0)
       {
     ErrorProvider.SetError(editor, "Bitte einen gültigen Wert angeben", ErrorType.Warning);
       }
 }
 public static void Init(LookUpEdit lookupEdit, string dataWordTypeCode, string displayMember, string valueMember)
 {
     lookupEdit.Properties.DisplayMember = displayMember;
     lookupEdit.Properties.ValueMember = valueMember;
     lookupEdit.Properties.Columns.Add(new LookUpColumnInfo("Code", 40, "代码"));
     lookupEdit.Properties.Columns.Add(new LookUpColumnInfo("Name", 80, "名称"));
     lookupEdit.Properties.DataSource = DataWordService.FindDataWordsByTypeCode(dataWordTypeCode);
 }
 public static void fillPhongCombo( LookUpEdit cbb, List<PhongTap> l = null)
 {
     if (l == null)
     {
          l = PhongTapController.GetList();
     }
     cbb.Properties.DataSource = l;
     cbb.Properties.ValueMember = "MaPhongTap";
     cbb.Properties.DisplayMember = "TenPhongTap";
 }
 private void XRep01_ParametersRequestBeforeShow(object sender, DevExpress.XtraReports.Parameters.ParametersRequestEventArgs e)
 {
     foreach (ParameterInfo info in e.ParametersInformation)
     {
         if (info.Parameter.Name == "pramSyndicateId")
         {
             LookUpEdit LUE = new LookUpEdit();
             LUE.Properties.DataSource = XPCDSyndicate;
             LUE.Properties.DisplayMember = "Syndicate";
             LUE.Properties.ValueMember = "SyndicateId";
             LUE.Properties.Columns.Add(new LookUpColumnInfo("Syndicate", 0, "الفرعية"));
             LUE.Properties.BestFit();
             LUE.Properties.NullText = string.Empty;
             LUE.Properties.TextEditStyle = TextEditStyles.Standard;
             LUE.EditValueChanged += LUE_EditValueChanged;
             //LUE.Properties.NullText = "<اختر فرعيه>";
             info.Editor = LUE;
             info.Parameter.Value = DBNull.Value;
             continue;
         }
         if (info.Parameter.Name == "pramDofatSarfId")
         {
             LookUpEdit LUE = new LookUpEdit();
             LUE.Properties.DataSource = XPTBLDofatSarf;
             LUE.Properties.DisplayMember = "DofatSarf";
             LUE.Properties.ValueMember = "DofatSarfId";
             LUE.Properties.Columns.Add(new LookUpColumnInfo("DofatSarf", 0, "النوع"));
             LUE.Properties.BestFit();
             LUE.Properties.NullText = string.Empty;
             LUE.Properties.TextEditStyle = TextEditStyles.Standard;
             //LUE.Properties.NullText = "<اختر فرعيه>";
             info.Editor = LUE;
             info.Parameter.Value = DBNull.Value;
             continue;
         }
         if (info.Parameter.Name == "pramSubCommitteId")
         {
             LookUpEdit LUE = new LookUpEdit();
             LUE.Properties.DataSource = dsQueries.CDSubCommitte;
             LUE.Properties.DisplayMember = "SubCommitte";
             LUE.Properties.ValueMember = "SubCommitteId";
             LUE.Properties.Columns.Add(new LookUpColumnInfo("SubCommitte", 0, "النوع"));
             LUE.Properties.BestFit();
             LUE.Properties.NullText = string.Empty;
             LUE.Properties.TextEditStyle = TextEditStyles.Standard;
             //LUE.Properties.NullText = "<اختر فرعيه>";
             info.Editor = LUE;
             info.Parameter.Value = DBNull.Value;
             continue;
         }
     }
 }
 internal LookUpCommandItem(
     LookUpEdit LookUpEdit,
     DevExpress.XtraEditors.Controls.EditorButton Button,
     DataAvail.Controllers.Commands.ControllerCommandTypes CommandType
     ) :
     base(
     LookUpEdit,
     LookUpEdit.AppFieldContext,
     LookUpEdit.DxEdit,
     Button,
     CommandType)
 {
 }
Example #8
0
        private void OrderViewRptParametersRequestBeforeShow(object sender, ParametersRequestEventArgs e)
        {
            foreach (ParameterInfo info in e.ParametersInformation)
            {
                if (info.Parameter.Name == "prGroup")
                {
                    var lookUpEdit = new LookUpEdit();
                    var ds  = new CatDs();
                    ds.Load(ReportDataConnection);
                    lookUpEdit.Properties.DataSource = ds;
                    lookUpEdit.Properties.DisplayMember = "CategoryName";
                    lookUpEdit.Properties.ValueMember = "CategoryName";
                    lookUpEdit.Properties.Columns.Add(new LookUpColumnInfo("CategoryName", 200, "Группа товара"));
                    info.Editor = lookUpEdit;
                }

                if (info.Parameter.Name == "prShop")
                {
                    var lookUpEdit = new LookUpEdit(){Width = 300};
                    var ds = new ShopDs();
                    ds.Load(ReportDataConnection);
                    lookUpEdit.Properties.DataSource = ds;
                    lookUpEdit.Properties.DisplayMember = "ShopName";
                    lookUpEdit.Properties.ValueMember = "ShopCode";
                    lookUpEdit.Properties.Columns.Add(new LookUpColumnInfo("ShopCode", 50, "Код магазина"));
                    lookUpEdit.Properties.Columns.Add(new LookUpColumnInfo("ShopName", 100, "Название магазина"));
                    lookUpEdit.Properties.Columns.Add(new LookUpColumnInfo("ShopAddress", 150, "Адрес магазина"));
                    info.Editor = lookUpEdit;
                }

                if (info.Parameter.Name == "prSupplier")
                {
                    var lookUpEdit = new LookUpEdit();
                    var ds = new SupplierDs();
                    ds.Load(ReportDataConnection);
                    lookUpEdit.Properties.DataSource = ds;
                    lookUpEdit.Properties.DisplayMember = "SupplierName";
                    lookUpEdit.Properties.ValueMember = "SupplierName";
                    lookUpEdit.Properties.Columns.Add(new LookUpColumnInfo("SupplierName", 200, "Поставщик"));
                    info.Editor = lookUpEdit;
                }
            }
        }
Example #9
0
 private void lkCustomer_EditValueChanged(object sender, EventArgs e)
 {
     if (sender is LookUpEdit)
     {
         LookUpEdit lkTemp = sender as LookUpEdit;
         if (lkTemp.EditValue != null)
         {
             txtCustomerID.Text = lkTemp.EditValue.ToString();
             DataRowView rowView = (DataRowView)lkTemp.GetSelectedDataRow();
             DataRow     row     = rowView.Row;
             txtAddress.Text  = row["Address"].ToString();
             txtNumberID.Text = row["IDNumber"].ToString();
         }
         else
         {
             txtCustomerID.Text = "";
             txtAddress.Text    = "";
             txtNumberID.Text   = "";
         }
     }
 }
        /// <summary>
        /// 创建函数列表的datasource
        /// 需要添加空白行
        /// </summary>
        /// <param name="pickListName"></param>
        /// <param name="lookUpEdit"></param>
        /// <returns></returns>
        private DependencyObjectCollection GetFunDataSource(string pickListName, LookUpEdit lookUpEdit)
        {
            DependencyObjectCollection items = GetPickListDataource(pickListName, false);

            LookUpColumnInfo c1 = new LookUpColumnInfo("Value");

            c1.Visible = false;
            LookUpColumnInfo c2 = new LookUpColumnInfo("DisplayName");

            lookUpEdit.Properties.Columns.Add(c1);
            lookUpEdit.Properties.Columns.Add(c2);

            lookUpEdit.Properties.DataSource    = items;
            lookUpEdit.Properties.DisplayMember = "DisplayName";
            lookUpEdit.Properties.ValueMember   = "Value";
            lookUpEdit.Properties.NullText      = string.Empty;
            lookUpEdit.Properties.TextEditStyle = 0;
            lookUpEdit.Properties.ShowHeader    = false;

            return(items);
        }
Example #11
0
 public void SetComboBoxEvent(LookUpEdit leGame, LookUpEdit leVersion)
 {
     leGame.EditValueChanged += (sender, args) =>
     {
         var gameName           = leGame.GetColumnValue("DisplayName").ToString();
         var procNameWithoutExe = leGame.EditValue.ToString().Split('.')[0];
         Selected.GameProcessName = procNameWithoutExe;
         Selected.GameName        = gameName;
         UpdateVersionCombobox(leGame, leVersion);
     };
     leVersion.EditValueChanged += (sender, args) =>
     {
         if (!Selected.GameState)
         {
             return;
         }
         Selected.GameVersion = leVersion.GetColumnValue("GameVersion").ToString();
         rw.SetGameVersion(Selected.GameVersion);
         // rw.LoadGameVersion(Selected.GameProcess);
     };
 }
Example #12
0
        /// <summary>
        /// 加载下拉列表
        /// </summary>
        /// <param name="lue">下拉控件</param>
        /// <param name="parentId">根节点ID</param>
        private void InitLookUpEdit(LookUpEdit lue, int parentId)
        {
            try
            {
                if (parentId <= 0)
                {
                    return;
                }

                Service.IService.IPropTypeBase prop = new Service.ServiceImp.PropTypeBase();

                var list = prop.LoadListAll(p => p.PROPPARENT == parentId).Select(x => new { x.PROPID, x.PROPNAME }).ToArray();       //品牌

                if (list.Length > 0)
                {
                    lue.Properties.NullText      = "请选择";
                    lue.EditValue                = "PROPID";
                    lue.Properties.ValueMember   = "PROPID";
                    lue.Properties.DisplayMember = "PROPNAME";
                    lue.Properties.ShowHeader    = false;
                    lue.ItemIndex                = 0; //选择第一项
                    lue.Properties.DataSource    = list;

                    //自适应宽度
                    lue.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
                    //填充列
                    lue.Properties.PopulateColumns();
                    //lue.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PROPID"));
                    lue.Properties.Columns[0].Visible = false;
                }
                else
                {
                    lue.Properties.NullText = "请选择";
                }
            }
            catch (Exception ex)
            {
                XtraMessageBox.Show("加载数据出错!" + ex.Message);
            }
        }
Example #13
0
        /// <summary>
        /// 获取地区信息
        /// </summary>
        /// <param name="lookUp">下拉框控件名</param>
        /// <param name="CategoryID">下拉框内容类别</param>
        public static void GetAreas(LookUpEdit lookUp, string Type, string CategoryID)
        {
            SqlParameter[] sqlParam = new SqlParameter[]
            {
                new SqlParameter("@FrmType", SqlDbType.VarChar),
                new SqlParameter("@PatNoOfHis", SqlDbType.VarChar),
                new SqlParameter("@CategoryID", SqlDbType.VarChar)
            };
            sqlParam[0].Value = Type;
            sqlParam[1].Value = "0";
            sqlParam[2].Value = CategoryID;

            DataTable frmDateTable = sql_Helper.ExecuteDataTable("usp_RedactPatientInfoFrm", sqlParam, CommandType.StoredProcedure);

            lookUp.Properties.Columns.Clear();
            lookUp.Properties.DataSource    = frmDateTable;
            lookUp.Properties.DisplayMember = "NAME";
            lookUp.Properties.ValueMember   = "ID";
            lookUp.Properties.ShowHeader    = false;
            lookUp.Properties.ShowFooter    = false;

            LookUpColumnInfoCollection coll = lookUp.Properties.Columns;

            coll.Add(new LookUpColumnInfo("ParentID"));
            coll.Add(new LookUpColumnInfo("ID"));
            coll.Add(new LookUpColumnInfo("NAME"));
            coll.Add(new LookUpColumnInfo("Py"));
            coll.Add(new LookUpColumnInfo("Wb"));

            lookUp.Properties.Columns["NAME"].Visible     = true;
            lookUp.Properties.Columns["ParentID"].Visible = false;
            lookUp.Properties.Columns["ID"].Visible       = false;
            lookUp.Properties.Columns["Py"].Visible       = false;
            lookUp.Properties.Columns["Wb"].Visible       = false;
            lookUp.Properties.BestFit();

            lookUp.Properties.SearchMode            = DevExpress.XtraEditors.Controls.SearchMode.AutoComplete;
            lookUp.Properties.AutoSearchColumnIndex = 2 | 3;
        }
        public static void LoadLookUpEdit(LookUpEdit lookUpEdit, string Ma_kho, Entities db = null)
        {
            if (db == null)
            {
                db = new Entities();
            }
            lookUpEdit.Properties.Columns.Clear();
            var kho = db.STO_KhoVatTu.Where(t => t.Ma_kho.Contains(Ma_kho)).ToList();

            lookUpEdit.Properties.DataSource = kho;
            lookUpEdit.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Ten_kho", "Tên kho"));
            lookUpEdit.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Dia_diem", "Địa điểm"));
            lookUpEdit.Properties.BestFit();
            lookUpEdit.Properties.DisplayMember             = "Ten_kho";
            lookUpEdit.Properties.ValueMember               = "ID_kho";
            lookUpEdit.Properties.AllowDropDownWhenReadOnly = DevExpress.Utils.DefaultBoolean.True;

            if (kho.Count > 0)
            {
                lookUpEdit.ItemIndex = 0;
            }
        }
        public static void BindLookupList(this LookUpEdit lookUpEdit, Entity entity, bool withEmptyRow)
        {
            if (lookUpEdit.DataBindings.Count == 0)
            {
                return;
            }

            var    binding       = lookUpEdit.DataBindings[0];
            string attributeName = binding.BindingMemberInfo.BindingMember;

            if (entity == null)
            {
                return;
            }
            var attribute = entity.Attributes.FirstOrDefault(a => a.PhysicalName.Equals(attributeName));

            if (attribute != null && attribute.AttributeLookupValues.Any())
            {
                var items = GetLookupValues(withEmptyRow, attribute);
                InitializeLookUpEdit(lookUpEdit.Properties, items);
            }
        }
Example #16
0
        private void lookUpCategoria_EditValueChanged(object sender, EventArgs e)
        {
            LookUpEdit lookUpEdit = (sender as LookUpEdit);

            if (lookUpEdit != null)
            {
                lookUpReceta.Visible = true;
                lblReceta.Visible    = true;

                if (lookUpEdit.Text != "Bebida")
                {
                    lblTamanio.Visible   = false;
                    lblTipo.Visible      = false;
                    cmboxTamanio.Visible = false;
                    cmboxTipo.Visible    = false;
                }
                else
                {
                    lblTamanio.Visible   = true;
                    lblTipo.Visible      = true;
                    cmboxTamanio.Visible = true;
                    cmboxTipo.Visible    = true;
                }

                if (lookUpEdit.Text != "Combo")
                {
                    groupBoxCombos.Visible = false;
                    //chkListComboProductos.Visible = false;
                }
                else
                {
                    lookUpReceta.Visible = false;
                    lblReceta.Visible    = false;

                    groupBoxCombos.Visible = true;
                    // chkListComboProductos.Visible = true;
                }
            }
        }
Example #17
0
        /// <summary>
        /// 绑定LookUpEdit
        /// </summary>
        /// <param name="dt">数据集合</param>
        /// <param name="lst">LookUpEdit控件</param>
        /// <param name="needQingXuanZ">是否需要请选择</param>
        public static void BindDropDownList(DataTable dt, LookUpEdit lst, bool needQingXuanZ, int dropDownRows)
        {
            if (dt.Columns.Count > 2)
            {
                return;
            }

            if (dt.Columns.Count == 1)
            {
                dt = ConvertHelper.AddColumn(dt);
            }

            if (needQingXuanZ)
            {
                DataRow dr = dt.NewRow();
                dr[0] = "--请选择--";
                dr[1] = "-99999";
                dt.Rows.InsertAt(dr, 0);
            }

            lst.Properties.DataSource    = dt;
            lst.Properties.DisplayMember = dt.Columns[0].ColumnName;
            lst.Properties.ValueMember   = dt.Columns[1].ColumnName;
            lst.Properties.Columns.Clear();
            lst.Properties.Columns.Add(new LookUpColumnInfo(dt.Columns[0].ColumnName, 80));
            lst.Properties.ShowHeader       = false;
            lst.Properties.ShowFooter       = false;
            lst.Properties.NullText         = "";
            lst.Properties.PopupFormMinSize = new System.Drawing.Size(10, 10);
            lst.Properties.BestFitMode      = BestFitMode.BestFitResizePopup; //下拉框在第二个Tab页时,BestFit()不能显示全部
            lst.Properties.PopupWidth       = lst.Properties.BestFit();       //BestFitMode只在第一次弹出下拉框时生效,特殊情况不能满足
            lst.Properties.DropDownRows     = dropDownRows;

            if (dt.Rows.Count > 0)
            {
                lst.Properties.ForceInitialize();
                lst.ItemIndex = 0;
            }
        }
 /// <summary>
 /// Load các kho trong tồn đầu kỳ
 /// </summary>
 /// <param name="lookUpEdit"></param>
 /// <param name="From"></param>
 /// <param name="To"></param>
 /// <param name="db"></param>
 public static void LoadLookUpEdit(LookUpEdit lookUpEdit, DateTime From, DateTime To, Entities db = null)
 {
     if (db == null)
     {
         db = new Entities();
     }
     lookUpEdit.Properties.Columns.Clear();
     lookUpEdit.Properties.DataSource = db.STO_TonDauKy.Where(t => t.Ky >= From && t.Ky <= To).Select(t => new
     {
         Ten_kho  = t.STO_KhoVatTu.Ten_kho,
         ID_kho   = t.ID_kho,
         Dia_diem = t.STO_KhoVatTu.Dia_diem,
     }).Distinct().ToList();
     lookUpEdit.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Ten_kho", "Tên kho"));
     lookUpEdit.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Dia_diem", "Địa điểm"));
     lookUpEdit.Properties.DisplayMember = "Ten_kho";
     lookUpEdit.Properties.ValueMember   = "ID_kho";
     lookUpEdit.Properties.NullText      = "";
     lookUpEdit.ToolTip = lookUpEdit.Properties.NullValuePrompt = "Chọn kho";
     lookUpEdit.Properties.NullValuePromptShowForEmptyValue = true;
     lookUpEdit.Properties.AllowDropDownWhenReadOnly        = DevExpress.Utils.DefaultBoolean.True;
 }
Example #19
0
        /// <summary>
        /// 绑定车间。
        /// </summary>
        private void BindFactoryRoom(LookUpEdit lueFactory)
        {
            lueFactory.EditValue = string.Empty;
            string    strLines = PropertyService.Get(PROPERTY_FIELDS.LINES);
            DataTable dt       = FactoryUtils.GetFactoryRoomByLines(strLines);

            if (dt != null)
            {
                lueFactory.Properties.DataSource    = dt;
                lueFactory.Properties.DisplayMember = "LOCATION_NAME";
                lueFactory.Properties.ValueMember   = "LOCATION_KEY";
                if (dt.Rows.Count > 0)
                {
                    lueFactory.ItemIndex = 0;
                }
            }
            else
            {
                lueFactory.Properties.DataSource = null;
                lueFactory.EditValue             = string.Empty;
            }
        }
Example #20
0
        /// <summary>
        /// 绑定FastReport下拉列表
        /// </summary>
        /// <param name="?"></param>
        /// <param name="FormListAID"></param>
        public void BindFastReportList(LookUpEdit p_box, int p_WinListID)
        {
            string sql = string.Empty;

            sql += " SELECT ID,ReportName FROM Data_ReportManage WHERE WinListID=" + p_WinListID;
            DataTable dt = SysUtils.Fill(sql);

            FCommon.LookupEditColAdd(p_box, new int[1] {
                50
            }, new string[1] {
                "ReportName"
            }, new string[1] {
                ""
            }, new bool[1] {
                true
            });
            FCommon.LoadDropLookUP(p_box, dt, "ReportName", "ID", false);
            if (dt.Rows.Count != 0)
            {
                p_box.EditValue = SysConvert.ToInt32(dt.Rows[0]["ID"]);
            }
        }
Example #21
0
        /// <summary>
        /// 清空窗体内容
        /// </summary>
        /// <param name="controls"></param>
        public static void ClearForm(System.Windows.Forms.Control.ControlCollection controls)
        {
            foreach (Control con in controls)
            {
                if (con is GroupControl || con is PanelControl)
                {
                    ClearForm(con.Controls);
                }
                else
                {
                    if (con.Tag != null)
                    {
                        if (con is LookUpEdit)
                        {
                            LookUpEdit lookUp = con as LookUpEdit;
                            lookUp.ItemIndex = 0;
                            continue;
                        }
                        if (con is TextEdit)
                        {
                            TextEdit txt = con as TextEdit;
                            txt.Text = string.Empty;
                        }

                        if (con is CheckEdit)
                        {
                            CheckEdit check = con as CheckEdit;
                            check.Checked = false;
                        }

                        if (con is ComboBoxEdit)
                        {
                            ComboBoxEdit combo = con as ComboBoxEdit;
                            combo.Text = string.Empty;
                        }
                    }
                }
            }
        }
        public static void RemoveSelectedValue(this LookUpEdit lookUp, IList source)
        {
            var value = lookUp.EditValue;
            var index = source.IndexOf(value);

            source.Remove(value);

            // normalize the index. If the value removed was at the end of the list, then
            // this will push up the index to be the new last value. Otherwise, the index
            // will remain the same.
            index = Math.Min(source.Count - 1, index);

            // if the index is valid, then use it as the currently selected value
            if (index > -1)
            {
                lookUp.EditValue = source[index];
            }
            else
            {
                lookUp.EditValue = null;
            }
        }
Example #23
0
        /// <summary>
        /// Load các loại vật tư tồn đầu kỳ
        /// </summary>
        /// <param name="lookUpEdit"></param>
        /// <param name="ID_ton"></param>
        /// <param name="db"></param>
        public static void LoadLookUpEditTonKho(LookUpEdit lookUpEdit, int ID_ton, Entities db = null)
        {
            if (db == null)
            {
                db = new Entities();
            }
            lookUpEdit.Properties.Columns.Clear();

            lookUpEdit.Properties.DataSource = db.STO_TonDauKyCT.Where(t => t.ID_ton == ID_ton).Select(t => new
            {
                ID_loai_vat_tu  = t.STO_VatTu.ID_loai_vat_tu,
                Ten_loai_vat_tu = t.STO_VatTu.Ten_vat_tu,
            }).Distinct().ToList();

            lookUpEdit.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Ten_loai_vat_tu", "Loại vật tư"));
            lookUpEdit.Properties.DisplayMember = "Ten_loai_vat_tu";
            lookUpEdit.Properties.ValueMember   = "ID_loai_vat_tu";
            lookUpEdit.Properties.NullText      = "";
            lookUpEdit.ToolTip = lookUpEdit.Properties.NullValuePrompt = "Chọn loại vật tư";
            lookUpEdit.Properties.NullValuePromptShowForEmptyValue = true;
            lookUpEdit.Properties.AllowDropDownWhenReadOnly        = DevExpress.Utils.DefaultBoolean.True;
        }
        public static void Translation(this LookUpEdit lokMain)
        {
            string fName = "";

            try { fName = lokMain.FindForm().Name; }
            catch { }
            if (!string.IsNullOrEmpty(fName) && lokMain != null && lokMain.Properties.Columns.Count > 0)
            {
                //db = new aModel();
                //List<xMsgDictionary> lstAdd = new List<xMsgDictionary>();
                //foreach (LookUpColumnInfo col in lokMain.Properties.Columns)
                //{
                //    string mName = string.Format("{0}_{1}", lokMain.Name, col.FieldName);
                //    var myTrans = db.xMsgDictionaries.FirstOrDefault<xMsgDictionary>(n => n.FormName.Equals(fName) && n.MsgName.Equals(mName));
                //    if (myTrans == null)
                //    {
                //        lstAdd.Add(myTrans = new xMsgDictionary()
                //        {
                //            FormName = fName,
                //            MsgName = mName,
                //            VN = col.Caption,
                //            EN = col.FieldName.AutoSpace()
                //        });

                //    }
                //    col.Caption = myTrans.GetStringByName(curCulture);
                //}
                //if (lstAdd != null && lstAdd.Count() > 0)
                //{
                //    try
                //    {
                //        db.xMsgDictionaries.AddRange(lstAdd);
                //        db.SaveChanges();
                //    }
                //    catch { }
                //}
            }
        }
        void dataSource_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
        {
            ParaEntity para = CurrentFunction.ParaList.FirstOrDefault(c => c.ConditionName == e.PropertyName);

            if (para == null || para.ParaTypeFlag != ParaTypeEnum.PickList)
            {
                return;
            }
            DependencyObject obj = sender as DependencyObject;

            if (obj[e.PropertyName].ToString() == "8")
            {
                _table.SuspendLayout();
                Control control = _table.GetControlFromPosition(2, para.Row);

                ButtonEdit btn = ControlUtils.CreateButtonEdit(_dataSource, para.Name, para.Name, false, string.Empty, control.TabIndex);
                btn.ButtonClick += new ButtonPressedEventHandler(btn_Click);
                btn.Width        = control.Width;
                _table.Controls.Remove(control);
                _table.Controls.Add(btn, 2, para.Row);
                _table.ResumeLayout(true);
            }
            else
            {
                _table.SuspendLayout();
                Control control = _table.GetControlFromPosition(2, para.Row);

                LookUpEdit lookup = ControlUtils.CreateLookUpEdit(_dataSource, para.Name, para.Name, true, 0, null, control.TabIndex);
                lookup.Anchor = AnchorStyles.Left;
                lookup.Width  = 150;
                lookup.Name   = para.Name;
                GetPickDataSource(para.PickListTypeName, lookup);

                _table.Controls.Remove(control);
                _table.Controls.Add(lookup, 2, para.Row);
                _table.ResumeLayout(true);
            }
        }
    public override DevExpress.XtraEditors.BaseEdit CreateEditor()
    {
      ownerEdit = new SingLookUpEdit();
      ownerEdit.Properties.DataSource = DataSource;
      ownerEdit.Properties.DisplayMember = DisplayMember;
      ownerEdit.Properties.ValueMember = ValueMember;
      if (colFields == null || captions == null || colFields.Length != captions.Length)
      {
#if DEBUG
        throw new Exception("显示行数据字段和字段名不一至");
#else
#endif
      }
      else
      {
        int _totalWidth = 30, _width = 0;
        ownerEdit.Properties.Columns.Clear();
        for (int i = 0; i < colFields.Length; i++)
        {
          string[] _colInf = colFields[i].Split('=');
          if (_colInf.Length > 1)
          {
            _width = int.Parse(_colInf[1]);
          }
          else
          {
            _width = 70;
          }
          _totalWidth += _width;
          ownerEdit.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo(_colInf[0], _width, captions[i]));
        }
        ownerEdit.Properties.PopupWidth = _totalWidth;
        this.PopupFormSize =
        this.PopupFormMinSize = new System.Drawing.Size(_totalWidth, 260);
      }
      ownerEdit.Properties.NullText = string.Empty;
      return ownerEdit;
    }
Example #27
0
        /// <summary>
        /// 设置只读
        /// </summary>
        /// <param name="controls"></param>
        public static void SetReadOnly(System.Windows.Forms.Control.ControlCollection controls, bool flg)
        {
            foreach (Control con in controls)
            {
                if (con is GroupControl || con is PanelControl)
                {
                    SetReadOnly(con.Controls, flg);
                }
                else
                {
                    if (con is TextEdit)
                    {
                        TextEdit txt = (TextEdit)con;
                        txt.Enabled = !flg;
                        continue;
                    }
                    if (con is CheckEdit)
                    {
                        CheckEdit check = (CheckEdit)con;
                        check.Properties.ReadOnly = flg;
                        continue;
                    }
                    if (con is LookUpEdit)
                    {
                        LookUpEdit lookUp = (LookUpEdit)con;
                        lookUp.Enabled = !flg;
                        continue;
                    }

                    if (con is ComboBoxEdit)
                    {
                        ComboBoxEdit combo = con as ComboBoxEdit;
                        combo.Enabled = !flg;
                        continue;
                    }
                }
            }
        }
Example #28
0
        public void loadchinhsach(string role, LookUpEdit lencc, LookUpEdit lencs, TextEdit txtscs, DateEdit detn, DateEdit dedn, TextEdit txttsl, TextEdit txtdsl, TextEdit txtck, RadioButton rbthang, RadioButton rbquy, RadioButton rbnam, RadioButton rbkg, RadioButton rbtan, MemoEdit txtnd, LabelControl lauser)
        {
            DataTable dt = gen.GetTable("select PolicyCode,InventoryItemCode,PolicyName,BeginDate,EndDate,Unit,Discount,PolicyParent,Species,BeginQuantity,EndQuantity,UserName from Policy where PolicyID='" + role + "'");

            txtscs.EditValue = dt.Rows[0][0];
            lencc.EditValue  = dt.Rows[0][1];
            txtnd.EditValue  = dt.Rows[0][2];
            detn.EditValue   = dt.Rows[0][3];
            dedn.EditValue   = dt.Rows[0][4];
            if (dt.Rows[0][5].ToString() == "Kg")
            {
                rbkg.Checked = true;
            }
            else if (dt.Rows[0][5].ToString() == "Tấn")
            {
                rbtan.Checked = true;
            }

            txtck.EditValue = double.Parse(dt.Rows[0][6].ToString());
            lencs.EditValue = dt.Rows[0][7];

            if (dt.Rows[0][8].ToString() == "Tháng")
            {
                rbthang.Checked = true;
            }
            else if (dt.Rows[0][8].ToString() == "Quý")
            {
                rbquy.Checked = true;
            }
            else if (dt.Rows[0][8].ToString() == "Năm")
            {
                rbnam.Checked = true;
            }

            txttsl.EditValue = double.Parse(dt.Rows[0][9].ToString());
            txtdsl.EditValue = double.Parse(dt.Rows[0][10].ToString());
            lauser.Text      = dt.Rows[0][11].ToString();
        }
Example #29
0
        /// <summary>
        /// 绑定获取字典分类明细库
        /// </summary>
        /// <param name="lookUp">下拉框控件名</param>
        /// <param name="frmDateTable">数据源</param>
        /// <param name="intWidth">下拉框矩形宽度</param>
        public static void GetDictionarydetail(LookUpEdit lookUp, DataTable frmDateTable)
        {
            lookUp.Properties.Columns.Clear();
            lookUp.Properties.DataSource    = frmDateTable;
            lookUp.Properties.DisplayMember = "NAME";     //"Name";
            lookUp.Properties.ValueMember   = "DETAILID"; //"DetailID";
            lookUp.Properties.ShowHeader    = false;
            lookUp.Properties.ShowFooter    = false;

            LookUpColumnInfoCollection coll = lookUp.Properties.Columns;

            //coll.Add(new LookUpColumnInfo("CategoryID"));
            //coll.Add(new LookUpColumnInfo("DetailID"));
            //coll.Add(new LookUpColumnInfo("Name"));
            //coll.Add(new LookUpColumnInfo("Py"));
            //coll.Add(new LookUpColumnInfo("Wb"));
            coll.Add(new LookUpColumnInfo("CATEGORYID"));
            coll.Add(new LookUpColumnInfo("DETAILID"));
            coll.Add(new LookUpColumnInfo("NAME"));
            coll.Add(new LookUpColumnInfo("PY"));
            coll.Add(new LookUpColumnInfo("WB"));

            //lookUp.Properties.Columns["Name"].Visible = true;
            //lookUp.Properties.Columns["CategoryID"].Visible = false;
            //lookUp.Properties.Columns["DetailID"].Visible = false;
            //lookUp.Properties.Columns["Py"].Visible = false;
            //lookUp.Properties.Columns["Wb"].Visible = false;
            lookUp.Properties.Columns["NAME"].Visible       = true;
            lookUp.Properties.Columns["CATEGORYID"].Visible = false;
            lookUp.Properties.Columns["DETAILID"].Visible   = false;
            lookUp.Properties.Columns["PY"].Visible         = false;
            lookUp.Properties.Columns["WB"].Visible         = false;

            lookUp.Properties.BestFit();

            lookUp.Properties.SearchMode            = DevExpress.XtraEditors.Controls.SearchMode.AutoComplete;
            lookUp.Properties.AutoSearchColumnIndex = 2 | 3;
        }
Example #30
0
        public static void LoadLookUpEdit(LookUpEdit lookUpEdit, Entities db = null)
        {
            if (db == null)
            {
                db = new Entities();
            }
            lookUpEdit.Properties.Columns.Clear();
            lookUpEdit.Properties.DataSource = db.ViewCboVatTu.ToList();
            lookUpEdit.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Ten_loai_vat_tu", "Loại vật tư"));
            lookUpEdit.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Ma_vat_tu", "Mã vật tư"));
            lookUpEdit.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Ten_vat_tu", "Tên vật tư"));
            lookUpEdit.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Don_vi", "Đơn vị"));
            lookUpEdit.Properties.Columns["Don_vi"].FormatString = "N2";
            lookUpEdit.Properties.Columns["Don_vi"].FormatType   = DevExpress.Utils.FormatType.Numeric;


            lookUpEdit.Properties.DisplayMember = "Ten_vat_tu";
            lookUpEdit.Properties.ValueMember   = "ID_vat_tu";
            lookUpEdit.Properties.NullText      = "";
            lookUpEdit.ToolTip = lookUpEdit.Properties.NullValuePrompt = "Chọn vật tư";
            lookUpEdit.Properties.NullValuePromptShowForEmptyValue = true;
            lookUpEdit.Properties.AllowDropDownWhenReadOnly        = DevExpress.Utils.DefaultBoolean.True;
        }
Example #31
0
        private void lookUpProvince_EditValueChanged(object sender, EventArgs e)
        {
            LookUpEdit obj = sender as LookUpEdit;

            if (obj == null)
            {
                return;
            }
            if (!(obj.EditValue == null || obj.EditValue.ToString() == "nulltext"))
            {
                if (obj == lookUpProvince)
                {
                    //出身区县
                    SqlUtil.GetAreas(lookUpCounty, "12", obj.EditValue.ToString());
                }

                else
                {
                    //籍贯区县
                    SqlUtil.GetAreas(lookUpFamilyCounty, "12", obj.EditValue.ToString());
                }
            }
        }
Example #32
0
        public static void QueryCmbShippingStatus(eSolutionDataContext db, ref LookUpEdit cmbName, string codeGroup = "", Boolean argAll = false)
        {
            DataTable dt = DatabaseHelper.GetUserCodeData(db, cmbName.Tag.ToString(), codeGroup);

            cmbName.Properties.DataSource = null;
            try
            {
                cmbName.Properties.ValueMember = string.Empty;
                cmbName.Properties.DisplayMember = string.Empty;
            }
            catch
            {
            }
            cmbName.Properties.Columns.Clear();

            cmbName.Properties.DataSource = dt;
            cmbName.Properties.ValueMember = "ValueMember";
            cmbName.Properties.DisplayMember = "DisplayMember";
            cmbName.Properties.ForceInitialize();
            cmbName.Properties.PopulateColumns();
            cmbName.Properties.Columns["ValueMember"].Visible = false;
            cmbName.EditValue = cmbName.Properties.GetDataSourceValue(cmbName.Properties.ValueMember, 0);
        }
Example #33
0
        private void CostCentre_EditValueChanged(object sender, EventArgs e)
        {
            Cursor.Current = Cursors.WaitCursor;
            LookUpEdit  editor = (LookUpEdit)sender;
            DataRowView row    = editor.Properties.GetDataSourceRowByKeyValue(editor.EditValue) as DataRowView;

            if (Convert.ToInt32(CommFun.IsNullCheck(editor.EditValue, CommFun.datatypes.vartypenumeric)) > 0)
            {
                m_iCCId        = Convert.ToInt32(row["CostCentreId"]);
                m_sCCName      = row["CostCentreName"].ToString();
                m_bPayTypewise = Convert.ToBoolean(CommFun.IsNullCheck(row["Typewise"], CommFun.datatypes.varTypeBoolean));
                m_sType        = "AsOn";

                PopulateCostSheet();
                PopulateAECostSheet();
            }
            else
            {
                grdF1.DataSource = null;
                grdF2.DataSource = null;
            }
            Cursor.Current = Cursors.Default;
        }
        private BaseEdit GetControl(Type type, string memberName)
        {
            BaseEdit    control    = null;
            ITypeInfo   typeInfo   = securedObjectSpace.TypesInfo.FindTypeInfo(type);
            IMemberInfo memberInfo = typeInfo.FindMember(memberName);

            if (memberInfo != null)
            {
                if (memberInfo.IsAssociation)
                {
                    control = new LookUpEdit();
                    ((LookUpEdit)control).Properties.DataSource    = securedObjectSpace.GetBindingList <Department>();
                    ((LookUpEdit)control).Properties.DisplayMember = nameof(Department.Title);
                    LookUpColumnInfo column = new LookUpColumnInfo(nameof(Department.Title));
                    ((LookUpEdit)control).Properties.Columns.Add(column);
                }
                else
                {
                    control = new TextEdit();
                }
            }
            return(control);
        }
Example #35
0
        /// <summary>
        /// 绑定元数据数据类型选择
        /// </summary>
        /// <param name="lueControl"></param>
        public static void FillLueTestTypeMetaDataDatetype(LookUpEdit lueControl)
        {
            //设置显示格式和字段
            lueControl.Properties.Appearance.Font                    = new System.Drawing.Font("SimSun", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            lueControl.Properties.Appearance.Options.UseFont         = true;
            lueControl.Properties.AppearanceDropDown.Font            = new System.Drawing.Font("SimSun", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            lueControl.Properties.AppearanceDropDown.Options.UseFont = true;

            lueControl.Properties.Columns.Clear();
            lueControl.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
                new DevExpress.XtraEditors.Controls.LookUpColumnInfo("F_META_TYPE", "数据类型编码")
                , new DevExpress.XtraEditors.Controls.LookUpColumnInfo("F_META_TYPENAME", "数据类型名称")
            });


            DataTable dtMetaType = new DataTable();

            //编码
            dtMetaType.Columns.Add("F_META_TYPE", typeof(decimal));

            //名称
            dtMetaType.Columns.Add("F_META_TYPENAME", typeof(string));

            lueControl.Properties.DisplayMember = "F_META_TYPENAME";
            lueControl.Properties.ValueMember   = "F_META_TYPE";

            lueControl.Properties.TextEditStyle = TextEditStyles.DisableTextEditor;


            dtMetaType.Rows.Add(1, "字符");
            dtMetaType.Rows.Add(2, "整型");
            dtMetaType.Rows.Add(3, "浮点");
            dtMetaType.Rows.Add(4, "日期时间");

            //有数据情况下绑定
            lueControl.Properties.DataSource = dtMetaType;
        }
Example #36
0
        /// <summary>
        /// 绑定下拉框
        /// </summary>
        /// <param name="lookUpEdit">控件名</param>
        /// <param name="myDt">数据源</param>
        /// <param name="DisplayMember">显示值</param>
        /// <param name="ValueMember">实际值</param>
        /// <param name="IsNull">是否显示空行</param>
        /// <param name="paramText">显示列头的前缀</param>
        internal static void BindLookUpEdit(LookUpEdit lookUpEdit, DataTable myDt, string DisplayMember, string ValueMember, bool IsNull, string paramText)
        {
            if (IsNull)
            {
                DataRow myDr = myDt.NewRow();
                myDr[ValueMember]   = "";
                myDr[DisplayMember] = "";
                myDt.Rows.InsertAt(myDr, 0);
                myDt.AcceptChanges();
            }
            lookUpEdit.Properties.Columns.Clear();
            LookUpColumnInfo lupColumnInfoID = new LookUpColumnInfo();

            lupColumnInfoID.FieldName = ValueMember;
            lupColumnInfoID.Caption   = paramText + "编号";
            lupColumnInfoID.Width     = 10;
            lookUpEdit.Properties.Columns.Add(lupColumnInfoID);

            LookUpColumnInfo lupColumnInfoName = new LookUpColumnInfo();

            lupColumnInfoName.FieldName = DisplayMember;
            lupColumnInfoName.Caption   = paramText + "名称";
            lupColumnInfoName.Width     = 10;
            lookUpEdit.Properties.Columns.Add(lupColumnInfoName);

            lookUpEdit.Properties.ShowFooter   = false;
            lookUpEdit.Properties.ShowHeader   = true;
            lookUpEdit.Properties.ShowLines    = true;
            lookUpEdit.Properties.AllowFocused = false;

            lookUpEdit.Properties.DropDownRows  = myDt.Rows.Count;
            lookUpEdit.Properties.DataSource    = myDt;
            lookUpEdit.Properties.DisplayMember = DisplayMember;
            lookUpEdit.Properties.ValueMember   = ValueMember;
            lookUpEdit.Properties.NullText      = "";
            lookUpEdit.Properties.BestFit();
        }
Example #37
0
        /// <summary>
        /// 부서 세팅
        /// </summary>
        /// <param name="lueNm"></param>
        /// <param name="i"></param>
        /// <param name="paramValue"></param>
        /// <param name="valMem"></param>
        /// <param name="disMem"></param>
        private void setLue(LookUpEdit lueNm, int i, string paramValue, string valMem, string disMem)
        {
            Cesco.FW.Global.DBAdapter.DBAdapters db = new Cesco.FW.Global.DBAdapter.DBAdapters(strUserID, System.Reflection.MethodBase.GetCurrentMethod());

            db.Procedure.ProcedureName = "CESNET2.dbo.SP_DEPT_SEARCH_ALL";
            db.Procedure.ParamAdd("@부서코드", paramValue);
            if (strUserID == "15897" || strUserID == "18251" || strUserID == "18146")
            {
                db.Procedure.ParamAdd("@파트코드", "");
            }
            else
            {
                db.Procedure.ParamAdd("@파트코드", i == 4 ? strOriPartCode.Replace(" ", "") : "");
            }

            try
            {
                DataSet ds = db.ProcedureToDataSet();

                lueNm.Properties.ValueMember   = valMem;
                lueNm.Properties.DisplayMember = disMem;
                if (ds == null || ds.Tables.Count < 1 || ds.Tables[0].Rows.Count == 0)
                {
                    XtraMessageBox.Show("조회된 데이터가 없습니다.");
                    return;
                }
                lueNm.Properties.DataSource = ds.Tables[i];
            }
            catch (Cesco.FW.Global.DBAdapter.WcfException ex)
            {
                MessageBox.Show(ex.Message, "DB 에러");
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "처리되지 않은 에러");
            }
        }
Example #38
0
 private void itemTinhTienChoBanKhac_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
 {
     try
     {
         if (gvBan.GetFocusedRowCellValue("ID") == null)
         {
             XtraMessageBox.Show("Hãy chọn [Bàn] cần chuyển.", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error);
             return;
         }
         if (gvBan.GetFocusedRowCellValue("HDID") == null)
         {
             XtraMessageBox.Show("Bàn đang trống, không thể thực hiện chức năng này.", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error);
             return;
         }
         XtraInputBoxArgs args = new XtraInputBoxArgs();
         // set required Input Box options
         args.Caption            = "TÍNH TIỀN CHO BÀN KHÁC";
         args.Prompt             = "Chọn bàn được tính tiền";
         args.DefaultButtonIndex = 0;
         //
         LookUpEdit lookBan = new LookUpEdit();
         lookBan.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Tên bàn", 300));
         lookBan.Properties.ShowFooter    = lookBan.Properties.ShowHeader = lookBan.Properties.ShowLines = false;
         lookBan.Properties.DataSource    = db.BANs.Where(p => p.HDID != null && p.ID != (int)gvBan.GetFocusedRowCellValue("ID")).Select(p => new { Name = p.Name + p.Number, p.ID });
         lookBan.Properties.DisplayMember = "Name";
         lookBan.Properties.ValueMember   = "ID";
         //
         args.Editor          = lookBan;
         args.DefaultResponse = db.BANs.Where(p => p.HDID != null && p.ID != (int)gvBan.GetFocusedRowCellValue("ID")).ToList()[0].ID;
         var result = XtraInputBox.Show(args).ToString();
         var objBan = db.BANs.SingleOrDefault(p => p.ID == int.Parse(result));
         db.Update_HD3((int)gvBan.GetFocusedRowCellValue("HDID"), objBan.HDID);
         LoadData();
     }
     catch { }
 }
 /// <summary>
 /// Grid columns lookup setup
 /// </summary>
 private void SetLookup(LookUpEdit lookup)
 {
     lookup.Properties.DataSource = pipelinePiecesBindingSource;
     lookup.Properties.ValueMember = "Id";
     lookup.Properties.DisplayMember = "Number";
 }
Example #40
0
 /// <summary>
 /// 下拉字典控件的绑定
 /// </summary>
 /// <param name="tab">控件关联数据源</param>
 /// <param name="ctrl">下拉控件</param>
 /// <param name="fld">控件关联字段</param>
 /// <param name="dictsrc">字典数据源</param>
 /// <param name="dicttxt">字典显示值</param>
 /// <param name="dictval">字典Value值</param>
 private void bindctrl(DataTable tab, LookUpEdit ctrl, string fld, DataTable tabdict, string dicttxt, string dictval)
 {
     if (null == tab || null == ctrl || string.IsNullOrEmpty(fld))
         return;
     if (null == tabdict || (string.IsNullOrEmpty(dictval) && string.IsNullOrEmpty(dicttxt)))
     {
         ctrl.DataBindings.Add("Text", tab, fld);
         return;
     }
     ctrl.Properties.DataSource = tabdict;
     ctrl.Properties.ValueMember = string.IsNullOrEmpty(dictval) ? dicttxt : dictval;
     ctrl.Properties.DisplayMember = string.IsNullOrEmpty(dicttxt) ? dictval : dicttxt;
     ctrl.DataBindings.Add("EditValue", tab, fld);
 }
 /// <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(ApprovalForm));
     this.boxSizedList = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.tabControlOrderDetail = new DevExpress.XtraTab.XtraTabControl();
     this.tabGeneral = new DevExpress.XtraTab.XtraTabPage();
     this.layoutControl5 = new DevExpress.XtraLayout.LayoutControl();
     this.uxApproval = new HCMIS.Desktop.Forms.Controls.Approval();
     this.layoutControlGroup12 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.tabFacility = new DevExpress.XtraTab.XtraTabPage();
     this.layoutControl4 = new DevExpress.XtraLayout.LayoutControl();
     this.gridOrderDetailForFacility = new DevExpress.XtraGrid.GridControl();
     this.gridViewOrderDetailForFacility = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlGroup5 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.btnReturnToEdit = new DevExpress.XtraEditors.SimpleButton();
     this.btnSaveDraft = new DevExpress.XtraEditors.SimpleButton();
     this.txtFacilityName = new DevExpress.XtraEditors.TextEdit();
     this.btnPrintStockOutReport = new DevExpress.XtraEditors.SimpleButton();
     this.lkMode = new DevExpress.XtraEditors.LookUpEdit();
     this.btnCancelApproval = new DevExpress.XtraEditors.SimpleButton();
     this.btnApproveOrder = new DevExpress.XtraEditors.SimpleButton();
     this.gridOrder = new DevExpress.XtraGrid.GridControl();
     this.gridViewOrder = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn42 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn43 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRoute = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup18 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem49 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem59 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.splitterItem1 = new DevExpress.XtraLayout.SplitterItem();
     this.ActionGroup = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem23 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.toolTip = new DevExpress.Utils.ToolTipController();
     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();
     this.bgWorker = new System.ComponentModel.BackgroundWorker();
     this.layoutControlGroup7 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem28 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem33 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup11 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem34 = new DevExpress.XtraLayout.LayoutControlItem();
     this.bindingSource1 = new System.Windows.Forms.BindingSource();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.deletetabFacility = new DevExpress.XtraLayout.LayoutControlGroup();
     ((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.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlOrderDetail)).BeginInit();
     this.tabControlOrderDetail.SuspendLayout();
     this.tabGeneral.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl5)).BeginInit();
     this.layoutControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     this.tabFacility.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl4)).BeginInit();
     this.layoutControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrderDetailForFacility)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOrderDetailForFacility)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFacilityName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkMode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem49)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem59)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).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.layoutControlGroup7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem33)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem34)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deletetabFacility)).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;
     //
     // layoutControl1
     //
     this.layoutControl1.AllowCustomizationMenu = false;
     this.layoutControl1.Controls.Add(this.tabControlOrderDetail);
     this.layoutControl1.Controls.Add(this.btnReturnToEdit);
     this.layoutControl1.Controls.Add(this.btnSaveDraft);
     this.layoutControl1.Controls.Add(this.txtFacilityName);
     this.layoutControl1.Controls.Add(this.btnPrintStockOutReport);
     this.layoutControl1.Controls.Add(this.lkMode);
     this.layoutControl1.Controls.Add(this.btnCancelApproval);
     this.layoutControl1.Controls.Add(this.btnApproveOrder);
     this.layoutControl1.Controls.Add(this.gridOrder);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem7});
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(12, 183, 250, 350);
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1354, 575);
     this.layoutControl1.TabIndex = 30;
     this.layoutControl1.Text = "layoutControl1";
     //
     // tabControlOrderDetail
     //
     this.tabControlOrderDetail.Location = new System.Drawing.Point(271, 5);
     this.tabControlOrderDetail.Name = "tabControlOrderDetail";
     this.tabControlOrderDetail.SelectedTabPage = this.tabGeneral;
     this.tabControlOrderDetail.Size = new System.Drawing.Size(1078, 539);
     this.tabControlOrderDetail.TabIndex = 1;
     this.tabControlOrderDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabGeneral,
     this.tabFacility});
     this.tabControlOrderDetail.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabControlOrderDetail_SelectedPageChanged);
     this.tabControlOrderDetail.Click += new System.EventHandler(this.tabControlOrderDetail_Click);
     //
     // tabGeneral
     //
     this.tabGeneral.Controls.Add(this.layoutControl5);
     this.tabGeneral.Name = "tabGeneral";
     this.tabGeneral.Size = new System.Drawing.Size(1072, 511);
     this.tabGeneral.Text = "General";
     //
     // layoutControl5
     //
     this.layoutControl5.AllowCustomizationMenu = false;
     this.layoutControl5.Controls.Add(this.uxApproval);
     this.layoutControl5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl5.Location = new System.Drawing.Point(0, 0);
     this.layoutControl5.Name = "layoutControl5";
     this.layoutControl5.Root = this.layoutControlGroup12;
     this.layoutControl5.Size = new System.Drawing.Size(1072, 511);
     this.layoutControl5.TabIndex = 0;
     this.layoutControl5.Text = "layoutControl5";
     //
     // uxApproval
     //
     this.uxApproval.Location = new System.Drawing.Point(12, 12);
     this.uxApproval.Name = "uxApproval";
     this.uxApproval.ShowAMCandMOS = true;
     this.uxApproval.ShowPipeline = true;
     this.uxApproval.Size = new System.Drawing.Size(1048, 487);
     this.uxApproval.TabIndex = 65;
     //
     // layoutControlGroup12
     //
     this.layoutControlGroup12.CustomizationFormText = "layoutControlGroup12";
     this.layoutControlGroup12.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup12.GroupBordersVisible = false;
     this.layoutControlGroup12.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem2});
     this.layoutControlGroup12.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup12.Name = "layoutControlGroup12";
     this.layoutControlGroup12.Size = new System.Drawing.Size(1072, 511);
     this.layoutControlGroup12.Text = "layoutControlGroup12";
     this.layoutControlGroup12.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.uxApproval;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(1052, 491);
     this.layoutControlItem2.Text = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible = false;
     //
     // tabFacility
     //
     this.tabFacility.Controls.Add(this.layoutControl4);
     this.tabFacility.Name = "tabFacility";
     this.tabFacility.Size = new System.Drawing.Size(1072, 511);
     this.tabFacility.Text = "Facility";
     //
     // layoutControl4
     //
     this.layoutControl4.AllowCustomizationMenu = false;
     this.layoutControl4.Controls.Add(this.gridOrderDetailForFacility);
     this.layoutControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl4.Location = new System.Drawing.Point(0, 0);
     this.layoutControl4.Name = "layoutControl4";
     this.layoutControl4.Root = this.layoutControlGroup5;
     this.layoutControl4.Size = new System.Drawing.Size(1072, 511);
     this.layoutControl4.TabIndex = 0;
     this.layoutControl4.Text = "layoutControl4";
     //
     // gridOrderDetailForFacility
     //
     this.gridOrderDetailForFacility.Location = new System.Drawing.Point(12, 12);
     this.gridOrderDetailForFacility.MainView = this.gridViewOrderDetailForFacility;
     this.gridOrderDetailForFacility.Name = "gridOrderDetailForFacility";
     this.gridOrderDetailForFacility.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemMemoEdit3,
     this.repositoryItemMemoEdit4});
     this.gridOrderDetailForFacility.Size = new System.Drawing.Size(1048, 487);
     this.gridOrderDetailForFacility.TabIndex = 45;
     this.gridOrderDetailForFacility.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewOrderDetailForFacility});
     //
     // gridViewOrderDetailForFacility
     //
     this.gridViewOrderDetailForFacility.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn12,
     this.gridColumn11,
     this.gridColumn17,
     this.gridColumn20,
     this.gridColumn22,
     this.gridColumn23});
     this.gridViewOrderDetailForFacility.GridControl = this.gridOrderDetailForFacility;
     this.gridViewOrderDetailForFacility.IndicatorWidth = 40;
     this.gridViewOrderDetailForFacility.Name = "gridViewOrderDetailForFacility";
     this.gridViewOrderDetailForFacility.OptionsBehavior.Editable = false;
     this.gridViewOrderDetailForFacility.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewOrderDetailForFacility.OptionsCustomization.AllowColumnResizing = false;
     this.gridViewOrderDetailForFacility.OptionsCustomization.AllowFilter = false;
     this.gridViewOrderDetailForFacility.OptionsCustomization.AllowQuickHideColumns = false;
     this.gridViewOrderDetailForFacility.OptionsCustomization.AllowSort = false;
     this.gridViewOrderDetailForFacility.OptionsView.RowAutoHeight = true;
     this.gridViewOrderDetailForFacility.OptionsView.ShowGroupedColumns = true;
     this.gridViewOrderDetailForFacility.OptionsView.ShowGroupPanel = false;
     this.gridViewOrderDetailForFacility.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridViewOrderDetailForFacility_CustomDrawRowIndicator);
     this.gridViewOrderDetailForFacility.CustomColumnDisplayText += new DevExpress.XtraGrid.Views.Base.CustomColumnDisplayTextEventHandler(this.gridViewOrderDetailForFacility_CustomColumnDisplayText);
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceCell.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
     this.gridColumn4.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn4.Caption = "Item Name";
     this.gridColumn4.ColumnEdit = this.repositoryItemMemoEdit3;
     this.gridColumn4.FieldName = "FullItemName";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn4.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn4.OptionsFilter.AllowFilter = false;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 0;
     this.gridColumn4.Width = 226;
     //
     // repositoryItemMemoEdit3
     //
     this.repositoryItemMemoEdit3.LinesCount = 2;
     this.repositoryItemMemoEdit3.Name = "repositoryItemMemoEdit3";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Unit";
     this.gridColumn5.FieldName = "Text";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsFilter.AllowFilter = false;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 1;
     this.gridColumn5.Width = 76;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "SOH";
     this.gridColumn6.DisplayFormat.FormatString = "#,##0";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "SOH";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.OptionsFilter.AllowFilter = false;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 2;
     this.gridColumn6.Width = 47;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Dmg.";
     this.gridColumn7.DisplayFormat.FormatString = "#,##0";
     this.gridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn7.FieldName = "Damaged";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsFilter.AllowFilter = false;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 3;
     this.gridColumn7.Width = 55;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Exp.";
     this.gridColumn8.DisplayFormat.FormatString = "#,##0";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn8.FieldName = "Expired";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowEdit = false;
     this.gridColumn8.OptionsFilter.AllowFilter = false;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 4;
     this.gridColumn8.Width = 47;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Total Requested";
     this.gridColumn9.DisplayFormat.FormatString = "#,##0";
     this.gridColumn9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.FieldName = "TotalRequested";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowEdit = false;
     this.gridColumn9.OptionsFilter.AllowFilter = false;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 5;
     this.gridColumn9.Width = 131;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Last Approved Qty";
     this.gridColumn10.DisplayFormat.FormatString = "#,##0";
     this.gridColumn10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn10.FieldName = "LastApprovedQuantity";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowEdit = false;
     this.gridColumn10.OptionsFilter.AllowFilter = false;
     this.gridColumn10.Width = 118;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Total Issued";
     this.gridColumn12.DisplayFormat.FormatString = "#,##0";
     this.gridColumn12.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn12.FieldName = "TotalIssued";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.AllowEdit = false;
     this.gridColumn12.OptionsFilter.AllowFilter = false;
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 6;
     this.gridColumn12.Width = 107;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "No. Refills Count";
     this.gridColumn11.FieldName = "NumberOfRefills";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowEdit = false;
     this.gridColumn11.OptionsFilter.AllowFilter = false;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 7;
     this.gridColumn11.Width = 133;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Last Visit Date";
     this.gridColumn17.ColumnEdit = this.repositoryItemMemoEdit4;
     this.gridColumn17.FieldName = "LastRequestedDate";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.OptionsColumn.AllowEdit = false;
     this.gridColumn17.OptionsFilter.AllowFilter = false;
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 8;
     this.gridColumn17.Width = 120;
     //
     // repositoryItemMemoEdit4
     //
     this.repositoryItemMemoEdit4.LinesCount = 2;
     this.repositoryItemMemoEdit4.Name = "repositoryItemMemoEdit4";
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "pAMC";
     this.gridColumn20.DisplayFormat.FormatString = "#,##0";
     this.gridColumn20.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn20.FieldName = "gridColumn20";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.OptionsColumn.AllowEdit = false;
     this.gridColumn20.OptionsFilter.AllowFilter = false;
     this.gridColumn20.UnboundExpression = "[TotalIssued]/6";
     this.gridColumn20.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 9;
     this.gridColumn20.Width = 61;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "pMin";
     this.gridColumn22.DisplayFormat.FormatString = "#,##0";
     this.gridColumn22.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn22.FieldName = "gridColumn22";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.OptionsColumn.AllowEdit = false;
     this.gridColumn22.OptionsFilter.AllowFilter = false;
     this.gridColumn22.ToolTip = "2 * [AMC]";
     this.gridColumn22.UnboundExpression = "2 * [gridColumn20]";
     this.gridColumn22.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 10;
     this.gridColumn22.Width = 70;
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "pMax";
     this.gridColumn23.DisplayFormat.FormatString = "#,##0";
     this.gridColumn23.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn23.FieldName = "gridColumn23";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.OptionsColumn.AllowEdit = false;
     this.gridColumn23.OptionsFilter.AllowFilter = false;
     this.gridColumn23.ToolTip = "4 * [AMC]";
     this.gridColumn23.UnboundExpression = "4*[gridColumn20]";
     this.gridColumn23.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 11;
     this.gridColumn23.Width = 83;
     //
     // layoutControlGroup5
     //
     this.layoutControlGroup5.CustomizationFormText = "layoutControlGroup5";
     this.layoutControlGroup5.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup5.GroupBordersVisible = false;
     this.layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem3});
     this.layoutControlGroup5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup5.Name = "layoutControlGroup5";
     this.layoutControlGroup5.Size = new System.Drawing.Size(1072, 511);
     this.layoutControlGroup5.Text = "layoutControlGroup5";
     this.layoutControlGroup5.TextVisible = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.gridOrderDetailForFacility;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(1052, 491);
     this.layoutControlItem3.Text = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible = false;
     //
     // btnReturnToEdit
     //
     this.btnReturnToEdit.Image = ((System.Drawing.Image)(resources.GetObject("btnReturnToEdit.Image")));
     this.btnReturnToEdit.Location = new System.Drawing.Point(754, 549);
     this.btnReturnToEdit.Name = "btnReturnToEdit";
     this.btnReturnToEdit.Size = new System.Drawing.Size(146, 22);
     this.btnReturnToEdit.StyleController = this.layoutControl1;
     this.btnReturnToEdit.TabIndex = 42;
     this.btnReturnToEdit.Tag = "Approve";
     this.btnReturnToEdit.Text = "Return To Requisition";
     this.btnReturnToEdit.Click += new System.EventHandler(this.btnReturnToEdit_Click);
     //
     // btnSaveDraft
     //
     this.btnSaveDraft.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveDraft.Image")));
     this.btnSaveDraft.Location = new System.Drawing.Point(904, 549);
     this.btnSaveDraft.Name = "btnSaveDraft";
     this.btnSaveDraft.Size = new System.Drawing.Size(146, 22);
     this.btnSaveDraft.StyleController = this.layoutControl1;
     this.btnSaveDraft.TabIndex = 41;
     this.btnSaveDraft.Tag = "Cancel";
     this.btnSaveDraft.Text = "Save Draft";
     this.btnSaveDraft.Click += new System.EventHandler(this.btnSaveDraft_Click);
     //
     // txtFacilityName
     //
     this.txtFacilityName.Location = new System.Drawing.Point(47, 29);
     this.txtFacilityName.Name = "txtFacilityName";
     this.txtFacilityName.Size = new System.Drawing.Size(215, 20);
     this.txtFacilityName.StyleController = this.layoutControl1;
     this.txtFacilityName.TabIndex = 38;
     this.txtFacilityName.EditValueChanged += new System.EventHandler(this.txtFacilityName_EditValueChanged);
     //
     // btnPrintStockOutReport
     //
     this.btnPrintStockOutReport.Location = new System.Drawing.Point(24, 55);
     this.btnPrintStockOutReport.Name = "btnPrintStockOutReport";
     this.btnPrintStockOutReport.Size = new System.Drawing.Size(106, 22);
     this.btnPrintStockOutReport.StyleController = this.layoutControl1;
     this.btnPrintStockOutReport.TabIndex = 37;
     this.btnPrintStockOutReport.Text = "Stockout Report";
     this.btnPrintStockOutReport.Click += new System.EventHandler(this.btnPrintStockOutReport_Click);
     //
     // lkMode
     //
     this.lkMode.Location = new System.Drawing.Point(47, 5);
     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.NullText = "Select Activity";
     this.lkMode.Properties.ValueMember = "ID";
     this.lkMode.Size = new System.Drawing.Size(215, 20);
     this.lkMode.StyleController = this.layoutControl1;
     this.lkMode.TabIndex = 34;
     this.lkMode.EditValueChanged += new System.EventHandler(this.lkStoreType_EditValueChanged);
     //
     // btnCancelApproval
     //
     this.btnCancelApproval.Image = ((System.Drawing.Image)(resources.GetObject("btnCancelApproval.Image")));
     this.btnCancelApproval.Location = new System.Drawing.Point(1204, 549);
     this.btnCancelApproval.Name = "btnCancelApproval";
     this.btnCancelApproval.Size = new System.Drawing.Size(146, 22);
     this.btnCancelApproval.StyleController = this.layoutControl1;
     this.btnCancelApproval.TabIndex = 31;
     this.btnCancelApproval.Text = "Cancel";
     this.btnCancelApproval.Click += new System.EventHandler(this.BtnCancelClicked);
     //
     // btnApproveOrder
     //
     this.btnApproveOrder.Image = ((System.Drawing.Image)(resources.GetObject("btnApproveOrder.Image")));
     this.btnApproveOrder.Location = new System.Drawing.Point(1054, 549);
     this.btnApproveOrder.Name = "btnApproveOrder";
     this.btnApproveOrder.Size = new System.Drawing.Size(146, 22);
     this.btnApproveOrder.StyleController = this.layoutControl1;
     this.btnApproveOrder.TabIndex = 30;
     this.btnApproveOrder.Text = "Approve Quantity";
     this.btnApproveOrder.Click += new System.EventHandler(this.OnSaveApproval);
     //
     // gridOrder
     //
     this.gridOrder.Location = new System.Drawing.Point(5, 53);
     this.gridOrder.MainView = this.gridViewOrder;
     this.gridOrder.Name = "gridOrder";
     this.gridOrder.Size = new System.Drawing.Size(257, 491);
     this.gridOrder.TabIndex = 15;
     this.gridOrder.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewOrder});
     //
     // gridViewOrder
     //
     this.gridViewOrder.Appearance.FocusedRow.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridViewOrder.Appearance.FocusedRow.Options.UseFont = true;
     this.gridViewOrder.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn42,
     this.gridColumn43,
     this.colRoute});
     this.gridViewOrder.GridControl = this.gridOrder;
     this.gridViewOrder.GroupCount = 1;
     this.gridViewOrder.Name = "gridViewOrder";
     this.gridViewOrder.OptionsBehavior.Editable = false;
     this.gridViewOrder.OptionsCustomization.AllowSort = false;
     this.gridViewOrder.OptionsFilter.AllowFilterEditor = false;
     this.gridViewOrder.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewOrder.OptionsSelection.UseIndicatorForSelection = false;
     this.gridViewOrder.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewOrder.OptionsView.ShowGroupPanel = false;
     this.gridViewOrder.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colRoute, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewOrder.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.OnOutstandingOrdersRowClicked);
     //
     // gridColumn42
     //
     this.gridColumn42.Caption = "Ref No";
     this.gridColumn42.FieldName = "RefNo";
     this.gridColumn42.Name = "gridColumn42";
     this.gridColumn42.OptionsColumn.AllowMove = false;
     this.gridColumn42.OptionsFilter.AllowFilter = false;
     this.gridColumn42.Visible = true;
     this.gridColumn42.VisibleIndex = 0;
     //
     // gridColumn43
     //
     this.gridColumn43.Caption = "Requested By";
     this.gridColumn43.FieldName = "RequestedBy";
     this.gridColumn43.Name = "gridColumn43";
     this.gridColumn43.OptionsColumn.AllowMove = false;
     this.gridColumn43.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn43.OptionsFilter.AllowFilter = false;
     this.gridColumn43.Visible = true;
     this.gridColumn43.VisibleIndex = 1;
     this.gridColumn43.Width = 159;
     //
     // colRoute
     //
     this.colRoute.Caption = "Route";
     this.colRoute.FieldName = "RouteName";
     this.colRoute.Name = "colRoute";
     this.colRoute.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.True;
     this.colRoute.OptionsColumn.AllowMove = false;
     this.colRoute.Visible = true;
     this.colRoute.VisibleIndex = 2;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btnPrintStockOutReport;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(0, 50);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(110, 0);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(110, 26);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(261, 26);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.Text = "layoutControlItem7";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible = false;
     //
     // 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.layoutControlGroup4,
     this.ActionGroup});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1354, 575);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "Order Details";
     this.layoutControlGroup4.GroupBordersVisible = false;
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup18});
     this.layoutControlGroup4.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup4.Size = new System.Drawing.Size(1350, 545);
     this.layoutControlGroup4.Text = "Order Details";
     //
     // layoutControlGroup18
     //
     this.layoutControlGroup18.CustomizationFormText = "layoutControlGroup18";
     this.layoutControlGroup18.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem49,
     this.layoutControlItem9,
     this.layoutControlItem59,
     this.layoutControlItem4,
     this.splitterItem1});
     this.layoutControlGroup18.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup18.Name = "layoutControlGroup18";
     this.layoutControlGroup18.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup18.Size = new System.Drawing.Size(1350, 545);
     this.layoutControlGroup18.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup18.Text = "layoutControlGroup18";
     this.layoutControlGroup18.TextLocation = DevExpress.Utils.Locations.Left;
     this.layoutControlGroup18.TextVisible = false;
     //
     // layoutControlItem49
     //
     this.layoutControlItem49.Control = this.gridOrder;
     this.layoutControlItem49.CustomizationFormText = "layoutControlItem49";
     this.layoutControlItem49.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem49.MaxSize = new System.Drawing.Size(261, 0);
     this.layoutControlItem49.MinSize = new System.Drawing.Size(261, 24);
     this.layoutControlItem49.Name = "layoutControlItem49";
     this.layoutControlItem49.Size = new System.Drawing.Size(261, 495);
     this.layoutControlItem49.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem49.Text = "layoutControlItem49";
     this.layoutControlItem49.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem49.TextToControlDistance = 0;
     this.layoutControlItem49.TextVisible = false;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.txtFacilityName;
     this.layoutControlItem9.CustomizationFormText = "layoutControlItem9";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem9.MaxSize = new System.Drawing.Size(0, 24);
     this.layoutControlItem9.MinSize = new System.Drawing.Size(54, 24);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(261, 24);
     this.layoutControlItem9.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem9.Text = "Search:";
     this.layoutControlItem9.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem9.TextSize = new System.Drawing.Size(37, 13);
     this.layoutControlItem9.TextToControlDistance = 5;
     //
     // layoutControlItem59
     //
     this.layoutControlItem59.Control = this.lkMode;
     this.layoutControlItem59.CustomizationFormText = "Mode";
     this.layoutControlItem59.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem59.MaxSize = new System.Drawing.Size(0, 24);
     this.layoutControlItem59.MinSize = new System.Drawing.Size(140, 24);
     this.layoutControlItem59.Name = "layoutControlItem59";
     this.layoutControlItem59.Size = new System.Drawing.Size(261, 24);
     this.layoutControlItem59.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem59.Text = "Mode:";
     this.layoutControlItem59.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem59.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem59.TextToControlDistance = 12;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.tabControlOrderDetail;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(266, 0);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(1082, 543);
     this.layoutControlItem4.Text = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible = false;
     //
     // splitterItem1
     //
     this.splitterItem1.AllowHotTrack = true;
     this.splitterItem1.CustomizationFormText = "splitterItem1";
     this.splitterItem1.Location = new System.Drawing.Point(261, 0);
     this.splitterItem1.Name = "splitterItem1";
     this.splitterItem1.Size = new System.Drawing.Size(5, 543);
     //
     // ActionGroup
     //
     this.ActionGroup.CustomizationFormText = "layoutActions";
     this.ActionGroup.GroupBordersVisible = false;
     this.ActionGroup.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem12,
     this.layoutControlItem23,
     this.layoutControlItem24,
     this.layoutControlItem11,
     this.emptySpaceItem2});
     this.ActionGroup.Location = new System.Drawing.Point(0, 545);
     this.ActionGroup.Name = "ActionGroup";
     this.ActionGroup.Size = new System.Drawing.Size(1350, 26);
     this.ActionGroup.Text = "ActionGroup";
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.Control = this.btnReturnToEdit;
     this.layoutControlItem12.CustomizationFormText = "layoutControlItem12";
     this.layoutControlItem12.Location = new System.Drawing.Point(750, 0);
     this.layoutControlItem12.MaxSize = new System.Drawing.Size(150, 26);
     this.layoutControlItem12.MinSize = new System.Drawing.Size(150, 26);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Size = new System.Drawing.Size(150, 26);
     this.layoutControlItem12.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem12.Tag = "Approve";
     this.layoutControlItem12.Text = "layoutControlItem12";
     this.layoutControlItem12.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem12.TextToControlDistance = 0;
     this.layoutControlItem12.TextVisible = false;
     //
     // layoutControlItem23
     //
     this.layoutControlItem23.Control = this.btnApproveOrder;
     this.layoutControlItem23.CustomizationFormText = "layoutControlItem23";
     this.layoutControlItem23.Location = new System.Drawing.Point(1050, 0);
     this.layoutControlItem23.MaxSize = new System.Drawing.Size(150, 26);
     this.layoutControlItem23.MinSize = new System.Drawing.Size(150, 26);
     this.layoutControlItem23.Name = "layoutControlItem23";
     this.layoutControlItem23.Size = new System.Drawing.Size(150, 26);
     this.layoutControlItem23.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem23.Text = "layoutControlItem23";
     this.layoutControlItem23.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem23.TextToControlDistance = 0;
     this.layoutControlItem23.TextVisible = false;
     //
     // layoutControlItem24
     //
     this.layoutControlItem24.Control = this.btnCancelApproval;
     this.layoutControlItem24.CustomizationFormText = "layoutControlItem24";
     this.layoutControlItem24.Location = new System.Drawing.Point(1200, 0);
     this.layoutControlItem24.MaxSize = new System.Drawing.Size(150, 26);
     this.layoutControlItem24.MinSize = new System.Drawing.Size(150, 26);
     this.layoutControlItem24.Name = "layoutControlItem24";
     this.layoutControlItem24.Size = new System.Drawing.Size(150, 26);
     this.layoutControlItem24.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem24.Text = "layoutControlItem24";
     this.layoutControlItem24.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem24.TextToControlDistance = 0;
     this.layoutControlItem24.TextVisible = false;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.btnSaveDraft;
     this.layoutControlItem11.CustomizationFormText = "layoutControlItem11";
     this.layoutControlItem11.Location = new System.Drawing.Point(900, 0);
     this.layoutControlItem11.MaxSize = new System.Drawing.Size(150, 26);
     this.layoutControlItem11.MinSize = new System.Drawing.Size(150, 26);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(150, 26);
     this.layoutControlItem11.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem11.Tag = "Cancel";
     this.layoutControlItem11.Text = "layoutControlItem11";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem11.TextToControlDistance = 0;
     this.layoutControlItem11.TextVisible = false;
     //
     // 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(750, 26);
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // toolTip
     //
     this.toolTip.ToolTipType = DevExpress.Utils.ToolTipType.SuperTip;
     //
     // 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;
     //
     // layoutControlGroup7
     //
     this.layoutControlGroup7.CustomizationFormText = "layoutControlGroup7";
     this.layoutControlGroup7.Location = new System.Drawing.Point(711, 0);
     this.layoutControlGroup7.Name = "layoutControlGroup7";
     this.layoutControlGroup7.Size = new System.Drawing.Size(97, 111);
     this.layoutControlGroup7.Text = "layoutControlGroup7";
     //
     // emptySpaceItem5
     //
     this.emptySpaceItem5.AllowHotTrack = false;
     this.emptySpaceItem5.CustomizationFormText = "emptySpaceItem5";
     this.emptySpaceItem5.Location = new System.Drawing.Point(735, 51);
     this.emptySpaceItem5.Name = "emptySpaceItem5";
     this.emptySpaceItem5.Size = new System.Drawing.Size(73, 37);
     this.emptySpaceItem5.Text = "emptySpaceItem5";
     this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem28
     //
     this.layoutControlItem28.CustomizationFormText = "layoutControlItem28";
     this.layoutControlItem28.Location = new System.Drawing.Point(0, 269);
     this.layoutControlItem28.Name = "layoutControlItem28";
     this.layoutControlItem28.Size = new System.Drawing.Size(1119, 302);
     this.layoutControlItem28.Text = "layoutControlItem28";
     this.layoutControlItem28.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem28.TextToControlDistance = 0;
     this.layoutControlItem28.TextVisible = false;
     //
     // layoutControlItem33
     //
     this.layoutControlItem33.CustomizationFormText = "layoutControlItem33";
     this.layoutControlItem33.Location = new System.Drawing.Point(735, 68);
     this.layoutControlItem33.Name = "layoutControlItem33";
     this.layoutControlItem33.Size = new System.Drawing.Size(73, 10);
     this.layoutControlItem33.Text = "layoutControlItem33";
     this.layoutControlItem33.TextSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem33.TextToControlDistance = 5;
     //
     // layoutControlGroup11
     //
     this.layoutControlGroup11.CustomizationFormText = "layoutControlGroup11";
     this.layoutControlGroup11.Location = new System.Drawing.Point(605, 0);
     this.layoutControlGroup11.Name = "layoutControlGroup11";
     this.layoutControlGroup11.Size = new System.Drawing.Size(458, 113);
     this.layoutControlGroup11.Text = "layoutControlGroup11";
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(709, 94);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(330, 10);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem34
     //
     this.layoutControlItem34.CustomizationFormText = "layoutControlItem34";
     this.layoutControlItem34.Location = new System.Drawing.Point(931, 26);
     this.layoutControlItem34.Name = "layoutControlItem34";
     this.layoutControlItem34.Size = new System.Drawing.Size(108, 17);
     this.layoutControlItem34.Text = "layoutControlItem34";
     this.layoutControlItem34.TextSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem34.TextToControlDistance = 5;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "General";
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Size = new System.Drawing.Size(1039, 499);
     this.layoutControlGroup3.Text = "General";
     //
     // deletetabFacility
     //
     this.deletetabFacility.CustomizationFormText = "Facility ";
     this.deletetabFacility.Location = new System.Drawing.Point(0, 0);
     this.deletetabFacility.Name = "layoutControlGroup5";
     this.deletetabFacility.Size = new System.Drawing.Size(1039, 499);
     this.deletetabFacility.Text = "Facility ";
     //
     // ApprovalForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1354, 575);
     this.Controls.Add(this.layoutControl1);
     this.Name = "ApprovalForm";
     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.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlOrderDetail)).EndInit();
     this.tabControlOrderDetail.ResumeLayout(false);
     this.tabGeneral.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl5)).EndInit();
     this.layoutControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     this.tabFacility.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl4)).EndInit();
     this.layoutControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridOrderDetailForFacility)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOrderDetailForFacility)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFacilityName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkMode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem49)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem59)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).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.layoutControlGroup7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem33)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem34)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deletetabFacility)).EndInit();
     this.ResumeLayout(false);
 }
Example #42
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode3 = new DevExpress.XtraGrid.GridLevelNode();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmManager));
     this.MainMenu1 = new System.Windows.Forms.MainMenu(this.components);
     this.MenuItem1 = new System.Windows.Forms.MenuItem();
     this.MenuItem2 = new System.Windows.Forms.MenuItem();
     this.MenuItem4 = new System.Windows.Forms.MenuItem();
     this.MenuItem6 = new System.Windows.Forms.MenuItem();
     this.MenuItem7 = new System.Windows.Forms.MenuItem();
     this.MenuItem8 = new System.Windows.Forms.MenuItem();
     this.MenuItem9 = new System.Windows.Forms.MenuItem();
     this.MenuItem10 = new System.Windows.Forms.MenuItem();
     this.MenuItem5 = new System.Windows.Forms.MenuItem();
     this.tabControlManager = new DevExpress.XtraTab.XtraTabControl();
     this.tabManagerOne = new DevExpress.XtraTab.XtraTabPage();
     this.groupIPPMaster = new DevExpress.XtraEditors.GroupControl();
     this.groupIPP = new DevExpress.XtraEditors.GroupControl();
     this.ComboBoxIPP = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.grpIPP2 = new DevExpress.XtraEditors.GroupControl();
     this.btnReset = new DevExpress.XtraEditors.SimpleButton();
     this.lkBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.lkBank = new DevExpress.XtraEditors.LookUpEdit();
     this.IPPdtTo = new DevExpress.XtraEditors.DateEdit();
     this.IPPdtStart = new DevExpress.XtraEditors.DateEdit();
     this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
     this.txtCreditCardScr = new DevExpress.XtraEditors.TextEdit();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.IPPlblDtTo = new System.Windows.Forms.Label();
     this.IPPlblDtFrom = new System.Windows.Forms.Label();
     this.btnReceiveIPP = new DevExpress.XtraEditors.SimpleButton();
     this.btnSendIPP = new DevExpress.XtraEditors.SimpleButton();
     this.btnUpdateIPP = new DevExpress.XtraEditors.SimpleButton();
     this.btnDeleteIPP = new DevExpress.XtraEditors.SimpleButton();
     this.btnNewIPP = new DevExpress.XtraEditors.SimpleButton();
     this.IPPGrid = new DevExpress.XtraGrid.GridControl();
     this.IPPGridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.hypReceipts = new System.Windows.Forms.Label();
     this.hypIPPDetails = new System.Windows.Forms.Label();
     this.GroupIPPDetails = new DevExpress.XtraEditors.GroupControl();
     this.strReferenceNo = new DevExpress.XtraEditors.TextEdit();
     this.label7 = new System.Windows.Forms.Label();
     this.IPPBankCode = new DevExpress.XtraEditors.LookUpEdit();
     this.IPPNMonths = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.IPPCCNo = new DevExpress.XtraEditors.TextEdit();
     this.IPPStatus = new DevExpress.XtraEditors.TextEdit();
     this.IPPDateRcv = new DevExpress.XtraEditors.TextEdit();
     this.IPPDateSent = new DevExpress.XtraEditors.TextEdit();
     this.IPPBranchCode = new DevExpress.XtraEditors.TextEdit();
     this.IPPCreatedDate = new DevExpress.XtraEditors.TextEdit();
     this.IPPLBL1 = new System.Windows.Forms.Label();
     this.IPPLBL16 = new System.Windows.Forms.Label();
     this.IPPMerchantNo = new DevExpress.XtraEditors.TextEdit();
     this.IPPLBL8 = new System.Windows.Forms.Label();
     this.IPPLBL14 = new System.Windows.Forms.Label();
     this.IPPLBL12 = new System.Windows.Forms.Label();
     this.IPPLBL13 = new System.Windows.Forms.Label();
     this.IPPLBL11 = new System.Windows.Forms.Label();
     this.IPPLBL10 = new System.Windows.Forms.Label();
     this.IPPLBL9 = new System.Windows.Forms.Label();
     this.IPPLBL7 = new System.Windows.Forms.Label();
     this.IPPAmount = new DevExpress.XtraEditors.TextEdit();
     this.IPPInterest = new DevExpress.XtraEditors.TextEdit();
     this.IPPNettAmount = new DevExpress.XtraEditors.TextEdit();
     this.IPPLBL5 = new System.Windows.Forms.Label();
     this.IPPLBL6 = new System.Windows.Forms.Label();
     this.IPPLBL4 = new System.Windows.Forms.Label();
     this.IPPLBL3 = new System.Windows.Forms.Label();
     this.IPPLBL2 = new System.Windows.Forms.Label();
     this.IPPMemberId = new DevExpress.XtraEditors.TextEdit();
     this.IPPMemberName = new DevExpress.XtraEditors.TextEdit();
     this.IPPId = new DevExpress.XtraEditors.TextEdit();
     this.groupIPPReceipt = new DevExpress.XtraEditors.GroupControl();
     this.btnReceiptUnlink = new DevExpress.XtraEditors.SimpleButton();
     this.btnReceiptLink = new DevExpress.XtraEditors.SimpleButton();
     this.gridReceipt = new DevExpress.XtraGrid.GridControl();
     this.IPPReceiptView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnIPPR = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label10 = new System.Windows.Forms.Label();
     this.IPPReceiptStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.groupCashCardMaster = new DevExpress.XtraEditors.GroupControl();
     this.groupCashCard = new DevExpress.XtraEditors.GroupControl();
     this.pbSelect = new System.Windows.Forms.PictureBox();
     this.txtFilePath = new DevExpress.XtraEditors.TextEdit();
     this.label19 = new System.Windows.Forms.Label();
     this.btnCashCardImport = new DevExpress.XtraEditors.SimpleButton();
     this.panel3 = new System.Windows.Forms.Panel();
     this.lblOne_4 = new DevExpress.XtraEditors.SimpleButton();
     this.lblOne_3 = new DevExpress.XtraEditors.SimpleButton();
     this.lblOne_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblOne_1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupGIROMaster = new DevExpress.XtraEditors.GroupControl();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tabGiroDetails = new DevExpress.XtraTab.XtraTabPage();
     this.luedtBankBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtBank = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtPackage = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.label70 = new System.Windows.Forms.Label();
     this.txtPackageDesc = new DevExpress.XtraEditors.TextEdit();
     this.txtAccountNo = new DevExpress.XtraEditors.TextEdit();
     this.txtGIROId = new DevExpress.XtraEditors.TextEdit();
     this.txtRemark = new DevExpress.XtraEditors.MemoEdit();
     this.lblGiro_BankBranch = new System.Windows.Forms.Label();
     this.lblGiro_BankACNumber = new System.Windows.Forms.Label();
     this.lblGiro_BankCode = new System.Windows.Forms.Label();
     this.lblGiro_Remark = new System.Windows.Forms.Label();
     this.lblGiro_Package = new System.Windows.Forms.Label();
     this.lblGiro_Branch = new System.Windows.Forms.Label();
     this.lblGiro_MemberID = new System.Windows.Forms.Label();
     this.lblGiroID = new System.Windows.Forms.Label();
     this.tabGiroTrnsHistory = new DevExpress.XtraTab.XtraTabPage();
     this.GridTransaction = new DevExpress.XtraGrid.GridControl();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GroupGiro = new DevExpress.XtraEditors.GroupControl();
     this.comboBoxGiroStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label63 = new System.Windows.Forms.Label();
     this.btnImport = new DevExpress.XtraEditors.SimpleButton();
     this.btnGiroExport = new DevExpress.XtraEditors.SimpleButton();
     this.btnGiroUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.btnGiroDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnGiroNew = new DevExpress.XtraEditors.SimpleButton();
     this.GiroGrid = new DevExpress.XtraGrid.GridControl();
     this.GIROGridView = 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.tabManagerTwo = new DevExpress.XtraTab.XtraTabPage();
     this.GrpPayroll = new DevExpress.XtraEditors.GroupControl();
     this.progressBarControl1 = new DevExpress.XtraEditors.ProgressBarControl();
     this.cbJob = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label8 = new System.Windows.Forms.Label();
     this.grpGridExcel = new DevExpress.XtraEditors.GroupControl();
     this.gridExcel = new DevExpress.XtraGrid.GridControl();
     this.gridViewExcel = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.FirstPayDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.SecondPayDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnPayrollExport = new DevExpress.XtraEditors.SimpleButton();
     this.btnPayrollGenerate = new DevExpress.XtraEditors.SimpleButton();
     this.btnPayrollDelete = new DevExpress.XtraEditors.SimpleButton();
     this.comboBoxEditMTH = new DevExpress.XtraEditors.ComboBoxEdit();
     this.comboBoxEditYR = new DevExpress.XtraEditors.ComboBoxEdit();
     this.lblYear = new System.Windows.Forms.Label();
     this.lblMonth = new System.Windows.Forms.Label();
     this.cmbxPayroll = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gridPayroll = new DevExpress.XtraGrid.GridControl();
     this.gridViewPayroll = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nEmployeeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtFirstRunDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nNormalOT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nPublicHolidayOT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nOffDayOT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nPartTimeWorkHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nALEntitlementHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nPHEntitlementHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mServiceReimbursements = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nTotalLateness = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nUnpaidAL = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nUnpaidTO = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nUnpaidMedical = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mCommission = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mCommissionLatenessPenalty = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtSecondRunDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabManagerThree = new DevExpress.XtraTab.XtraTabPage();
     this.lblThree_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblThree_1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblThree_3 = new DevExpress.XtraEditors.SimpleButton();
     this.lblThree_4 = new DevExpress.XtraEditors.SimpleButton();
     this.grpClassSchedule = new DevExpress.XtraEditors.GroupControl();
     this.label9 = new System.Windows.Forms.Label();
     this.comboBoxHall = new DevExpress.XtraEditors.LookUpEdit();
     this.comboBoxBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.btnRefreshClassSchedule = new DevExpress.XtraEditors.SimpleButton();
     this.cmbxScheduleType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.lblPQBranch = new System.Windows.Forms.Label();
     this.lblScheduleType = new System.Windows.Forms.Label();
     this.lblSUN = new System.Windows.Forms.Label();
     this.panelSun = new System.Windows.Forms.Panel();
     this.panelSat = new System.Windows.Forms.Panel();
     this.lblFRI = new System.Windows.Forms.Label();
     this.lblTHU = new System.Windows.Forms.Label();
     this.lblWED = new System.Windows.Forms.Label();
     this.lblTUE = new System.Windows.Forms.Label();
     this.panelMon = new System.Windows.Forms.Panel();
     this.panelFri = new System.Windows.Forms.Panel();
     this.panelThu = new System.Windows.Forms.Panel();
     this.panelWed = new System.Windows.Forms.Panel();
     this.panelTue = new System.Windows.Forms.Panel();
     this.lblMON = new System.Windows.Forms.Label();
     this.btnPrintClassSchedule = new DevExpress.XtraEditors.SimpleButton();
     this.btnUpdateClassSchedule = new DevExpress.XtraEditors.SimpleButton();
     this.btnNewClassSchedule = new DevExpress.XtraEditors.SimpleButton();
     this.lblSAT = new System.Windows.Forms.Label();
     this.groupMemCard = new DevExpress.XtraEditors.GroupControl();
     this.grpRoadShow = new DevExpress.XtraEditors.GroupControl();
     this.grpNextSemSchedule = new DevExpress.XtraEditors.GroupControl();
     this.tabManagerFour = new DevExpress.XtraTab.XtraTabPage();
     this.lblFour_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_3 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_4 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_5 = new DevExpress.XtraEditors.SimpleButton();
     this.panel2 = new System.Windows.Forms.Panel();
     this.tabManagerFive = new DevExpress.XtraTab.XtraTabPage();
     this.label6 = new System.Windows.Forms.Label();
     this.ReportPanel = new DevExpress.XtraEditors.PanelControl();
     this.lk_ReportView = new DevExpress.XtraEditors.LookUpEdit();
     this.lblFive_9 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_10 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_4 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_8 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_7 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_3 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_6 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_5 = new DevExpress.XtraEditors.SimpleButton();
     this.tabManagerSix = new DevExpress.XtraTab.XtraTabPage();
     this.lk_MasterData = new DevExpress.XtraEditors.LookUpEdit();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.groupCashVoucherMaster = new DevExpress.XtraEditors.GroupControl();
     this.groupCashVoucher = new DevExpress.XtraEditors.GroupControl();
     this.pbSelectCashVoucher = new System.Windows.Forms.PictureBox();
     this.txtFilePathCashVoucher = new DevExpress.XtraEditors.TextEdit();
     this.label20 = new System.Windows.Forms.Label();
     this.btnCashVoucherImport = new DevExpress.XtraEditors.SimpleButton();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.bbiManagerLoginOut = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barstaticCurrentLogin = new DevExpress.XtraBars.BarButtonItem();
     this.barAndDockingController1 = new DevExpress.XtraBars.BarAndDockingController(this.components);
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.bbiManagerTimeCard = new DevExpress.XtraBars.BarButtonItem();
     this.printDocument1 = new System.Drawing.Printing.PrintDocument();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.gridColumnPGE3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPGE2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPGE1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdPGE_txtNQuantity = new DevExpress.XtraEditors.TextEdit();
     this.mdPGE_txtStrPackageCode = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.mdPGE_cdStrPackageGroupCode = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.mdPGE_lblNQuantity = new System.Windows.Forms.Label();
     this.mdPGE_lblStrPackageCode = new System.Windows.Forms.Label();
     this.mdPGE_lblStrPackageGroupCode = new System.Windows.Forms.Label();
     this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
     this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.label5 = new System.Windows.Forms.Label();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlManager)).BeginInit();
     this.tabControlManager.SuspendLayout();
     this.tabManagerOne.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPPMaster)).BeginInit();
     this.groupIPPMaster.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPP)).BeginInit();
     this.groupIPP.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ComboBoxIPP.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpIPP2)).BeginInit();
     this.grpIPP2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBank.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtTo.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCardScr.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupIPPDetails)).BeginInit();
     this.GroupIPPDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.strReferenceNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPBankCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNMonths.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPCCNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPDateRcv.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPDateSent.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPCreatedDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMerchantNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPInterest.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNettAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMemberId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMemberName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPPReceipt)).BeginInit();
     this.groupIPPReceipt.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridReceipt)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPReceiptView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPReceiptStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupCashCardMaster)).BeginInit();
     this.groupCashCardMaster.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupCashCard)).BeginInit();
     this.groupCashCard.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbSelect)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePath.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupGIROMaster)).BeginInit();
     this.groupGIROMaster.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.tabGiroDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBankBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBank.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtPackage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackageDesc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAccountNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGIROId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).BeginInit();
     this.tabGiroTrnsHistory.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridTransaction)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupGiro)).BeginInit();
     this.GroupGiro.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxGiroStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GiroGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GIROGridView)).BeginInit();
     this.tabManagerTwo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GrpPayroll)).BeginInit();
     this.GrpPayroll.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbJob.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpGridExcel)).BeginInit();
     this.grpGridExcel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridExcel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewExcel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditMTH.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditYR.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbxPayroll.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPayroll)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPayroll)).BeginInit();
     this.tabManagerThree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpClassSchedule)).BeginInit();
     this.grpClassSchedule.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxHall.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbxScheduleType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMemCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpRoadShow)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpNextSemSchedule)).BeginInit();
     this.tabManagerFour.SuspendLayout();
     this.tabManagerFive.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReportPanel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_ReportView.Properties)).BeginInit();
     this.tabManagerSix.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lk_MasterData.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupCashVoucherMaster)).BeginInit();
     this.groupCashVoucherMaster.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupCashVoucher)).BeginInit();
     this.groupCashVoucher.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbSelectCashVoucher)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePathCashVoucher.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_txtNQuantity.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_txtStrPackageCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_cdStrPackageGroupCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // MainMenu1
     //
     this.MainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem1,
     this.MenuItem4,
     this.MenuItem5});
     //
     // MenuItem1
     //
     this.MenuItem1.Index = 0;
     this.MenuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem2});
     this.MenuItem1.Text = "File";
     //
     // MenuItem2
     //
     this.MenuItem2.Index = 0;
     this.MenuItem2.Text = "Quit";
     //
     // MenuItem4
     //
     this.MenuItem4.Index = 1;
     this.MenuItem4.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem6,
     this.MenuItem7,
     this.MenuItem8,
     this.MenuItem9,
     this.MenuItem10});
     this.MenuItem4.Text = "Tools";
     //
     // MenuItem6
     //
     this.MenuItem6.Index = 0;
     this.MenuItem6.Text = "Change Password";
     //
     // MenuItem7
     //
     this.MenuItem7.Index = 1;
     this.MenuItem7.Text = "Block Membership ID";
     //
     // MenuItem8
     //
     this.MenuItem8.Index = 2;
     this.MenuItem8.Text = "Reset Membership ID";
     //
     // MenuItem9
     //
     this.MenuItem9.Index = 3;
     this.MenuItem9.Text = "Re-print receipt";
     //
     // MenuItem10
     //
     this.MenuItem10.Index = 4;
     this.MenuItem10.Text = "Open Carton";
     this.MenuItem10.Visible = false;
     //
     // MenuItem5
     //
     this.MenuItem5.Index = 2;
     this.MenuItem5.Text = "Help";
     //
     // tabControlManager
     //
     this.tabControlManager.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControlManager.Appearance.ForeColor = System.Drawing.Color.Transparent;
     this.tabControlManager.Appearance.Options.UseFont = true;
     this.tabControlManager.Appearance.Options.UseForeColor = true;
     this.tabControlManager.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControlManager.AppearancePage.Header.Options.UseFont = true;
     this.tabControlManager.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.tabControlManager.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControlManager.ImeMode = System.Windows.Forms.ImeMode.On;
     this.tabControlManager.Location = new System.Drawing.Point(0, 40);
     this.tabControlManager.LookAndFeel.UseDefaultLookAndFeel = false;
     this.tabControlManager.Name = "tabControlManager";
     this.tabControlManager.PaintStyleName = "Skin";
     this.tabControlManager.SelectedTabPage = this.tabManagerOne;
     this.tabControlManager.Size = new System.Drawing.Size(1016, 672);
     this.tabControlManager.TabIndex = 5;
     this.tabControlManager.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabManagerOne,
     this.tabManagerTwo,
     this.tabManagerThree,
     this.tabManagerFour,
     this.tabManagerFive,
     this.tabManagerSix});
     this.tabControlManager.Click += new System.EventHandler(this.tabControlManager_Click);
     //
     // tabManagerOne
     //
     this.tabManagerOne.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabManagerOne.Appearance.Header.Options.UseFont = true;
     this.tabManagerOne.Appearance.PageClient.BackColor = System.Drawing.Color.DimGray;
     this.tabManagerOne.Appearance.PageClient.Options.UseBackColor = true;
     this.tabManagerOne.Controls.Add(this.groupIPPMaster);
     this.tabManagerOne.Controls.Add(this.groupCashCardMaster);
     this.tabManagerOne.Controls.Add(this.panel3);
     this.tabManagerOne.Controls.Add(this.lblOne_4);
     this.tabManagerOne.Controls.Add(this.lblOne_3);
     this.tabManagerOne.Controls.Add(this.lblOne_2);
     this.tabManagerOne.Controls.Add(this.lblOne_1);
     this.tabManagerOne.Controls.Add(this.groupGIROMaster);
     this.tabManagerOne.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabManagerOne.Name = "tabManagerOne";
     this.tabManagerOne.PageVisible = false;
     this.tabManagerOne.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerOne.Text = "Account";
     //
     // groupIPPMaster
     //
     this.groupIPPMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupIPPMaster.Controls.Add(this.groupIPP);
     this.groupIPPMaster.Controls.Add(this.hypReceipts);
     this.groupIPPMaster.Controls.Add(this.hypIPPDetails);
     this.groupIPPMaster.Controls.Add(this.GroupIPPDetails);
     this.groupIPPMaster.Controls.Add(this.groupIPPReceipt);
     this.groupIPPMaster.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupIPPMaster.Location = new System.Drawing.Point(0, 30);
     this.groupIPPMaster.Name = "groupIPPMaster";
     this.groupIPPMaster.ShowCaption = false;
     this.groupIPPMaster.Size = new System.Drawing.Size(1007, 607);
     this.groupIPPMaster.TabIndex = 20;
     this.groupIPPMaster.Text = "GroupControl3";
     //
     // groupIPP
     //
     this.groupIPP.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupIPP.Appearance.Options.UseBackColor = true;
     this.groupIPP.Controls.Add(this.ComboBoxIPP);
     this.groupIPP.Controls.Add(this.grpIPP2);
     this.groupIPP.Controls.Add(this.btnReceiveIPP);
     this.groupIPP.Controls.Add(this.btnSendIPP);
     this.groupIPP.Controls.Add(this.btnUpdateIPP);
     this.groupIPP.Controls.Add(this.btnDeleteIPP);
     this.groupIPP.Controls.Add(this.btnNewIPP);
     this.groupIPP.Controls.Add(this.IPPGrid);
     this.groupIPP.Location = new System.Drawing.Point(4, 0);
     this.groupIPP.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupIPP.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupIPP.Name = "groupIPP";
     this.groupIPP.Size = new System.Drawing.Size(996, 290);
     this.groupIPP.TabIndex = 16;
     this.groupIPP.Text = "IPP";
     //
     // ComboBoxIPP
     //
     this.ComboBoxIPP.Location = new System.Drawing.Point(8, 56);
     this.ComboBoxIPP.Name = "ComboBoxIPP";
     this.ComboBoxIPP.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ComboBoxIPP.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Show All", null, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Not Sent", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Sent, Not Received", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Success", 2, -1)});
     this.ComboBoxIPP.Size = new System.Drawing.Size(136, 20);
     this.ComboBoxIPP.TabIndex = 130;
     this.ComboBoxIPP.SelectedIndexChanged += new System.EventHandler(this.ComboBoxIPP_SelectedIndexChanged);
     //
     // grpIPP2
     //
     this.grpIPP2.Controls.Add(this.btnReset);
     this.grpIPP2.Controls.Add(this.lkBranch);
     this.grpIPP2.Controls.Add(this.lkBank);
     this.grpIPP2.Controls.Add(this.IPPdtTo);
     this.grpIPP2.Controls.Add(this.IPPdtStart);
     this.grpIPP2.Controls.Add(this.btnSearch);
     this.grpIPP2.Controls.Add(this.txtCreditCardScr);
     this.grpIPP2.Controls.Add(this.label4);
     this.grpIPP2.Controls.Add(this.label3);
     this.grpIPP2.Controls.Add(this.label2);
     this.grpIPP2.Controls.Add(this.IPPlblDtTo);
     this.grpIPP2.Controls.Add(this.IPPlblDtFrom);
     this.grpIPP2.Location = new System.Drawing.Point(0, 16);
     this.grpIPP2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpIPP2.Name = "grpIPP2";
     this.grpIPP2.ShowCaption = false;
     this.grpIPP2.Size = new System.Drawing.Size(1000, 34);
     this.grpIPP2.TabIndex = 128;
     this.grpIPP2.Text = "groupControl4";
     //
     // btnReset
     //
     this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReset.Appearance.Options.UseFont = true;
     this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReset.Location = new System.Drawing.Point(928, 8);
     this.btnReset.Name = "btnReset";
     this.btnReset.Size = new System.Drawing.Size(56, 20);
     this.btnReset.TabIndex = 148;
     this.btnReset.Text = "Reset";
     this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
     //
     // lkBranch
     //
     this.lkBranch.Location = new System.Drawing.Point(608, 8);
     this.lkBranch.Name = "lkBranch";
     this.lkBranch.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.lkBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBranch.Size = new System.Drawing.Size(64, 22);
     this.lkBranch.TabIndex = 147;
     //
     // lkBank
     //
     this.lkBank.Location = new System.Drawing.Point(336, 8);
     this.lkBank.Name = "lkBank";
     this.lkBank.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.lkBank.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBank.Size = new System.Drawing.Size(216, 22);
     this.lkBank.TabIndex = 146;
     //
     // IPPdtTo
     //
     this.IPPdtTo.EditValue = new System.DateTime(2006, 5, 19, 0, 0, 0, 0);
     this.IPPdtTo.Location = new System.Drawing.Point(200, 8);
     this.IPPdtTo.Name = "IPPdtTo";
     this.IPPdtTo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.IPPdtTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPdtTo.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.IPPdtTo.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPdtTo.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.IPPdtTo.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPdtTo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPdtTo.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPdtTo.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.IPPdtTo.Size = new System.Drawing.Size(96, 22);
     this.IPPdtTo.TabIndex = 138;
     //
     // IPPdtStart
     //
     this.IPPdtStart.EditValue = new System.DateTime(2006, 5, 19, 0, 0, 0, 0);
     this.IPPdtStart.Location = new System.Drawing.Point(80, 8);
     this.IPPdtStart.Name = "IPPdtStart";
     this.IPPdtStart.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.IPPdtStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPdtStart.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.IPPdtStart.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPdtStart.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.IPPdtStart.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPdtStart.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPdtStart.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPdtStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.IPPdtStart.Size = new System.Drawing.Size(96, 22);
     this.IPPdtStart.TabIndex = 137;
     //
     // btnSearch
     //
     this.btnSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnSearch.Appearance.Options.UseFont = true;
     this.btnSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSearch.Location = new System.Drawing.Point(864, 8);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(56, 20);
     this.btnSearch.TabIndex = 135;
     this.btnSearch.Text = "Search";
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // txtCreditCardScr
     //
     this.txtCreditCardScr.EditValue = "";
     this.txtCreditCardScr.Location = new System.Drawing.Point(760, 8);
     this.txtCreditCardScr.Name = "txtCreditCardScr";
     this.txtCreditCardScr.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCreditCardScr.Properties.Appearance.Options.UseFont = true;
     this.txtCreditCardScr.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtCreditCardScr.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtCreditCardScr.Size = new System.Drawing.Size(96, 22);
     this.txtCreditCardScr.TabIndex = 134;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(680, 8);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(88, 16);
     this.label4.TabIndex = 132;
     this.label4.Text = "Credit Card";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(552, 8);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 16);
     this.label3.TabIndex = 131;
     this.label3.Text = "Branch";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(296, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(40, 16);
     this.label2.TabIndex = 130;
     this.label2.Text = "Bank";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // IPPlblDtTo
     //
     this.IPPlblDtTo.BackColor = System.Drawing.Color.Transparent;
     this.IPPlblDtTo.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPlblDtTo.Location = new System.Drawing.Point(176, 8);
     this.IPPlblDtTo.Name = "IPPlblDtTo";
     this.IPPlblDtTo.Size = new System.Drawing.Size(24, 16);
     this.IPPlblDtTo.TabIndex = 125;
     this.IPPlblDtTo.Text = "To";
     this.IPPlblDtTo.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // IPPlblDtFrom
     //
     this.IPPlblDtFrom.BackColor = System.Drawing.Color.Transparent;
     this.IPPlblDtFrom.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPlblDtFrom.Location = new System.Drawing.Point(8, 8);
     this.IPPlblDtFrom.Name = "IPPlblDtFrom";
     this.IPPlblDtFrom.Size = new System.Drawing.Size(72, 16);
     this.IPPlblDtFrom.TabIndex = 124;
     this.IPPlblDtFrom.Text = "Date From";
     this.IPPlblDtFrom.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnReceiveIPP
     //
     this.btnReceiveIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReceiveIPP.Appearance.Options.UseFont = true;
     this.btnReceiveIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReceiveIPP.Enabled = false;
     this.btnReceiveIPP.Location = new System.Drawing.Point(408, 56);
     this.btnReceiveIPP.Name = "btnReceiveIPP";
     this.btnReceiveIPP.Size = new System.Drawing.Size(62, 20);
     this.btnReceiveIPP.TabIndex = 13;
     this.btnReceiveIPP.Text = "Receive";
     this.btnReceiveIPP.Click += new System.EventHandler(this.btnReceiveIPP_Click);
     //
     // btnSendIPP
     //
     this.btnSendIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnSendIPP.Appearance.Options.UseFont = true;
     this.btnSendIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSendIPP.Enabled = false;
     this.btnSendIPP.Location = new System.Drawing.Point(344, 56);
     this.btnSendIPP.Name = "btnSendIPP";
     this.btnSendIPP.Size = new System.Drawing.Size(62, 20);
     this.btnSendIPP.TabIndex = 12;
     this.btnSendIPP.Text = "Send";
     this.btnSendIPP.Click += new System.EventHandler(this.btnSendIPP_Click);
     //
     // btnUpdateIPP
     //
     this.btnUpdateIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnUpdateIPP.Appearance.Options.UseFont = true;
     this.btnUpdateIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnUpdateIPP.Location = new System.Drawing.Point(216, 56);
     this.btnUpdateIPP.Name = "btnUpdateIPP";
     this.btnUpdateIPP.Size = new System.Drawing.Size(62, 20);
     this.btnUpdateIPP.TabIndex = 10;
     this.btnUpdateIPP.Text = "Update";
     this.btnUpdateIPP.Click += new System.EventHandler(this.btnUpdateIPP_Click);
     //
     // btnDeleteIPP
     //
     this.btnDeleteIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnDeleteIPP.Appearance.Options.UseFont = true;
     this.btnDeleteIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnDeleteIPP.Location = new System.Drawing.Point(280, 56);
     this.btnDeleteIPP.Name = "btnDeleteIPP";
     this.btnDeleteIPP.Size = new System.Drawing.Size(62, 20);
     this.btnDeleteIPP.TabIndex = 5;
     this.btnDeleteIPP.Text = "Delete";
     this.btnDeleteIPP.Click += new System.EventHandler(this.btnDeleteIPP_Click);
     //
     // btnNewIPP
     //
     this.btnNewIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnNewIPP.Appearance.Options.UseFont = true;
     this.btnNewIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnNewIPP.Location = new System.Drawing.Point(152, 56);
     this.btnNewIPP.Name = "btnNewIPP";
     this.btnNewIPP.Size = new System.Drawing.Size(62, 20);
     this.btnNewIPP.TabIndex = 2;
     this.btnNewIPP.Text = "New";
     this.btnNewIPP.Click += new System.EventHandler(this.btnNewIPP_Click);
     //
     // IPPGrid
     //
     this.IPPGrid.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.IPPGrid.EmbeddedNavigator.Cursor = System.Windows.Forms.Cursors.Arrow;
     gridLevelNode1.RelationName = "Level1";
     this.IPPGrid.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.IPPGrid.Location = new System.Drawing.Point(2, 80);
     this.IPPGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPGrid.MainView = this.IPPGridView;
     this.IPPGrid.Name = "IPPGrid";
     this.IPPGrid.Size = new System.Drawing.Size(992, 208);
     this.IPPGrid.TabIndex = 0;
     this.IPPGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.IPPGridView});
     //
     // IPPGridView
     //
     this.IPPGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn15,
     this.gridColumn16,
     this.gridColumn8});
     this.IPPGridView.GridControl = this.IPPGrid;
     this.IPPGridView.Name = "IPPGridView";
     this.IPPGridView.OptionsBehavior.Editable = false;
     this.IPPGridView.OptionsCustomization.AllowFilter = false;
     this.IPPGridView.OptionsFilter.AllowColumnMRUFilterList = false;
     this.IPPGridView.OptionsFilter.AllowMRUFilterList = false;
     this.IPPGridView.OptionsView.ShowGroupPanel = false;
     this.IPPGridView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.IPPGridView_FocusedRowChanged);
     this.IPPGridView.Click += new System.EventHandler(this.IPPGridView_Click);
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "ID";
     this.gridColumn10.FieldName = "nIPPID";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 0;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Date Created";
     this.gridColumn11.FieldName = "dtDate";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 6;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Member Id";
     this.gridColumn12.FieldName = "strMembershipID";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 1;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Member Name";
     this.gridColumn13.FieldName = "strMemberName";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 2;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Bank";
     this.gridColumn14.FieldName = "strBankDesc";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 3;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Credit Card No.";
     this.gridColumn15.DisplayFormat.FormatString = "####-####-####-####";
     this.gridColumn15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn15.FieldName = "strCreditCardNo";
     this.gridColumn15.GroupFormat.FormatString = "####-####-####-####";
     this.gridColumn15.GroupFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn15.MinWidth = 24;
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 4;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "No. of Months";
     this.gridColumn16.FieldName = "nMonths";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 5;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "gridColumn8";
     this.gridColumn8.FieldName = "strIPP";
     this.gridColumn8.Name = "gridColumn8";
     //
     // hypReceipts
     //
     this.hypReceipts.AutoSize = true;
     this.hypReceipts.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.hypReceipts.Location = new System.Drawing.Point(128, 296);
     this.hypReceipts.Name = "hypReceipts";
     this.hypReceipts.Size = new System.Drawing.Size(83, 16);
     this.hypReceipts.TabIndex = 13;
     this.hypReceipts.Text = "RECEIPTS";
     this.hypReceipts.Click += new System.EventHandler(this.hypReceipts_Click);
     //
     // hypIPPDetails
     //
     this.hypIPPDetails.AutoSize = true;
     this.hypIPPDetails.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.hypIPPDetails.Location = new System.Drawing.Point(16, 296);
     this.hypIPPDetails.Name = "hypIPPDetails";
     this.hypIPPDetails.Size = new System.Drawing.Size(99, 16);
     this.hypIPPDetails.TabIndex = 10;
     this.hypIPPDetails.Text = "IPP DETAILS";
     this.hypIPPDetails.Click += new System.EventHandler(this.hypIPPDetails_Click);
     //
     // GroupIPPDetails
     //
     this.GroupIPPDetails.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.GroupIPPDetails.Appearance.Options.UseBackColor = true;
     this.GroupIPPDetails.Controls.Add(this.strReferenceNo);
     this.GroupIPPDetails.Controls.Add(this.label7);
     this.GroupIPPDetails.Controls.Add(this.IPPBankCode);
     this.GroupIPPDetails.Controls.Add(this.IPPNMonths);
     this.GroupIPPDetails.Controls.Add(this.IPPCCNo);
     this.GroupIPPDetails.Controls.Add(this.IPPStatus);
     this.GroupIPPDetails.Controls.Add(this.IPPDateRcv);
     this.GroupIPPDetails.Controls.Add(this.IPPDateSent);
     this.GroupIPPDetails.Controls.Add(this.IPPBranchCode);
     this.GroupIPPDetails.Controls.Add(this.IPPCreatedDate);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL1);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL16);
     this.GroupIPPDetails.Controls.Add(this.IPPMerchantNo);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL8);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL14);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL12);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL13);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL11);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL10);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL9);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL7);
     this.GroupIPPDetails.Controls.Add(this.IPPAmount);
     this.GroupIPPDetails.Controls.Add(this.IPPInterest);
     this.GroupIPPDetails.Controls.Add(this.IPPNettAmount);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL5);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL6);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL4);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL3);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL2);
     this.GroupIPPDetails.Controls.Add(this.IPPMemberId);
     this.GroupIPPDetails.Controls.Add(this.IPPMemberName);
     this.GroupIPPDetails.Controls.Add(this.IPPId);
     this.GroupIPPDetails.ImeMode = System.Windows.Forms.ImeMode.On;
     this.GroupIPPDetails.Location = new System.Drawing.Point(8, 320);
     this.GroupIPPDetails.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GroupIPPDetails.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GroupIPPDetails.Name = "GroupIPPDetails";
     this.GroupIPPDetails.Size = new System.Drawing.Size(992, 240);
     this.GroupIPPDetails.TabIndex = 14;
     this.GroupIPPDetails.Text = "IPP Details";
     //
     // strReferenceNo
     //
     this.strReferenceNo.EditValue = "";
     this.strReferenceNo.Location = new System.Drawing.Point(600, 200);
     this.strReferenceNo.Name = "strReferenceNo";
     this.strReferenceNo.Size = new System.Drawing.Size(168, 20);
     this.strReferenceNo.TabIndex = 150;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(424, 200);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(141, 16);
     this.label7.TabIndex = 149;
     this.label7.Text = "Reference Number  :";
     //
     // IPPBankCode
     //
     this.IPPBankCode.Location = new System.Drawing.Point(600, 128);
     this.IPPBankCode.Name = "IPPBankCode";
     this.IPPBankCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPBankCode.Size = new System.Drawing.Size(168, 20);
     this.IPPBankCode.TabIndex = 145;
     this.IPPBankCode.EditValueChanged += new System.EventHandler(this.IPPBankCode_EditValueChanged);
     //
     // IPPNMonths
     //
     this.IPPNMonths.Location = new System.Drawing.Point(600, 176);
     this.IPPNMonths.Name = "IPPNMonths";
     this.IPPNMonths.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPNMonths.Size = new System.Drawing.Size(168, 20);
     this.IPPNMonths.TabIndex = 144;
     //
     // IPPCCNo
     //
     this.IPPCCNo.AllowDrop = true;
     this.IPPCCNo.EditValue = "";
     this.IPPCCNo.Location = new System.Drawing.Point(600, 152);
     this.IPPCCNo.Name = "IPPCCNo";
     this.IPPCCNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPCCNo.Properties.Appearance.Options.UseFont = true;
     this.IPPCCNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPCCNo.Properties.Mask.BeepOnError = true;
     this.IPPCCNo.Properties.Mask.EditMask = "\\d{4}-\\d{4}-\\d{4}-\\d{4}";
     this.IPPCCNo.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.IPPCCNo.Properties.Mask.SaveLiteral = false;
     this.IPPCCNo.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.IPPCCNo.Properties.MaxLength = 19;
     this.IPPCCNo.Size = new System.Drawing.Size(168, 20);
     this.IPPCCNo.TabIndex = 143;
     //
     // IPPStatus
     //
     this.IPPStatus.EditValue = "";
     this.IPPStatus.Enabled = false;
     this.IPPStatus.Location = new System.Drawing.Point(600, 104);
     this.IPPStatus.Name = "IPPStatus";
     this.IPPStatus.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPStatus.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPStatus.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPStatus.Properties.Appearance.Options.UseBackColor = true;
     this.IPPStatus.Properties.Appearance.Options.UseFont = true;
     this.IPPStatus.Properties.Appearance.Options.UseForeColor = true;
     this.IPPStatus.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPStatus.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPStatus.Properties.ReadOnly = true;
     this.IPPStatus.ShowToolTips = false;
     this.IPPStatus.Size = new System.Drawing.Size(168, 18);
     this.IPPStatus.TabIndex = 141;
     //
     // IPPDateRcv
     //
     this.IPPDateRcv.EditValue = "";
     this.IPPDateRcv.Enabled = false;
     this.IPPDateRcv.Location = new System.Drawing.Point(600, 80);
     this.IPPDateRcv.Name = "IPPDateRcv";
     this.IPPDateRcv.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPDateRcv.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPDateRcv.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPDateRcv.Properties.Appearance.Options.UseBackColor = true;
     this.IPPDateRcv.Properties.Appearance.Options.UseFont = true;
     this.IPPDateRcv.Properties.Appearance.Options.UseForeColor = true;
     this.IPPDateRcv.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPDateRcv.Properties.DisplayFormat.FormatString = "d";
     this.IPPDateRcv.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPDateRcv.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPDateRcv.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPDateRcv.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.IPPDateRcv.Properties.ReadOnly = true;
     this.IPPDateRcv.ShowToolTips = false;
     this.IPPDateRcv.Size = new System.Drawing.Size(168, 18);
     this.IPPDateRcv.TabIndex = 140;
     //
     // IPPDateSent
     //
     this.IPPDateSent.EditValue = "";
     this.IPPDateSent.Enabled = false;
     this.IPPDateSent.Location = new System.Drawing.Point(600, 56);
     this.IPPDateSent.Name = "IPPDateSent";
     this.IPPDateSent.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPDateSent.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPDateSent.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPDateSent.Properties.Appearance.Options.UseBackColor = true;
     this.IPPDateSent.Properties.Appearance.Options.UseFont = true;
     this.IPPDateSent.Properties.Appearance.Options.UseForeColor = true;
     this.IPPDateSent.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPDateSent.Properties.DisplayFormat.FormatString = "d";
     this.IPPDateSent.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPDateSent.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPDateSent.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPDateSent.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.IPPDateSent.Properties.ReadOnly = true;
     this.IPPDateSent.ShowToolTips = false;
     this.IPPDateSent.Size = new System.Drawing.Size(168, 18);
     this.IPPDateSent.TabIndex = 139;
     //
     // IPPBranchCode
     //
     this.IPPBranchCode.EditValue = "";
     this.IPPBranchCode.Enabled = false;
     this.IPPBranchCode.Location = new System.Drawing.Point(184, 128);
     this.IPPBranchCode.Name = "IPPBranchCode";
     this.IPPBranchCode.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPBranchCode.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPBranchCode.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPBranchCode.Properties.Appearance.Options.UseBackColor = true;
     this.IPPBranchCode.Properties.Appearance.Options.UseFont = true;
     this.IPPBranchCode.Properties.Appearance.Options.UseForeColor = true;
     this.IPPBranchCode.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPBranchCode.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPBranchCode.Properties.ReadOnly = true;
     this.IPPBranchCode.Size = new System.Drawing.Size(168, 18);
     this.IPPBranchCode.TabIndex = 138;
     //
     // IPPCreatedDate
     //
     this.IPPCreatedDate.EditValue = "";
     this.IPPCreatedDate.Enabled = false;
     this.IPPCreatedDate.Location = new System.Drawing.Point(184, 56);
     this.IPPCreatedDate.Name = "IPPCreatedDate";
     this.IPPCreatedDate.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPCreatedDate.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPCreatedDate.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPCreatedDate.Properties.Appearance.Options.UseBackColor = true;
     this.IPPCreatedDate.Properties.Appearance.Options.UseFont = true;
     this.IPPCreatedDate.Properties.Appearance.Options.UseForeColor = true;
     this.IPPCreatedDate.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPCreatedDate.Properties.DisplayFormat.FormatString = "d";
     this.IPPCreatedDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPCreatedDate.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPCreatedDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPCreatedDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.IPPCreatedDate.Properties.ReadOnly = true;
     this.IPPCreatedDate.Size = new System.Drawing.Size(168, 18);
     this.IPPCreatedDate.TabIndex = 137;
     //
     // IPPLBL1
     //
     this.IPPLBL1.AutoSize = true;
     this.IPPLBL1.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL1.Location = new System.Drawing.Point(32, 32);
     this.IPPLBL1.Name = "IPPLBL1";
     this.IPPLBL1.Size = new System.Drawing.Size(55, 16);
     this.IPPLBL1.TabIndex = 136;
     this.IPPLBL1.Text = "IPP Id :";
     //
     // IPPLBL16
     //
     this.IPPLBL16.AutoSize = true;
     this.IPPLBL16.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL16.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL16.Location = new System.Drawing.Point(32, 128);
     this.IPPLBL16.Name = "IPPLBL16";
     this.IPPLBL16.Size = new System.Drawing.Size(98, 16);
     this.IPPLBL16.TabIndex = 135;
     this.IPPLBL16.Text = "Branch Code :";
     //
     // IPPMerchantNo
     //
     this.IPPMerchantNo.EditValue = "";
     this.IPPMerchantNo.Enabled = false;
     this.IPPMerchantNo.Location = new System.Drawing.Point(184, 152);
     this.IPPMerchantNo.Name = "IPPMerchantNo";
     this.IPPMerchantNo.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPMerchantNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPMerchantNo.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPMerchantNo.Properties.Appearance.Options.UseBackColor = true;
     this.IPPMerchantNo.Properties.Appearance.Options.UseFont = true;
     this.IPPMerchantNo.Properties.Appearance.Options.UseForeColor = true;
     this.IPPMerchantNo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPMerchantNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPMerchantNo.Properties.ReadOnly = true;
     this.IPPMerchantNo.Size = new System.Drawing.Size(166, 18);
     this.IPPMerchantNo.TabIndex = 133;
     //
     // IPPLBL8
     //
     this.IPPLBL8.AutoSize = true;
     this.IPPLBL8.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL8.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL8.Location = new System.Drawing.Point(32, 152);
     this.IPPLBL8.Name = "IPPLBL8";
     this.IPPLBL8.Size = new System.Drawing.Size(99, 16);
     this.IPPLBL8.TabIndex = 132;
     this.IPPLBL8.Text = "Merchant No :";
     //
     // IPPLBL14
     //
     this.IPPLBL14.AutoSize = true;
     this.IPPLBL14.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL14.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL14.Location = new System.Drawing.Point(424, 104);
     this.IPPLBL14.Name = "IPPLBL14";
     this.IPPLBL14.Size = new System.Drawing.Size(60, 16);
     this.IPPLBL14.TabIndex = 131;
     this.IPPLBL14.Text = "Status :";
     //
     // IPPLBL12
     //
     this.IPPLBL12.AutoSize = true;
     this.IPPLBL12.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL12.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL12.Location = new System.Drawing.Point(424, 56);
     this.IPPLBL12.Name = "IPPLBL12";
     this.IPPLBL12.Size = new System.Drawing.Size(135, 16);
     this.IPPLBL12.TabIndex = 130;
     this.IPPLBL12.Text = "Date Sent to Bank :";
     //
     // IPPLBL13
     //
     this.IPPLBL13.AutoSize = true;
     this.IPPLBL13.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL13.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL13.Location = new System.Drawing.Point(424, 80);
     this.IPPLBL13.Name = "IPPLBL13";
     this.IPPLBL13.Size = new System.Drawing.Size(151, 16);
     this.IPPLBL13.TabIndex = 129;
     this.IPPLBL13.Text = "Date Received Reply :";
     //
     // IPPLBL11
     //
     this.IPPLBL11.AutoSize = true;
     this.IPPLBL11.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL11.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL11.Location = new System.Drawing.Point(424, 32);
     this.IPPLBL11.Name = "IPPLBL11";
     this.IPPLBL11.Size = new System.Drawing.Size(100, 16);
     this.IPPLBL11.TabIndex = 128;
     this.IPPLBL11.Text = "Nett Amount :";
     //
     // IPPLBL10
     //
     this.IPPLBL10.AutoSize = true;
     this.IPPLBL10.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL10.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL10.Location = new System.Drawing.Point(32, 200);
     this.IPPLBL10.Name = "IPPLBL10";
     this.IPPLBL10.Size = new System.Drawing.Size(71, 16);
     this.IPPLBL10.TabIndex = 127;
     this.IPPLBL10.Text = "Interest :";
     //
     // IPPLBL9
     //
     this.IPPLBL9.AutoSize = true;
     this.IPPLBL9.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL9.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL9.Location = new System.Drawing.Point(32, 176);
     this.IPPLBL9.Name = "IPPLBL9";
     this.IPPLBL9.Size = new System.Drawing.Size(68, 16);
     this.IPPLBL9.TabIndex = 126;
     this.IPPLBL9.Text = "Amount :";
     this.IPPLBL9.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // IPPLBL7
     //
     this.IPPLBL7.AutoSize = true;
     this.IPPLBL7.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL7.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL7.Location = new System.Drawing.Point(424, 176);
     this.IPPLBL7.Name = "IPPLBL7";
     this.IPPLBL7.Size = new System.Drawing.Size(139, 16);
     this.IPPLBL7.TabIndex = 125;
     this.IPPLBL7.Text = "Number of Months  :";
     //
     // IPPAmount
     //
     this.IPPAmount.EditValue = "";
     this.IPPAmount.Enabled = false;
     this.IPPAmount.Location = new System.Drawing.Point(184, 176);
     this.IPPAmount.Name = "IPPAmount";
     this.IPPAmount.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPAmount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPAmount.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPAmount.Properties.Appearance.Options.UseBackColor = true;
     this.IPPAmount.Properties.Appearance.Options.UseFont = true;
     this.IPPAmount.Properties.Appearance.Options.UseForeColor = true;
     this.IPPAmount.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPAmount.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPAmount.Properties.ReadOnly = true;
     this.IPPAmount.Size = new System.Drawing.Size(166, 18);
     this.IPPAmount.TabIndex = 124;
     //
     // IPPInterest
     //
     this.IPPInterest.EditValue = "";
     this.IPPInterest.Enabled = false;
     this.IPPInterest.Location = new System.Drawing.Point(184, 200);
     this.IPPInterest.Name = "IPPInterest";
     this.IPPInterest.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPInterest.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPInterest.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPInterest.Properties.Appearance.Options.UseBackColor = true;
     this.IPPInterest.Properties.Appearance.Options.UseFont = true;
     this.IPPInterest.Properties.Appearance.Options.UseForeColor = true;
     this.IPPInterest.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPInterest.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPInterest.Properties.ReadOnly = true;
     this.IPPInterest.Size = new System.Drawing.Size(166, 18);
     this.IPPInterest.TabIndex = 123;
     //
     // IPPNettAmount
     //
     this.IPPNettAmount.EditValue = "";
     this.IPPNettAmount.Enabled = false;
     this.IPPNettAmount.Location = new System.Drawing.Point(600, 32);
     this.IPPNettAmount.Name = "IPPNettAmount";
     this.IPPNettAmount.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPNettAmount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPNettAmount.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPNettAmount.Properties.Appearance.Options.UseBackColor = true;
     this.IPPNettAmount.Properties.Appearance.Options.UseFont = true;
     this.IPPNettAmount.Properties.Appearance.Options.UseForeColor = true;
     this.IPPNettAmount.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPNettAmount.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPNettAmount.Properties.ReadOnly = true;
     this.IPPNettAmount.Size = new System.Drawing.Size(166, 18);
     this.IPPNettAmount.TabIndex = 122;
     //
     // IPPLBL5
     //
     this.IPPLBL5.AutoSize = true;
     this.IPPLBL5.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL5.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL5.Location = new System.Drawing.Point(424, 128);
     this.IPPLBL5.Name = "IPPLBL5";
     this.IPPLBL5.Size = new System.Drawing.Size(84, 16);
     this.IPPLBL5.TabIndex = 121;
     this.IPPLBL5.Text = "Bank Code :";
     //
     // IPPLBL6
     //
     this.IPPLBL6.AutoSize = true;
     this.IPPLBL6.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL6.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL6.Location = new System.Drawing.Point(424, 152);
     this.IPPLBL6.Name = "IPPLBL6";
     this.IPPLBL6.Size = new System.Drawing.Size(114, 16);
     this.IPPLBL6.TabIndex = 120;
     this.IPPLBL6.Text = "Credit Card No. :";
     //
     // IPPLBL4
     //
     this.IPPLBL4.AutoSize = true;
     this.IPPLBL4.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL4.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL4.Location = new System.Drawing.Point(32, 104);
     this.IPPLBL4.Name = "IPPLBL4";
     this.IPPLBL4.Size = new System.Drawing.Size(108, 16);
     this.IPPLBL4.TabIndex = 119;
     this.IPPLBL4.Text = "Member Name :";
     //
     // IPPLBL3
     //
     this.IPPLBL3.AutoSize = true;
     this.IPPLBL3.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL3.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL3.Location = new System.Drawing.Point(32, 80);
     this.IPPLBL3.Name = "IPPLBL3";
     this.IPPLBL3.Size = new System.Drawing.Size(86, 16);
     this.IPPLBL3.TabIndex = 118;
     this.IPPLBL3.Text = "Member Id :";
     //
     // IPPLBL2
     //
     this.IPPLBL2.AutoSize = true;
     this.IPPLBL2.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL2.Location = new System.Drawing.Point(32, 56);
     this.IPPLBL2.Name = "IPPLBL2";
     this.IPPLBL2.Size = new System.Drawing.Size(104, 16);
     this.IPPLBL2.TabIndex = 117;
     this.IPPLBL2.Text = "Date Created :";
     this.IPPLBL2.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // IPPMemberId
     //
     this.IPPMemberId.EditValue = "";
     this.IPPMemberId.Enabled = false;
     this.IPPMemberId.Location = new System.Drawing.Point(184, 80);
     this.IPPMemberId.Name = "IPPMemberId";
     this.IPPMemberId.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPMemberId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPMemberId.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPMemberId.Properties.Appearance.Options.UseBackColor = true;
     this.IPPMemberId.Properties.Appearance.Options.UseFont = true;
     this.IPPMemberId.Properties.Appearance.Options.UseForeColor = true;
     this.IPPMemberId.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPMemberId.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPMemberId.Properties.ReadOnly = true;
     this.IPPMemberId.Size = new System.Drawing.Size(168, 18);
     this.IPPMemberId.TabIndex = 115;
     //
     // IPPMemberName
     //
     this.IPPMemberName.EditValue = "";
     this.IPPMemberName.Enabled = false;
     this.IPPMemberName.Location = new System.Drawing.Point(184, 104);
     this.IPPMemberName.Name = "IPPMemberName";
     this.IPPMemberName.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPMemberName.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPMemberName.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPMemberName.Properties.Appearance.Options.UseBackColor = true;
     this.IPPMemberName.Properties.Appearance.Options.UseFont = true;
     this.IPPMemberName.Properties.Appearance.Options.UseForeColor = true;
     this.IPPMemberName.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPMemberName.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPMemberName.Properties.ReadOnly = true;
     this.IPPMemberName.Size = new System.Drawing.Size(168, 18);
     this.IPPMemberName.TabIndex = 114;
     //
     // IPPId
     //
     this.IPPId.EditValue = "";
     this.IPPId.Enabled = false;
     this.IPPId.Location = new System.Drawing.Point(184, 32);
     this.IPPId.Name = "IPPId";
     this.IPPId.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPId.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPId.Properties.Appearance.Options.UseBackColor = true;
     this.IPPId.Properties.Appearance.Options.UseFont = true;
     this.IPPId.Properties.Appearance.Options.UseForeColor = true;
     this.IPPId.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPId.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPId.Properties.ReadOnly = true;
     this.IPPId.Size = new System.Drawing.Size(168, 18);
     this.IPPId.TabIndex = 113;
     //
     // groupIPPReceipt
     //
     this.groupIPPReceipt.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupIPPReceipt.Appearance.Options.UseBackColor = true;
     this.groupIPPReceipt.Controls.Add(this.btnReceiptUnlink);
     this.groupIPPReceipt.Controls.Add(this.btnReceiptLink);
     this.groupIPPReceipt.Controls.Add(this.gridReceipt);
     this.groupIPPReceipt.Controls.Add(this.label10);
     this.groupIPPReceipt.Controls.Add(this.IPPReceiptStatus);
     this.groupIPPReceipt.ImeMode = System.Windows.Forms.ImeMode.On;
     this.groupIPPReceipt.Location = new System.Drawing.Point(8, 320);
     this.groupIPPReceipt.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupIPPReceipt.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupIPPReceipt.Name = "groupIPPReceipt";
     this.groupIPPReceipt.Size = new System.Drawing.Size(992, 240);
     this.groupIPPReceipt.TabIndex = 17;
     this.groupIPPReceipt.Text = "Receipt Entry";
     //
     // btnReceiptUnlink
     //
     this.btnReceiptUnlink.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReceiptUnlink.Appearance.Options.UseFont = true;
     this.btnReceiptUnlink.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReceiptUnlink.Location = new System.Drawing.Point(272, 24);
     this.btnReceiptUnlink.Name = "btnReceiptUnlink";
     this.btnReceiptUnlink.Size = new System.Drawing.Size(67, 20);
     this.btnReceiptUnlink.TabIndex = 128;
     this.btnReceiptUnlink.Text = "Unlink";
     this.btnReceiptUnlink.Click += new System.EventHandler(this.btnReceiptUnlink_Click);
     //
     // btnReceiptLink
     //
     this.btnReceiptLink.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReceiptLink.Appearance.Options.UseFont = true;
     this.btnReceiptLink.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReceiptLink.Enabled = false;
     this.btnReceiptLink.Location = new System.Drawing.Point(200, 24);
     this.btnReceiptLink.Name = "btnReceiptLink";
     this.btnReceiptLink.Size = new System.Drawing.Size(67, 20);
     this.btnReceiptLink.TabIndex = 127;
     this.btnReceiptLink.Text = "Link";
     this.btnReceiptLink.Click += new System.EventHandler(this.btnReceiptLink_Click);
     //
     // gridReceipt
     //
     this.gridReceipt.Dock = System.Windows.Forms.DockStyle.Bottom;
     gridLevelNode2.RelationName = "Level1";
     this.gridReceipt.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode2});
     this.gridReceipt.Location = new System.Drawing.Point(2, 54);
     this.gridReceipt.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridReceipt.MainView = this.IPPReceiptView;
     this.gridReceipt.Name = "gridReceipt";
     this.gridReceipt.Size = new System.Drawing.Size(988, 184);
     this.gridReceipt.TabIndex = 126;
     this.gridReceipt.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.IPPReceiptView});
     //
     // IPPReceiptView
     //
     this.IPPReceiptView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnIPPR,
     this.gridColumnIPPR1,
     this.gridColumnIPPR2,
     this.gridColumnIPPR3,
     this.gridColumnIPPR4,
     this.gridColumnIPPR5,
     this.gridColumnIPPR6,
     this.gridColumnIPPR7,
     this.gridColumnIPPR8,
     this.gridColumnIPPR9});
     this.IPPReceiptView.GridControl = this.gridReceipt;
     this.IPPReceiptView.Name = "IPPReceiptView";
     this.IPPReceiptView.OptionsBehavior.Editable = false;
     this.IPPReceiptView.OptionsCustomization.AllowFilter = false;
     this.IPPReceiptView.OptionsCustomization.AllowSort = false;
     this.IPPReceiptView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.IPPReceiptView.OptionsView.ShowGroupPanel = false;
     //
     // gridColumnIPPR
     //
     this.gridColumnIPPR.Caption = "IPP ID";
     this.gridColumnIPPR.FieldName = "nIPPID";
     this.gridColumnIPPR.Name = "gridColumnIPPR";
     //
     // gridColumnIPPR1
     //
     this.gridColumnIPPR1.Caption = "Date";
     this.gridColumnIPPR1.FieldName = "dtDate";
     this.gridColumnIPPR1.Name = "gridColumnIPPR1";
     this.gridColumnIPPR1.Visible = true;
     this.gridColumnIPPR1.VisibleIndex = 0;
     this.gridColumnIPPR1.Width = 109;
     //
     // gridColumnIPPR2
     //
     this.gridColumnIPPR2.Caption = "Receipt No";
     this.gridColumnIPPR2.FieldName = "strReceiptNo";
     this.gridColumnIPPR2.Name = "gridColumnIPPR2";
     this.gridColumnIPPR2.Visible = true;
     this.gridColumnIPPR2.VisibleIndex = 1;
     this.gridColumnIPPR2.Width = 109;
     //
     // gridColumnIPPR3
     //
     this.gridColumnIPPR3.Caption = "Category";
     this.gridColumnIPPR3.FieldName = "Category";
     this.gridColumnIPPR3.Name = "gridColumnIPPR3";
     this.gridColumnIPPR3.Visible = true;
     this.gridColumnIPPR3.VisibleIndex = 2;
     this.gridColumnIPPR3.Width = 109;
     //
     // gridColumnIPPR4
     //
     this.gridColumnIPPR4.Caption = "Nett";
     this.gridColumnIPPR4.FieldName = "mNettAmount";
     this.gridColumnIPPR4.Name = "gridColumnIPPR4";
     this.gridColumnIPPR4.Visible = true;
     this.gridColumnIPPR4.VisibleIndex = 3;
     this.gridColumnIPPR4.Width = 109;
     //
     // gridColumnIPPR5
     //
     this.gridColumnIPPR5.Caption = "GST";
     this.gridColumnIPPR5.FieldName = "mGSTAmount";
     this.gridColumnIPPR5.Name = "gridColumnIPPR5";
     this.gridColumnIPPR5.Visible = true;
     this.gridColumnIPPR5.VisibleIndex = 4;
     this.gridColumnIPPR5.Width = 64;
     //
     // gridColumnIPPR6
     //
     this.gridColumnIPPR6.Caption = "Total";
     this.gridColumnIPPR6.FieldName = "mTotalAmount";
     this.gridColumnIPPR6.Name = "gridColumnIPPR6";
     this.gridColumnIPPR6.Visible = true;
     this.gridColumnIPPR6.VisibleIndex = 5;
     this.gridColumnIPPR6.Width = 123;
     //
     // gridColumnIPPR7
     //
     this.gridColumnIPPR7.Caption = "O/S Amount";
     this.gridColumnIPPR7.FieldName = "mGSTAmount";
     this.gridColumnIPPR7.Name = "gridColumnIPPR7";
     this.gridColumnIPPR7.Visible = true;
     this.gridColumnIPPR7.VisibleIndex = 6;
     this.gridColumnIPPR7.Width = 85;
     //
     // gridColumnIPPR8
     //
     this.gridColumnIPPR8.Caption = "Member";
     this.gridColumnIPPR8.FieldName = "SalesPerson";
     this.gridColumnIPPR8.Name = "gridColumnIPPR8";
     this.gridColumnIPPR8.Visible = true;
     this.gridColumnIPPR8.VisibleIndex = 7;
     this.gridColumnIPPR8.Width = 167;
     //
     // gridColumnIPPR9
     //
     this.gridColumnIPPR9.Caption = "Payment ID";
     this.gridColumnIPPR9.FieldName = "nPaymentID";
     this.gridColumnIPPR9.Name = "gridColumnIPPR9";
     this.gridColumnIPPR9.Visible = true;
     this.gridColumnIPPR9.VisibleIndex = 8;
     //
     // label10
     //
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(16, 24);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(56, 16);
     this.label10.TabIndex = 125;
     this.label10.Text = "Status";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // IPPReceiptStatus
     //
     this.IPPReceiptStatus.EditValue = 0;
     this.IPPReceiptStatus.Location = new System.Drawing.Point(80, 24);
     this.IPPReceiptStatus.Name = "IPPReceiptStatus";
     this.IPPReceiptStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPReceiptStatus.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Linked", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Unlink", 1, -1)});
     this.IPPReceiptStatus.Size = new System.Drawing.Size(100, 20);
     this.IPPReceiptStatus.TabIndex = 24;
     this.IPPReceiptStatus.SelectedIndexChanged += new System.EventHandler(this.IPPReceiptStatus_SelectedIndexChanged);
     //
     // groupCashCardMaster
     //
     this.groupCashCardMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupCashCardMaster.Controls.Add(this.groupCashCard);
     this.groupCashCardMaster.ImeMode = System.Windows.Forms.ImeMode.On;
     this.groupCashCardMaster.Location = new System.Drawing.Point(0, 32);
     this.groupCashCardMaster.Name = "groupCashCardMaster";
     this.groupCashCardMaster.Size = new System.Drawing.Size(1007, 608);
     this.groupCashCardMaster.TabIndex = 146;
     //
     // groupCashCard
     //
     this.groupCashCard.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupCashCard.Appearance.Options.UseBackColor = true;
     this.groupCashCard.Controls.Add(this.pbSelect);
     this.groupCashCard.Controls.Add(this.txtFilePath);
     this.groupCashCard.Controls.Add(this.label19);
     this.groupCashCard.Controls.Add(this.btnCashCardImport);
     this.groupCashCard.ImeMode = System.Windows.Forms.ImeMode.On;
     this.groupCashCard.Location = new System.Drawing.Point(4, 0);
     this.groupCashCard.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupCashCard.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupCashCard.Name = "groupCashCard";
     this.groupCashCard.Size = new System.Drawing.Size(996, 336);
     this.groupCashCard.TabIndex = 19;
     this.groupCashCard.Text = "Cash Card Import";
     //
     // pbSelect
     //
     this.pbSelect.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pbSelect.ErrorImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbSelect.Image = global::ACMS.Properties.Resources.open_file_icon;
     this.pbSelect.InitialImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbSelect.Location = new System.Drawing.Point(573, 122);
     this.pbSelect.Name = "pbSelect";
     this.pbSelect.Size = new System.Drawing.Size(20, 20);
     this.pbSelect.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbSelect.TabIndex = 36;
     this.pbSelect.TabStop = false;
     this.pbSelect.Click += new System.EventHandler(this.pbSelect_Click);
     //
     // txtFilePath
     //
     this.txtFilePath.EditValue = "";
     this.txtFilePath.Location = new System.Drawing.Point(266, 123);
     this.txtFilePath.Name = "txtFilePath";
     this.txtFilePath.Properties.MaxLength = 255;
     this.txtFilePath.Properties.ReadOnly = true;
     this.txtFilePath.Size = new System.Drawing.Size(301, 20);
     this.txtFilePath.TabIndex = 35;
     //
     // label19
     //
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.Location = new System.Drawing.Point(145, 127);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(126, 16);
     this.label19.TabIndex = 34;
     this.label19.Text = "Select file to upload";
     //
     // btnCashCardImport
     //
     this.btnCashCardImport.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnCashCardImport.Appearance.Options.UseFont = true;
     this.btnCashCardImport.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCashCardImport.Location = new System.Drawing.Point(521, 149);
     this.btnCashCardImport.Name = "btnCashCardImport";
     this.btnCashCardImport.Size = new System.Drawing.Size(72, 18);
     this.btnCashCardImport.TabIndex = 12;
     this.btnCashCardImport.Text = "Import";
     this.btnCashCardImport.Click += new System.EventHandler(this.btnCashCardImport_Click);
     //
     // panel3
     //
     this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel3.Location = new System.Drawing.Point(3, 32);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(1000, 592);
     this.panel3.TabIndex = 45;
     //
     // lblOne_4
     //
     this.lblOne_4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblOne_4.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblOne_4.Appearance.Options.UseFont = true;
     this.lblOne_4.Appearance.Options.UseForeColor = true;
     this.lblOne_4.Location = new System.Drawing.Point(440, 0);
     this.lblOne_4.Name = "lblOne_4";
     this.lblOne_4.Size = new System.Drawing.Size(138, 23);
     this.lblOne_4.TabIndex = 145;
     this.lblOne_4.Text = "Cash Voucher Import";
     this.lblOne_4.Click += new System.EventHandler(this.lblOne_4_Click);
     //
     // lblOne_3
     //
     this.lblOne_3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblOne_3.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblOne_3.Appearance.Options.UseFont = true;
     this.lblOne_3.Appearance.Options.UseForeColor = true;
     this.lblOne_3.Location = new System.Drawing.Point(296, 0);
     this.lblOne_3.Name = "lblOne_3";
     this.lblOne_3.Size = new System.Drawing.Size(138, 23);
     this.lblOne_3.TabIndex = 145;
     this.lblOne_3.Text = "Cash Card Import";
     this.lblOne_3.Click += new System.EventHandler(this.lblOne_3_Click);
     //
     // lblOne_2
     //
     this.lblOne_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblOne_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblOne_2.Appearance.Options.UseFont = true;
     this.lblOne_2.Appearance.Options.UseForeColor = true;
     this.lblOne_2.Location = new System.Drawing.Point(152, 0);
     this.lblOne_2.Name = "lblOne_2";
     this.lblOne_2.Size = new System.Drawing.Size(138, 23);
     this.lblOne_2.TabIndex = 144;
     this.lblOne_2.Text = "GIRO";
     this.lblOne_2.Click += new System.EventHandler(this.lblOne_2_Click);
     //
     // lblOne_1
     //
     this.lblOne_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblOne_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblOne_1.Appearance.Options.UseFont = true;
     this.lblOne_1.Appearance.Options.UseForeColor = true;
     this.lblOne_1.Location = new System.Drawing.Point(8, 0);
     this.lblOne_1.Name = "lblOne_1";
     this.lblOne_1.Size = new System.Drawing.Size(138, 23);
     this.lblOne_1.TabIndex = 143;
     this.lblOne_1.Text = "IPP";
     this.lblOne_1.Click += new System.EventHandler(this.lblOne_1_Click);
     //
     // groupGIROMaster
     //
     this.groupGIROMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupGIROMaster.Controls.Add(this.xtraTabControl1);
     this.groupGIROMaster.Controls.Add(this.GroupGiro);
     this.groupGIROMaster.ImeMode = System.Windows.Forms.ImeMode.On;
     this.groupGIROMaster.Location = new System.Drawing.Point(0, 32);
     this.groupGIROMaster.Name = "groupGIROMaster";
     this.groupGIROMaster.Size = new System.Drawing.Size(1007, 608);
     this.groupGIROMaster.TabIndex = 24;
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xtraTabControl1.AppearancePage.Header.Options.UseFont = true;
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 342);
     this.xtraTabControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.tabGiroDetails;
     this.xtraTabControl1.Size = new System.Drawing.Size(1007, 266);
     this.xtraTabControl1.TabIndex = 36;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabGiroDetails,
     this.tabGiroTrnsHistory});
     //
     // tabGiroDetails
     //
     this.tabGiroDetails.Controls.Add(this.luedtBankBranch);
     this.tabGiroDetails.Controls.Add(this.luedtBank);
     this.tabGiroDetails.Controls.Add(this.luedtPackage);
     this.tabGiroDetails.Controls.Add(this.luedtBranch);
     this.tabGiroDetails.Controls.Add(this.label70);
     this.tabGiroDetails.Controls.Add(this.txtPackageDesc);
     this.tabGiroDetails.Controls.Add(this.txtAccountNo);
     this.tabGiroDetails.Controls.Add(this.txtGIROId);
     this.tabGiroDetails.Controls.Add(this.txtRemark);
     this.tabGiroDetails.Controls.Add(this.lblGiro_BankBranch);
     this.tabGiroDetails.Controls.Add(this.lblGiro_BankACNumber);
     this.tabGiroDetails.Controls.Add(this.lblGiro_BankCode);
     this.tabGiroDetails.Controls.Add(this.lblGiro_Remark);
     this.tabGiroDetails.Controls.Add(this.lblGiro_Package);
     this.tabGiroDetails.Controls.Add(this.lblGiro_Branch);
     this.tabGiroDetails.Controls.Add(this.lblGiro_MemberID);
     this.tabGiroDetails.Controls.Add(this.lblGiroID);
     this.tabGiroDetails.Name = "tabGiroDetails";
     this.tabGiroDetails.Size = new System.Drawing.Size(998, 232);
     this.tabGiroDetails.Text = "Giro Details";
     //
     // luedtBankBranch
     //
     this.luedtBankBranch.Location = new System.Drawing.Point(520, 40);
     this.luedtBankBranch.Name = "luedtBankBranch";
     this.luedtBankBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtBankBranch.Size = new System.Drawing.Size(184, 20);
     this.luedtBankBranch.TabIndex = 142;
     //
     // luedtBank
     //
     this.luedtBank.Location = new System.Drawing.Point(520, 16);
     this.luedtBank.Name = "luedtBank";
     this.luedtBank.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtBank.Size = new System.Drawing.Size(184, 20);
     this.luedtBank.TabIndex = 141;
     //
     // luedtPackage
     //
     this.luedtPackage.Location = new System.Drawing.Point(176, 88);
     this.luedtPackage.Name = "luedtPackage";
     this.luedtPackage.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtPackage.Size = new System.Drawing.Size(184, 20);
     this.luedtPackage.TabIndex = 140;
     //
     // luedtBranch
     //
     this.luedtBranch.Location = new System.Drawing.Point(176, 64);
     this.luedtBranch.Name = "luedtBranch";
     this.luedtBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtBranch.Size = new System.Drawing.Size(184, 20);
     this.luedtBranch.TabIndex = 139;
     //
     // label70
     //
     this.label70.BackColor = System.Drawing.Color.Transparent;
     this.label70.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label70.Location = new System.Drawing.Point(32, 112);
     this.label70.Name = "label70";
     this.label70.Size = new System.Drawing.Size(144, 16);
     this.label70.TabIndex = 119;
     this.label70.Text = "Package Description";
     this.label70.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtPackageDesc
     //
     this.txtPackageDesc.EditValue = "";
     this.txtPackageDesc.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtPackageDesc.Location = new System.Drawing.Point(176, 112);
     this.txtPackageDesc.Name = "txtPackageDesc";
     this.txtPackageDesc.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPackageDesc.Properties.Appearance.Options.UseFont = true;
     this.txtPackageDesc.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtPackageDesc.Size = new System.Drawing.Size(184, 20);
     this.txtPackageDesc.TabIndex = 117;
     //
     // txtAccountNo
     //
     this.txtAccountNo.EditValue = "";
     this.txtAccountNo.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtAccountNo.Location = new System.Drawing.Point(520, 64);
     this.txtAccountNo.Name = "txtAccountNo";
     this.txtAccountNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtAccountNo.Properties.Appearance.Options.UseFont = true;
     this.txtAccountNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtAccountNo.Size = new System.Drawing.Size(184, 20);
     this.txtAccountNo.TabIndex = 116;
     //
     // txtGIROId
     //
     this.txtGIROId.EditValue = "";
     this.txtGIROId.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtGIROId.Location = new System.Drawing.Point(176, 16);
     this.txtGIROId.Name = "txtGIROId";
     this.txtGIROId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtGIROId.Properties.Appearance.Options.UseFont = true;
     this.txtGIROId.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtGIROId.Size = new System.Drawing.Size(184, 20);
     this.txtGIROId.TabIndex = 111;
     //
     // txtRemark
     //
     this.txtRemark.EditValue = "";
     this.txtRemark.Location = new System.Drawing.Point(176, 136);
     this.txtRemark.Name = "txtRemark";
     this.txtRemark.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRemark.Properties.Appearance.Options.UseFont = true;
     this.txtRemark.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtRemark.Size = new System.Drawing.Size(528, 56);
     this.txtRemark.TabIndex = 110;
     //
     // lblGiro_BankBranch
     //
     this.lblGiro_BankBranch.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_BankBranch.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_BankBranch.Location = new System.Drawing.Point(392, 40);
     this.lblGiro_BankBranch.Name = "lblGiro_BankBranch";
     this.lblGiro_BankBranch.Size = new System.Drawing.Size(128, 16);
     this.lblGiro_BankBranch.TabIndex = 101;
     this.lblGiro_BankBranch.Text = "Bank Branch";
     this.lblGiro_BankBranch.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_BankACNumber
     //
     this.lblGiro_BankACNumber.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_BankACNumber.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_BankACNumber.Location = new System.Drawing.Point(392, 64);
     this.lblGiro_BankACNumber.Name = "lblGiro_BankACNumber";
     this.lblGiro_BankACNumber.Size = new System.Drawing.Size(128, 16);
     this.lblGiro_BankACNumber.TabIndex = 100;
     this.lblGiro_BankACNumber.Text = "Account Number";
     this.lblGiro_BankACNumber.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_BankCode
     //
     this.lblGiro_BankCode.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_BankCode.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_BankCode.Location = new System.Drawing.Point(392, 16);
     this.lblGiro_BankCode.Name = "lblGiro_BankCode";
     this.lblGiro_BankCode.Size = new System.Drawing.Size(128, 16);
     this.lblGiro_BankCode.TabIndex = 99;
     this.lblGiro_BankCode.Text = "Bank Code/Name";
     this.lblGiro_BankCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_Remark
     //
     this.lblGiro_Remark.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_Remark.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_Remark.Location = new System.Drawing.Point(32, 144);
     this.lblGiro_Remark.Name = "lblGiro_Remark";
     this.lblGiro_Remark.Size = new System.Drawing.Size(128, 16);
     this.lblGiro_Remark.TabIndex = 98;
     this.lblGiro_Remark.Text = "Remark";
     this.lblGiro_Remark.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_Package
     //
     this.lblGiro_Package.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_Package.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_Package.Location = new System.Drawing.Point(32, 88);
     this.lblGiro_Package.Name = "lblGiro_Package";
     this.lblGiro_Package.Size = new System.Drawing.Size(144, 16);
     this.lblGiro_Package.TabIndex = 97;
     this.lblGiro_Package.Text = "Package";
     this.lblGiro_Package.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_Branch
     //
     this.lblGiro_Branch.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_Branch.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_Branch.Location = new System.Drawing.Point(32, 64);
     this.lblGiro_Branch.Name = "lblGiro_Branch";
     this.lblGiro_Branch.Size = new System.Drawing.Size(144, 16);
     this.lblGiro_Branch.TabIndex = 96;
     this.lblGiro_Branch.Text = "Branch";
     this.lblGiro_Branch.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_MemberID
     //
     this.lblGiro_MemberID.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_MemberID.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_MemberID.Location = new System.Drawing.Point(32, 40);
     this.lblGiro_MemberID.Name = "lblGiro_MemberID";
     this.lblGiro_MemberID.Size = new System.Drawing.Size(144, 16);
     this.lblGiro_MemberID.TabIndex = 95;
     this.lblGiro_MemberID.Text = "Member ID /Name";
     this.lblGiro_MemberID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiroID
     //
     this.lblGiroID.BackColor = System.Drawing.Color.Transparent;
     this.lblGiroID.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiroID.Location = new System.Drawing.Point(32, 16);
     this.lblGiroID.Name = "lblGiroID";
     this.lblGiroID.Size = new System.Drawing.Size(144, 16);
     this.lblGiroID.TabIndex = 93;
     this.lblGiroID.Text = "Giro ID";
     this.lblGiroID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // tabGiroTrnsHistory
     //
     this.tabGiroTrnsHistory.Controls.Add(this.GridTransaction);
     this.tabGiroTrnsHistory.Name = "tabGiroTrnsHistory";
     this.tabGiroTrnsHistory.Size = new System.Drawing.Size(998, 232);
     this.tabGiroTrnsHistory.Text = "Transaction History";
     //
     // GridTransaction
     //
     this.GridTransaction.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GridTransaction.Location = new System.Drawing.Point(0, 0);
     this.GridTransaction.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridTransaction.MainView = this.gridView4;
     this.GridTransaction.Name = "GridTransaction";
     this.GridTransaction.Size = new System.Drawing.Size(998, 232);
     this.GridTransaction.TabIndex = 0;
     this.GridTransaction.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView4});
     //
     // gridView4
     //
     this.gridView4.GridControl = this.GridTransaction;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsBehavior.Editable = false;
     this.gridView4.OptionsCustomization.AllowFilter = false;
     this.gridView4.OptionsCustomization.AllowSort = false;
     //
     // GroupGiro
     //
     this.GroupGiro.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.GroupGiro.Appearance.Options.UseBackColor = true;
     this.GroupGiro.Controls.Add(this.comboBoxGiroStatus);
     this.GroupGiro.Controls.Add(this.label63);
     this.GroupGiro.Controls.Add(this.btnImport);
     this.GroupGiro.Controls.Add(this.btnGiroExport);
     this.GroupGiro.Controls.Add(this.btnGiroUpdate);
     this.GroupGiro.Controls.Add(this.btnGiroDelete);
     this.GroupGiro.Controls.Add(this.btnGiroNew);
     this.GroupGiro.Controls.Add(this.GiroGrid);
     this.GroupGiro.ImeMode = System.Windows.Forms.ImeMode.On;
     this.GroupGiro.Location = new System.Drawing.Point(4, 0);
     this.GroupGiro.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GroupGiro.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GroupGiro.Name = "GroupGiro";
     this.GroupGiro.Size = new System.Drawing.Size(996, 336);
     this.GroupGiro.TabIndex = 19;
     this.GroupGiro.Text = "GIRO";
     //
     // comboBoxGiroStatus
     //
     this.comboBoxGiroStatus.EditValue = 1;
     this.comboBoxGiroStatus.Location = new System.Drawing.Point(8, 40);
     this.comboBoxGiroStatus.Name = "comboBoxGiroStatus";
     this.comboBoxGiroStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxGiroStatus.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Pending Approval", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Active", 2, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Rejected", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Deleted", 4, -1)});
     this.comboBoxGiroStatus.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.comboBoxGiroStatus.Size = new System.Drawing.Size(128, 20);
     this.comboBoxGiroStatus.TabIndex = 35;
     this.comboBoxGiroStatus.SelectedIndexChanged += new System.EventHandler(this.comboBoxGiroStatus_SelectedIndexChanged);
     //
     // label63
     //
     this.label63.BackColor = System.Drawing.Color.Transparent;
     this.label63.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label63.Location = new System.Drawing.Point(8, 24);
     this.label63.Name = "label63";
     this.label63.Size = new System.Drawing.Size(100, 16);
     this.label63.TabIndex = 34;
     this.label63.Text = "Filter by Status";
     //
     // btnImport
     //
     this.btnImport.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnImport.Appearance.Options.UseFont = true;
     this.btnImport.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnImport.Location = new System.Drawing.Point(264, 48);
     this.btnImport.Name = "btnImport";
     this.btnImport.Size = new System.Drawing.Size(72, 18);
     this.btnImport.TabIndex = 12;
     this.btnImport.Text = "Import";
     this.btnImport.Click += new System.EventHandler(this.btnImport_Click);
     //
     // btnGiroExport
     //
     this.btnGiroExport.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnGiroExport.Appearance.Options.UseFont = true;
     this.btnGiroExport.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGiroExport.Location = new System.Drawing.Point(192, 48);
     this.btnGiroExport.Name = "btnGiroExport";
     this.btnGiroExport.Size = new System.Drawing.Size(64, 18);
     this.btnGiroExport.TabIndex = 11;
     this.btnGiroExport.Text = "Export";
     this.btnGiroExport.Click += new System.EventHandler(this.btnGiroExport_Click);
     //
     // btnGiroUpdate
     //
     this.btnGiroUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnGiroUpdate.Appearance.Options.UseFont = true;
     this.btnGiroUpdate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGiroUpdate.Location = new System.Drawing.Point(344, 24);
     this.btnGiroUpdate.Name = "btnGiroUpdate";
     this.btnGiroUpdate.Size = new System.Drawing.Size(64, 18);
     this.btnGiroUpdate.TabIndex = 10;
     this.btnGiroUpdate.Text = "Update";
     this.btnGiroUpdate.Click += new System.EventHandler(this.btnGiroUpdate_Click);
     //
     // btnGiroDelete
     //
     this.btnGiroDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnGiroDelete.Appearance.Options.UseFont = true;
     this.btnGiroDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGiroDelete.Location = new System.Drawing.Point(264, 24);
     this.btnGiroDelete.Name = "btnGiroDelete";
     this.btnGiroDelete.Size = new System.Drawing.Size(72, 18);
     this.btnGiroDelete.TabIndex = 5;
     this.btnGiroDelete.Text = "Delete";
     this.btnGiroDelete.Click += new System.EventHandler(this.btnGiroDelete_Click);
     //
     // btnGiroNew
     //
     this.btnGiroNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnGiroNew.Appearance.Options.UseFont = true;
     this.btnGiroNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGiroNew.Location = new System.Drawing.Point(192, 24);
     this.btnGiroNew.Name = "btnGiroNew";
     this.btnGiroNew.Size = new System.Drawing.Size(64, 18);
     this.btnGiroNew.TabIndex = 2;
     this.btnGiroNew.Text = "New";
     this.btnGiroNew.Click += new System.EventHandler(this.btnGiroNew_Click);
     //
     // GiroGrid
     //
     this.GiroGrid.Dock = System.Windows.Forms.DockStyle.Bottom;
     gridLevelNode3.RelationName = "Level1";
     this.GiroGrid.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode3});
     this.GiroGrid.Location = new System.Drawing.Point(2, 78);
     this.GiroGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GiroGrid.MainView = this.GIROGridView;
     this.GiroGrid.Name = "GiroGrid";
     this.GiroGrid.Size = new System.Drawing.Size(992, 256);
     this.GiroGrid.TabIndex = 0;
     this.GiroGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.GIROGridView});
     //
     // GIROGridView
     //
     this.GIROGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7});
     this.GIROGridView.GridControl = this.GiroGrid;
     this.GIROGridView.Name = "GIROGridView";
     this.GIROGridView.OptionsBehavior.Editable = false;
     this.GIROGridView.OptionsCustomization.AllowFilter = false;
     this.GIROGridView.OptionsSelection.MultiSelect = true;
     this.GIROGridView.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Giro Id";
     this.gridColumn1.FieldName = "nGIRORefID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Date";
     this.gridColumn2.FieldName = "dtDate";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Member ID";
     this.gridColumn3.FieldName = "strMembershipID";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Member Name";
     this.gridColumn4.FieldName = "strMemberName";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Branch";
     this.gridColumn5.FieldName = "strBranchCode";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Package Code";
     this.gridColumn6.FieldName = "strPackageCode";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Package Description";
     this.gridColumn7.FieldName = "strDescription";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     //
     // tabManagerTwo
     //
     this.tabManagerTwo.Controls.Add(this.GrpPayroll);
     this.tabManagerTwo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabManagerTwo.Name = "tabManagerTwo";
     this.tabManagerTwo.PageVisible = false;
     this.tabManagerTwo.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerTwo.Text = "Payroll";
     //
     // GrpPayroll
     //
     this.GrpPayroll.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.GrpPayroll.Appearance.Options.UseBackColor = true;
     this.GrpPayroll.Controls.Add(this.progressBarControl1);
     this.GrpPayroll.Controls.Add(this.cbJob);
     this.GrpPayroll.Controls.Add(this.label8);
     this.GrpPayroll.Controls.Add(this.grpGridExcel);
     this.GrpPayroll.Controls.Add(this.btnPayrollExport);
     this.GrpPayroll.Controls.Add(this.btnPayrollGenerate);
     this.GrpPayroll.Controls.Add(this.btnPayrollDelete);
     this.GrpPayroll.Controls.Add(this.comboBoxEditMTH);
     this.GrpPayroll.Controls.Add(this.comboBoxEditYR);
     this.GrpPayroll.Controls.Add(this.lblYear);
     this.GrpPayroll.Controls.Add(this.lblMonth);
     this.GrpPayroll.Controls.Add(this.cmbxPayroll);
     this.GrpPayroll.Controls.Add(this.gridPayroll);
     this.GrpPayroll.Location = new System.Drawing.Point(0, 0);
     this.GrpPayroll.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GrpPayroll.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GrpPayroll.Name = "GrpPayroll";
     this.GrpPayroll.Size = new System.Drawing.Size(994, 616);
     this.GrpPayroll.TabIndex = 0;
     this.GrpPayroll.Text = "PAYROLL";
     //
     // progressBarControl1
     //
     this.progressBarControl1.Location = new System.Drawing.Point(784, 24);
     this.progressBarControl1.Name = "progressBarControl1";
     this.progressBarControl1.Properties.ShowTitle = true;
     this.progressBarControl1.Size = new System.Drawing.Size(200, 16);
     this.progressBarControl1.TabIndex = 17;
     this.progressBarControl1.Visible = false;
     //
     // cbJob
     //
     this.cbJob.Location = new System.Drawing.Point(432, 24);
     this.cbJob.Name = "cbJob";
     this.cbJob.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbJob.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbJob.Size = new System.Drawing.Size(128, 22);
     this.cbJob.TabIndex = 16;
     this.cbJob.SelectedIndexChanged += new System.EventHandler(this.cbJob_SelectedIndexChanged);
     //
     // label8
     //
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.Black;
     this.label8.Location = new System.Drawing.Point(344, 24);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(72, 16);
     this.label8.TabIndex = 15;
     this.label8.Text = "Job Position";
     //
     // grpGridExcel
     //
     this.grpGridExcel.Controls.Add(this.gridExcel);
     this.grpGridExcel.Location = new System.Drawing.Point(72, 144);
     this.grpGridExcel.Name = "grpGridExcel";
     this.grpGridExcel.Size = new System.Drawing.Size(544, 176);
     this.grpGridExcel.TabIndex = 13;
     this.grpGridExcel.Text = "groupControl1";
     this.grpGridExcel.Visible = false;
     //
     // gridExcel
     //
     this.gridExcel.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridExcel.Location = new System.Drawing.Point(2, 30);
     this.gridExcel.MainView = this.gridViewExcel;
     this.gridExcel.Name = "gridExcel";
     this.gridExcel.Size = new System.Drawing.Size(540, 144);
     this.gridExcel.TabIndex = 12;
     this.gridExcel.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewExcel});
     this.gridExcel.Visible = false;
     //
     // gridViewExcel
     //
     this.gridViewExcel.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn19,
     this.FirstPayDate,
     this.gridColumn24,
     this.gridColumn25,
     this.gridColumn26,
     this.gridColumn27,
     this.gridColumn28,
     this.gridColumn29,
     this.gridColumn30,
     this.gridColumn31,
     this.gridColumn32,
     this.gridColumn33,
     this.gridColumn34,
     this.gridColumn35,
     this.gridColumn36,
     this.SecondPayDate});
     this.gridViewExcel.GridControl = this.gridExcel;
     this.gridViewExcel.Name = "gridViewExcel";
     this.gridViewExcel.OptionsBehavior.Editable = false;
     this.gridViewExcel.OptionsCustomization.AllowFilter = false;
     this.gridViewExcel.OptionsView.ColumnAutoWidth = false;
     this.gridViewExcel.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Emp ID";
     this.gridColumn19.FieldName = "nEmployeeID";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 0;
     this.gridColumn19.Width = 68;
     //
     // FirstPayDate
     //
     this.FirstPayDate.Caption = "Payroll Date";
     this.FirstPayDate.FieldName = "dtFirstRunDate";
     this.FirstPayDate.Name = "FirstPayDate";
     this.FirstPayDate.Visible = true;
     this.FirstPayDate.VisibleIndex = 1;
     this.FirstPayDate.Width = 76;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "OT-1.5 (HRS)";
     this.gridColumn24.FieldName = "nNormalOT";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 2;
     this.gridColumn24.Width = 77;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "OT-1.0 (DAYS)";
     this.gridColumn25.FieldName = "nPublicHolidayOT";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 3;
     this.gridColumn25.Width = 83;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "OT-2.0 (DAYS)";
     this.gridColumn26.FieldName = "nOffDayOT";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 4;
     this.gridColumn26.Width = 82;
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "Part-Time Salary (HRS)";
     this.gridColumn27.FieldName = "nPartTimeWorkHours";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 5;
     this.gridColumn27.Width = 85;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "AL Entitlement (HRS)";
     this.gridColumn28.FieldName = "nALEntitlementHours";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 6;
     this.gridColumn28.Width = 77;
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "PH Entitlement (HRS)";
     this.gridColumn29.FieldName = "nPHEntitlementHours";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 7;
     this.gridColumn29.Width = 64;
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "Service Reimbursement (AMT)";
     this.gridColumn30.FieldName = "mServiceReimbursements";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 8;
     this.gridColumn30.Width = 74;
     //
     // gridColumn31
     //
     this.gridColumn31.Caption = "Lateness (HRS)";
     this.gridColumn31.FieldName = "nTotalLateness";
     this.gridColumn31.Name = "gridColumn31";
     this.gridColumn31.Visible = true;
     this.gridColumn31.VisibleIndex = 9;
     this.gridColumn31.Width = 61;
     //
     // gridColumn32
     //
     this.gridColumn32.Caption = "Unpaid AL (DAYS)";
     this.gridColumn32.FieldName = "nUnpaidAL";
     this.gridColumn32.Name = "gridColumn32";
     this.gridColumn32.Visible = true;
     this.gridColumn32.VisibleIndex = 10;
     this.gridColumn32.Width = 78;
     //
     // gridColumn33
     //
     this.gridColumn33.Caption = "Unpaid T/O (HRS)";
     this.gridColumn33.FieldName = "nUnpaidTO";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 11;
     this.gridColumn33.Width = 74;
     //
     // gridColumn34
     //
     this.gridColumn34.Caption = "Unpaid Medical Absent (DAYS)";
     this.gridColumn34.FieldName = "nUnpaidMedical";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.Visible = true;
     this.gridColumn34.VisibleIndex = 12;
     this.gridColumn34.Width = 83;
     //
     // gridColumn35
     //
     this.gridColumn35.Caption = "Commision (AMT)";
     this.gridColumn35.FieldName = "mCommission";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Width = 50;
     //
     // gridColumn36
     //
     this.gridColumn36.Caption = "Commission Lateness Penalty (AMT)";
     this.gridColumn36.FieldName = "nTotalLateness";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.Width = 109;
     //
     // SecondPayDate
     //
     this.SecondPayDate.Caption = "Payroll Date";
     this.SecondPayDate.FieldName = "dtSecondRunDate";
     this.SecondPayDate.Name = "SecondPayDate";
     //
     // btnPayrollExport
     //
     this.btnPayrollExport.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPayrollExport.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPayrollExport.Appearance.Options.UseBackColor = true;
     this.btnPayrollExport.Appearance.Options.UseFont = true;
     this.btnPayrollExport.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPayrollExport.Location = new System.Drawing.Point(648, 24);
     this.btnPayrollExport.Name = "btnPayrollExport";
     this.btnPayrollExport.Size = new System.Drawing.Size(56, 20);
     this.btnPayrollExport.TabIndex = 9;
     this.btnPayrollExport.Text = "Export";
     this.btnPayrollExport.Click += new System.EventHandler(this.btnPayrollExport_Click);
     //
     // btnPayrollGenerate
     //
     this.btnPayrollGenerate.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPayrollGenerate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPayrollGenerate.Appearance.Options.UseBackColor = true;
     this.btnPayrollGenerate.Appearance.Options.UseFont = true;
     this.btnPayrollGenerate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPayrollGenerate.Location = new System.Drawing.Point(568, 24);
     this.btnPayrollGenerate.Name = "btnPayrollGenerate";
     this.btnPayrollGenerate.Size = new System.Drawing.Size(64, 20);
     this.btnPayrollGenerate.TabIndex = 8;
     this.btnPayrollGenerate.Text = "Generate";
     this.btnPayrollGenerate.Click += new System.EventHandler(this.btnPayrollGenerate_Click);
     //
     // btnPayrollDelete
     //
     this.btnPayrollDelete.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPayrollDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPayrollDelete.Appearance.Options.UseBackColor = true;
     this.btnPayrollDelete.Appearance.Options.UseFont = true;
     this.btnPayrollDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPayrollDelete.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnPayrollDelete.Location = new System.Drawing.Point(720, 24);
     this.btnPayrollDelete.Name = "btnPayrollDelete";
     this.btnPayrollDelete.Size = new System.Drawing.Size(56, 20);
     this.btnPayrollDelete.TabIndex = 7;
     this.btnPayrollDelete.Text = "Delete";
     this.btnPayrollDelete.Click += new System.EventHandler(this.btnPayrollDelete_Click);
     //
     // comboBoxEditMTH
     //
     this.comboBoxEditMTH.EditValue = "1";
     this.comboBoxEditMTH.Location = new System.Drawing.Point(288, 24);
     this.comboBoxEditMTH.Name = "comboBoxEditMTH";
     this.comboBoxEditMTH.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.comboBoxEditMTH.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEditMTH.Properties.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.comboBoxEditMTH.Properties.PopupSizeable = true;
     this.comboBoxEditMTH.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEditMTH.Size = new System.Drawing.Size(48, 22);
     this.comboBoxEditMTH.TabIndex = 6;
     this.comboBoxEditMTH.SelectedIndexChanged += new System.EventHandler(this.comboBoxEditMTH_SelectedIndexChanged);
     //
     // comboBoxEditYR
     //
     this.comboBoxEditYR.EditValue = "2006";
     this.comboBoxEditYR.Location = new System.Drawing.Point(176, 24);
     this.comboBoxEditYR.Name = "comboBoxEditYR";
     this.comboBoxEditYR.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.comboBoxEditYR.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEditYR.Properties.Items.AddRange(new object[] {
     "1990",
     "1991",
     "1992",
     "1993",
     "1994",
     "1995",
     "1996",
     "1997",
     "1998",
     "1999",
     "2000",
     "2001",
     "2002",
     "2003",
     "2004",
     "2005",
     "2006",
     "2007",
     "2008",
     "2009",
     "2010",
     "2011",
     "2012",
     "2013",
     "2014",
     "2015",
     "2016",
     "2017",
     "2018",
     "2019",
     "2020",
     "2021",
     "2022",
     "2023",
     "2024",
     "2025",
     "2026",
     "2027",
     "2028",
     "2029",
     "2030"});
     this.comboBoxEditYR.Properties.PopupSizeable = true;
     this.comboBoxEditYR.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEditYR.Size = new System.Drawing.Size(64, 22);
     this.comboBoxEditYR.TabIndex = 5;
     this.comboBoxEditYR.SelectedValueChanged += new System.EventHandler(this.comboBoxEditYR_SelectedValueChanged);
     //
     // lblYear
     //
     this.lblYear.BackColor = System.Drawing.Color.Transparent;
     this.lblYear.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblYear.ForeColor = System.Drawing.Color.Black;
     this.lblYear.Location = new System.Drawing.Point(136, 24);
     this.lblYear.Name = "lblYear";
     this.lblYear.Size = new System.Drawing.Size(56, 16);
     this.lblYear.TabIndex = 4;
     this.lblYear.Text = "Year";
     //
     // lblMonth
     //
     this.lblMonth.BackColor = System.Drawing.Color.Transparent;
     this.lblMonth.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMonth.Location = new System.Drawing.Point(248, 24);
     this.lblMonth.Name = "lblMonth";
     this.lblMonth.Size = new System.Drawing.Size(48, 16);
     this.lblMonth.TabIndex = 3;
     this.lblMonth.Text = "Month";
     //
     // cmbxPayroll
     //
     this.cmbxPayroll.EditValue = "First Run";
     this.cmbxPayroll.Location = new System.Drawing.Point(8, 24);
     this.cmbxPayroll.Name = "cmbxPayroll";
     this.cmbxPayroll.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cmbxPayroll.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbxPayroll.Properties.Items.AddRange(new object[] {
     "First Run",
     "Second Run"});
     this.cmbxPayroll.Properties.PopupSizeable = true;
     this.cmbxPayroll.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbxPayroll.Size = new System.Drawing.Size(120, 22);
     this.cmbxPayroll.TabIndex = 2;
     this.cmbxPayroll.SelectedValueChanged += new System.EventHandler(this.cmbxPayroll_SelectedValueChanged);
     //
     // gridPayroll
     //
     this.gridPayroll.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridPayroll.Location = new System.Drawing.Point(2, 64);
     this.gridPayroll.MainView = this.gridViewPayroll;
     this.gridPayroll.Name = "gridPayroll";
     this.gridPayroll.Size = new System.Drawing.Size(990, 550);
     this.gridPayroll.TabIndex = 11;
     this.gridPayroll.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewPayroll});
     //
     // gridViewPayroll
     //
     this.gridViewPayroll.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.nEmployeeID,
     this.gridColumn9,
     this.gridColumn17,
     this.gridColumn18,
     this.dtFirstRunDate,
     this.nNormalOT,
     this.nPublicHolidayOT,
     this.nOffDayOT,
     this.nPartTimeWorkHours,
     this.nALEntitlementHours,
     this.nPHEntitlementHours,
     this.mServiceReimbursements,
     this.nTotalLateness,
     this.nUnpaidAL,
     this.nUnpaidTO,
     this.nUnpaidMedical,
     this.mCommission,
     this.mCommissionLatenessPenalty,
     this.dtSecondRunDate});
     this.gridViewPayroll.GridControl = this.gridPayroll;
     this.gridViewPayroll.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewPayroll.Name = "gridViewPayroll";
     this.gridViewPayroll.OptionsBehavior.Editable = false;
     this.gridViewPayroll.OptionsCustomization.AllowFilter = false;
     this.gridViewPayroll.OptionsView.ColumnAutoWidth = false;
     this.gridViewPayroll.OptionsView.ShowGroupPanel = false;
     this.gridViewPayroll.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewPayroll.Click += new System.EventHandler(this.gridViewPayroll_Click);
     //
     // nEmployeeID
     //
     this.nEmployeeID.Caption = "Emp ID";
     this.nEmployeeID.FieldName = "nEmployeeID";
     this.nEmployeeID.Name = "nEmployeeID";
     this.nEmployeeID.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.nEmployeeID.Visible = true;
     this.nEmployeeID.VisibleIndex = 0;
     this.nEmployeeID.Width = 68;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Name";
     this.gridColumn9.FieldName = "strEmployeeName";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 1;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Job Title";
     this.gridColumn17.FieldName = "strJobPosition";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 2;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Branch";
     this.gridColumn18.FieldName = "strBranchCode";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 3;
     //
     // dtFirstRunDate
     //
     this.dtFirstRunDate.Caption = "Payroll Date";
     this.dtFirstRunDate.FieldName = "dtFirstRunDate";
     this.dtFirstRunDate.Name = "dtFirstRunDate";
     this.dtFirstRunDate.Width = 76;
     //
     // nNormalOT
     //
     this.nNormalOT.Caption = "OT-1.5 (HRS)";
     this.nNormalOT.FieldName = "nNormalOT";
     this.nNormalOT.Name = "nNormalOT";
     this.nNormalOT.Visible = true;
     this.nNormalOT.VisibleIndex = 4;
     this.nNormalOT.Width = 77;
     //
     // nPublicHolidayOT
     //
     this.nPublicHolidayOT.Caption = "OT-1.0 (DAYS)";
     this.nPublicHolidayOT.FieldName = "nPublicHolidayOT";
     this.nPublicHolidayOT.Name = "nPublicHolidayOT";
     this.nPublicHolidayOT.Visible = true;
     this.nPublicHolidayOT.VisibleIndex = 5;
     this.nPublicHolidayOT.Width = 83;
     //
     // nOffDayOT
     //
     this.nOffDayOT.Caption = "OT-2.0 (DAYS)";
     this.nOffDayOT.FieldName = "nOffDayOT";
     this.nOffDayOT.Name = "nOffDayOT";
     this.nOffDayOT.Visible = true;
     this.nOffDayOT.VisibleIndex = 6;
     this.nOffDayOT.Width = 82;
     //
     // nPartTimeWorkHours
     //
     this.nPartTimeWorkHours.Caption = "Part-Time Salary (HRS)";
     this.nPartTimeWorkHours.FieldName = "nPartTimeWorkHours";
     this.nPartTimeWorkHours.Name = "nPartTimeWorkHours";
     this.nPartTimeWorkHours.Visible = true;
     this.nPartTimeWorkHours.VisibleIndex = 7;
     this.nPartTimeWorkHours.Width = 85;
     //
     // nALEntitlementHours
     //
     this.nALEntitlementHours.Caption = "AL Entitlement (HRS)";
     this.nALEntitlementHours.FieldName = "nALEntitlementHours";
     this.nALEntitlementHours.Name = "nALEntitlementHours";
     this.nALEntitlementHours.Visible = true;
     this.nALEntitlementHours.VisibleIndex = 8;
     this.nALEntitlementHours.Width = 77;
     //
     // nPHEntitlementHours
     //
     this.nPHEntitlementHours.Caption = "PH Entitlement (HRS)";
     this.nPHEntitlementHours.FieldName = "nPHEntitlementHours";
     this.nPHEntitlementHours.Name = "nPHEntitlementHours";
     this.nPHEntitlementHours.Visible = true;
     this.nPHEntitlementHours.VisibleIndex = 9;
     this.nPHEntitlementHours.Width = 64;
     //
     // mServiceReimbursements
     //
     this.mServiceReimbursements.Caption = "Service Reimbursement (AMT)";
     this.mServiceReimbursements.FieldName = "mServiceReimbursements";
     this.mServiceReimbursements.Name = "mServiceReimbursements";
     this.mServiceReimbursements.Visible = true;
     this.mServiceReimbursements.VisibleIndex = 10;
     this.mServiceReimbursements.Width = 74;
     //
     // nTotalLateness
     //
     this.nTotalLateness.Caption = "Lateness (HRS)";
     this.nTotalLateness.FieldName = "nTotalLateness";
     this.nTotalLateness.Name = "nTotalLateness";
     this.nTotalLateness.Visible = true;
     this.nTotalLateness.VisibleIndex = 11;
     this.nTotalLateness.Width = 61;
     //
     // nUnpaidAL
     //
     this.nUnpaidAL.Caption = "Unpaid AL (DAYS)";
     this.nUnpaidAL.FieldName = "nUnpaidAL";
     this.nUnpaidAL.Name = "nUnpaidAL";
     this.nUnpaidAL.Visible = true;
     this.nUnpaidAL.VisibleIndex = 12;
     this.nUnpaidAL.Width = 78;
     //
     // nUnpaidTO
     //
     this.nUnpaidTO.Caption = "Unpaid T/O (HRS)";
     this.nUnpaidTO.FieldName = "nUnpaidTO";
     this.nUnpaidTO.Name = "nUnpaidTO";
     this.nUnpaidTO.Visible = true;
     this.nUnpaidTO.VisibleIndex = 13;
     this.nUnpaidTO.Width = 74;
     //
     // nUnpaidMedical
     //
     this.nUnpaidMedical.Caption = "Unpaid Medical Absent (DAYS)";
     this.nUnpaidMedical.FieldName = "nUnpaidMedical";
     this.nUnpaidMedical.Name = "nUnpaidMedical";
     this.nUnpaidMedical.Visible = true;
     this.nUnpaidMedical.VisibleIndex = 14;
     this.nUnpaidMedical.Width = 83;
     //
     // mCommission
     //
     this.mCommission.Caption = "Commision (AMT)";
     this.mCommission.FieldName = "mCommission";
     this.mCommission.Name = "mCommission";
     this.mCommission.Width = 50;
     //
     // mCommissionLatenessPenalty
     //
     this.mCommissionLatenessPenalty.Caption = "Commission Lateness Penalty (AMT)";
     this.mCommissionLatenessPenalty.FieldName = "nTotalLateness";
     this.mCommissionLatenessPenalty.Name = "mCommissionLatenessPenalty";
     this.mCommissionLatenessPenalty.Width = 109;
     //
     // dtSecondRunDate
     //
     this.dtSecondRunDate.Caption = "Payroll Date";
     this.dtSecondRunDate.FieldName = "dtSecondRunDate";
     this.dtSecondRunDate.Name = "dtSecondRunDate";
     //
     // tabManagerThree
     //
     this.tabManagerThree.Appearance.PageClient.BackColor = System.Drawing.Color.DimGray;
     this.tabManagerThree.Appearance.PageClient.Options.UseBackColor = true;
     this.tabManagerThree.Controls.Add(this.lblThree_2);
     this.tabManagerThree.Controls.Add(this.lblThree_1);
     this.tabManagerThree.Controls.Add(this.lblThree_3);
     this.tabManagerThree.Controls.Add(this.lblThree_4);
     this.tabManagerThree.Controls.Add(this.grpClassSchedule);
     this.tabManagerThree.Controls.Add(this.groupMemCard);
     this.tabManagerThree.Controls.Add(this.grpRoadShow);
     this.tabManagerThree.Controls.Add(this.grpNextSemSchedule);
     this.tabManagerThree.Name = "tabManagerThree";
     this.tabManagerThree.PageVisible = false;
     this.tabManagerThree.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerThree.Text = "Operation";
     //
     // lblThree_2
     //
     this.lblThree_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_2.Appearance.Options.UseFont = true;
     this.lblThree_2.Appearance.Options.UseForeColor = true;
     this.lblThree_2.Location = new System.Drawing.Point(296, 0);
     this.lblThree_2.Name = "lblThree_2";
     this.lblThree_2.Size = new System.Drawing.Size(138, 23);
     this.lblThree_2.TabIndex = 144;
     this.lblThree_2.Text = "Member Card";
     this.lblThree_2.Click += new System.EventHandler(this.lblThree_2_Click);
     //
     // lblThree_1
     //
     this.lblThree_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_1.Appearance.Options.UseFont = true;
     this.lblThree_1.Appearance.Options.UseForeColor = true;
     this.lblThree_1.Location = new System.Drawing.Point(8, 0);
     this.lblThree_1.Name = "lblThree_1";
     this.lblThree_1.Size = new System.Drawing.Size(138, 23);
     this.lblThree_1.TabIndex = 143;
     this.lblThree_1.Text = "Class Schedule";
     this.lblThree_1.Click += new System.EventHandler(this.lblThree_1_Click);
     //
     // lblThree_3
     //
     this.lblThree_3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_3.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_3.Appearance.Options.UseFont = true;
     this.lblThree_3.Appearance.Options.UseForeColor = true;
     this.lblThree_3.Location = new System.Drawing.Point(440, 0);
     this.lblThree_3.Name = "lblThree_3";
     this.lblThree_3.Size = new System.Drawing.Size(138, 23);
     this.lblThree_3.TabIndex = 145;
     this.lblThree_3.Text = "Admin Operation";
     this.lblThree_3.Click += new System.EventHandler(this.lblThree_3_Click);
     //
     // lblThree_4
     //
     this.lblThree_4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_4.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_4.Appearance.Options.UseFont = true;
     this.lblThree_4.Appearance.Options.UseForeColor = true;
     this.lblThree_4.Location = new System.Drawing.Point(152, 0);
     this.lblThree_4.Name = "lblThree_4";
     this.lblThree_4.Size = new System.Drawing.Size(138, 23);
     this.lblThree_4.TabIndex = 145;
     this.lblThree_4.Text = "Next Sem Schedule";
     this.lblThree_4.Click += new System.EventHandler(this.lblThree_4_Click);
     //
     // grpClassSchedule
     //
     this.grpClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.grpClassSchedule.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.grpClassSchedule.Appearance.Options.UseBackColor = true;
     this.grpClassSchedule.Appearance.Options.UseForeColor = true;
     this.grpClassSchedule.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpClassSchedule.AppearanceCaption.Options.UseFont = true;
     this.grpClassSchedule.Controls.Add(this.label9);
     this.grpClassSchedule.Controls.Add(this.comboBoxHall);
     this.grpClassSchedule.Controls.Add(this.comboBoxBranch);
     this.grpClassSchedule.Controls.Add(this.btnRefreshClassSchedule);
     this.grpClassSchedule.Controls.Add(this.cmbxScheduleType);
     this.grpClassSchedule.Controls.Add(this.lblPQBranch);
     this.grpClassSchedule.Controls.Add(this.lblScheduleType);
     this.grpClassSchedule.Controls.Add(this.lblSUN);
     this.grpClassSchedule.Controls.Add(this.panelSun);
     this.grpClassSchedule.Controls.Add(this.panelSat);
     this.grpClassSchedule.Controls.Add(this.lblFRI);
     this.grpClassSchedule.Controls.Add(this.lblTHU);
     this.grpClassSchedule.Controls.Add(this.lblWED);
     this.grpClassSchedule.Controls.Add(this.lblTUE);
     this.grpClassSchedule.Controls.Add(this.panelMon);
     this.grpClassSchedule.Controls.Add(this.panelFri);
     this.grpClassSchedule.Controls.Add(this.panelThu);
     this.grpClassSchedule.Controls.Add(this.panelWed);
     this.grpClassSchedule.Controls.Add(this.panelTue);
     this.grpClassSchedule.Controls.Add(this.lblMON);
     this.grpClassSchedule.Controls.Add(this.btnPrintClassSchedule);
     this.grpClassSchedule.Controls.Add(this.btnUpdateClassSchedule);
     this.grpClassSchedule.Controls.Add(this.btnNewClassSchedule);
     this.grpClassSchedule.Controls.Add(this.lblSAT);
     this.grpClassSchedule.Location = new System.Drawing.Point(16, 32);
     this.grpClassSchedule.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpClassSchedule.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpClassSchedule.Name = "grpClassSchedule";
     this.grpClassSchedule.Size = new System.Drawing.Size(996, 592);
     this.grpClassSchedule.TabIndex = 5;
     this.grpClassSchedule.Text = "Class Schedule";
     //
     // label9
     //
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(16, 103);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(100, 16);
     this.label9.TabIndex = 126;
     this.label9.Text = "Filter by Hall";
     //
     // comboBoxHall
     //
     this.comboBoxHall.Location = new System.Drawing.Point(16, 122);
     this.comboBoxHall.Name = "comboBoxHall";
     this.comboBoxHall.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxHall.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("1", "1", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("2", "2", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("3", "3", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("4", "4", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None)});
     this.comboBoxHall.Size = new System.Drawing.Size(110, 20);
     this.comboBoxHall.TabIndex = 125;
     //
     // comboBoxBranch
     //
     this.comboBoxBranch.Location = new System.Drawing.Point(16, 80);
     this.comboBoxBranch.Name = "comboBoxBranch";
     this.comboBoxBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxBranch.Size = new System.Drawing.Size(110, 20);
     this.comboBoxBranch.TabIndex = 122;
     this.comboBoxBranch.EditValueChanged += new System.EventHandler(this.comboBoxBranch_SelectedValueChanged);
     //
     // btnRefreshClassSchedule
     //
     this.btnRefreshClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.btnRefreshClassSchedule.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnRefreshClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnRefreshClassSchedule.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.btnRefreshClassSchedule.Appearance.Options.UseBackColor = true;
     this.btnRefreshClassSchedule.Appearance.Options.UseFont = true;
     this.btnRefreshClassSchedule.Appearance.Options.UseForeColor = true;
     this.btnRefreshClassSchedule.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnRefreshClassSchedule.Location = new System.Drawing.Point(16, 148);
     this.btnRefreshClassSchedule.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnRefreshClassSchedule.Name = "btnRefreshClassSchedule";
     this.btnRefreshClassSchedule.Size = new System.Drawing.Size(104, 30);
     this.btnRefreshClassSchedule.TabIndex = 121;
     this.btnRefreshClassSchedule.Text = "Search";
     this.btnRefreshClassSchedule.Click += new System.EventHandler(this.btnRefreshClassSchedule_Click);
     //
     // cmbxScheduleType
     //
     this.cmbxScheduleType.EditValue = "Current Schedule";
     this.cmbxScheduleType.Location = new System.Drawing.Point(16, 41);
     this.cmbxScheduleType.Name = "cmbxScheduleType";
     this.cmbxScheduleType.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cmbxScheduleType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbxScheduleType.Properties.Items.AddRange(new object[] {
     "Current Schedule",
     "Future Schedule"});
     this.cmbxScheduleType.Properties.PopupSizeable = true;
     this.cmbxScheduleType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbxScheduleType.Size = new System.Drawing.Size(110, 22);
     this.cmbxScheduleType.TabIndex = 2;
     //
     // lblPQBranch
     //
     this.lblPQBranch.BackColor = System.Drawing.Color.Transparent;
     this.lblPQBranch.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPQBranch.Location = new System.Drawing.Point(16, 64);
     this.lblPQBranch.Name = "lblPQBranch";
     this.lblPQBranch.Size = new System.Drawing.Size(100, 16);
     this.lblPQBranch.TabIndex = 33;
     this.lblPQBranch.Text = "Filter by Branch";
     //
     // lblScheduleType
     //
     this.lblScheduleType.BackColor = System.Drawing.Color.Transparent;
     this.lblScheduleType.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblScheduleType.Location = new System.Drawing.Point(16, 25);
     this.lblScheduleType.Name = "lblScheduleType";
     this.lblScheduleType.Size = new System.Drawing.Size(100, 16);
     this.lblScheduleType.TabIndex = 33;
     this.lblScheduleType.Text = "Filter by Type";
     //
     // lblSUN
     //
     this.lblSUN.BackColor = System.Drawing.Color.PowderBlue;
     this.lblSUN.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblSUN.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSUN.Location = new System.Drawing.Point(760, 24);
     this.lblSUN.Name = "lblSUN";
     this.lblSUN.Size = new System.Drawing.Size(104, 16);
     this.lblSUN.TabIndex = 30;
     this.lblSUN.Text = "SUN";
     //
     // panelSun
     //
     this.panelSun.AutoScroll = true;
     this.panelSun.BackColor = System.Drawing.Color.White;
     this.panelSun.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSun.Location = new System.Drawing.Point(760, 40);
     this.panelSun.Name = "panelSun";
     this.panelSun.Size = new System.Drawing.Size(104, 512);
     this.panelSun.TabIndex = 28;
     //
     // panelSat
     //
     this.panelSat.AutoScroll = true;
     this.panelSat.BackColor = System.Drawing.Color.White;
     this.panelSat.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSat.Location = new System.Drawing.Point(656, 40);
     this.panelSat.Name = "panelSat";
     this.panelSat.Size = new System.Drawing.Size(104, 512);
     this.panelSat.TabIndex = 27;
     //
     // lblFRI
     //
     this.lblFRI.BackColor = System.Drawing.Color.PowderBlue;
     this.lblFRI.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblFRI.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFRI.Location = new System.Drawing.Point(552, 24);
     this.lblFRI.Name = "lblFRI";
     this.lblFRI.Size = new System.Drawing.Size(104, 16);
     this.lblFRI.TabIndex = 26;
     this.lblFRI.Text = "FRI";
     //
     // lblTHU
     //
     this.lblTHU.BackColor = System.Drawing.Color.PowderBlue;
     this.lblTHU.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblTHU.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTHU.Location = new System.Drawing.Point(448, 24);
     this.lblTHU.Name = "lblTHU";
     this.lblTHU.Size = new System.Drawing.Size(104, 16);
     this.lblTHU.TabIndex = 25;
     this.lblTHU.Text = "THU";
     //
     // lblWED
     //
     this.lblWED.BackColor = System.Drawing.Color.PowderBlue;
     this.lblWED.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblWED.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblWED.Location = new System.Drawing.Point(344, 24);
     this.lblWED.Name = "lblWED";
     this.lblWED.Size = new System.Drawing.Size(104, 16);
     this.lblWED.TabIndex = 24;
     this.lblWED.Text = "WED";
     //
     // lblTUE
     //
     this.lblTUE.BackColor = System.Drawing.Color.PowderBlue;
     this.lblTUE.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblTUE.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTUE.Location = new System.Drawing.Point(240, 24);
     this.lblTUE.Name = "lblTUE";
     this.lblTUE.Size = new System.Drawing.Size(104, 16);
     this.lblTUE.TabIndex = 23;
     this.lblTUE.Text = "TUE";
     //
     // panelMon
     //
     this.panelMon.AutoScroll = true;
     this.panelMon.BackColor = System.Drawing.Color.White;
     this.panelMon.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelMon.Location = new System.Drawing.Point(136, 40);
     this.panelMon.Name = "panelMon";
     this.panelMon.Size = new System.Drawing.Size(104, 512);
     this.panelMon.TabIndex = 14;
     //
     // panelFri
     //
     this.panelFri.AutoScroll = true;
     this.panelFri.BackColor = System.Drawing.Color.White;
     this.panelFri.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelFri.Location = new System.Drawing.Point(552, 40);
     this.panelFri.Name = "panelFri";
     this.panelFri.Size = new System.Drawing.Size(104, 512);
     this.panelFri.TabIndex = 18;
     //
     // panelThu
     //
     this.panelThu.AutoScroll = true;
     this.panelThu.BackColor = System.Drawing.Color.White;
     this.panelThu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelThu.Location = new System.Drawing.Point(448, 40);
     this.panelThu.Name = "panelThu";
     this.panelThu.Size = new System.Drawing.Size(104, 512);
     this.panelThu.TabIndex = 17;
     //
     // panelWed
     //
     this.panelWed.AutoScroll = true;
     this.panelWed.BackColor = System.Drawing.Color.White;
     this.panelWed.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelWed.Location = new System.Drawing.Point(344, 40);
     this.panelWed.Name = "panelWed";
     this.panelWed.Size = new System.Drawing.Size(104, 512);
     this.panelWed.TabIndex = 16;
     //
     // panelTue
     //
     this.panelTue.AutoScroll = true;
     this.panelTue.BackColor = System.Drawing.Color.White;
     this.panelTue.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelTue.Location = new System.Drawing.Point(240, 40);
     this.panelTue.Name = "panelTue";
     this.panelTue.Size = new System.Drawing.Size(104, 512);
     this.panelTue.TabIndex = 15;
     //
     // lblMON
     //
     this.lblMON.BackColor = System.Drawing.Color.PowderBlue;
     this.lblMON.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblMON.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMON.Location = new System.Drawing.Point(136, 24);
     this.lblMON.Name = "lblMON";
     this.lblMON.Size = new System.Drawing.Size(104, 16);
     this.lblMON.TabIndex = 12;
     this.lblMON.Text = "MON";
     //
     // btnPrintClassSchedule
     //
     this.btnPrintClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.btnPrintClassSchedule.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPrintClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnPrintClassSchedule.Appearance.Options.UseBackColor = true;
     this.btnPrintClassSchedule.Appearance.Options.UseFont = true;
     this.btnPrintClassSchedule.Appearance.Options.UseForeColor = true;
     this.btnPrintClassSchedule.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPrintClassSchedule.Location = new System.Drawing.Point(16, 208);
     this.btnPrintClassSchedule.Name = "btnPrintClassSchedule";
     this.btnPrintClassSchedule.Size = new System.Drawing.Size(104, 20);
     this.btnPrintClassSchedule.TabIndex = 11;
     this.btnPrintClassSchedule.Text = "Print";
     this.btnPrintClassSchedule.Click += new System.EventHandler(this.btnPrintClassSchedule_Click);
     //
     // btnUpdateClassSchedule
     //
     this.btnUpdateClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.btnUpdateClassSchedule.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnUpdateClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnUpdateClassSchedule.Appearance.Options.UseBackColor = true;
     this.btnUpdateClassSchedule.Appearance.Options.UseFont = true;
     this.btnUpdateClassSchedule.Appearance.Options.UseForeColor = true;
     this.btnUpdateClassSchedule.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnUpdateClassSchedule.Location = new System.Drawing.Point(16, 232);
     this.btnUpdateClassSchedule.Name = "btnUpdateClassSchedule";
     this.btnUpdateClassSchedule.Size = new System.Drawing.Size(104, 30);
     this.btnUpdateClassSchedule.TabIndex = 11;
     this.btnUpdateClassSchedule.Text = "Update Outlets";
     this.btnUpdateClassSchedule.Click += new System.EventHandler(this.btnUpdateClassSchedule_Click);
     //
     // btnNewClassSchedule
     //
     this.btnNewClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.btnNewClassSchedule.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnNewClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnNewClassSchedule.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.btnNewClassSchedule.Appearance.Options.UseBackColor = true;
     this.btnNewClassSchedule.Appearance.Options.UseFont = true;
     this.btnNewClassSchedule.Appearance.Options.UseForeColor = true;
     this.btnNewClassSchedule.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnNewClassSchedule.Location = new System.Drawing.Point(16, 184);
     this.btnNewClassSchedule.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnNewClassSchedule.Name = "btnNewClassSchedule";
     this.btnNewClassSchedule.Size = new System.Drawing.Size(104, 20);
     this.btnNewClassSchedule.TabIndex = 8;
     this.btnNewClassSchedule.Text = "New";
     this.btnNewClassSchedule.Click += new System.EventHandler(this.btnNewClassSchedule_Click);
     //
     // lblSAT
     //
     this.lblSAT.BackColor = System.Drawing.Color.PowderBlue;
     this.lblSAT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblSAT.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSAT.Location = new System.Drawing.Point(656, 24);
     this.lblSAT.Name = "lblSAT";
     this.lblSAT.Size = new System.Drawing.Size(104, 16);
     this.lblSAT.TabIndex = 29;
     this.lblSAT.Text = "SAT";
     //
     // groupMemCard
     //
     this.groupMemCard.Location = new System.Drawing.Point(16, 32);
     this.groupMemCard.Name = "groupMemCard";
     this.groupMemCard.Size = new System.Drawing.Size(1000, 592);
     this.groupMemCard.TabIndex = 127;
     //
     // grpRoadShow
     //
     this.grpRoadShow.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.grpRoadShow.Location = new System.Drawing.Point(16, 32);
     this.grpRoadShow.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpRoadShow.Name = "grpRoadShow";
     this.grpRoadShow.Size = new System.Drawing.Size(984, 592);
     this.grpRoadShow.TabIndex = 129;
     //
     // grpNextSemSchedule
     //
     this.grpNextSemSchedule.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.grpNextSemSchedule.Location = new System.Drawing.Point(16, 32);
     this.grpNextSemSchedule.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpNextSemSchedule.Name = "grpNextSemSchedule";
     this.grpNextSemSchedule.Size = new System.Drawing.Size(984, 592);
     this.grpNextSemSchedule.TabIndex = 129;
     //
     // tabManagerFour
     //
     this.tabManagerFour.Controls.Add(this.lblFour_2);
     this.tabManagerFour.Controls.Add(this.lblFour_1);
     this.tabManagerFour.Controls.Add(this.lblFour_3);
     this.tabManagerFour.Controls.Add(this.lblFour_4);
     this.tabManagerFour.Controls.Add(this.lblFour_5);
     this.tabManagerFour.Controls.Add(this.panel2);
     this.tabManagerFour.Name = "tabManagerFour";
     this.tabManagerFour.PageVisible = false;
     this.tabManagerFour.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerFour.Text = "Human Resource";
     //
     // lblFour_2
     //
     this.lblFour_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_2.Appearance.Options.UseFont = true;
     this.lblFour_2.Appearance.Options.UseForeColor = true;
     this.lblFour_2.Location = new System.Drawing.Point(152, 0);
     this.lblFour_2.Name = "lblFour_2";
     this.lblFour_2.Size = new System.Drawing.Size(138, 23);
     this.lblFour_2.TabIndex = 144;
     this.lblFour_2.Text = "TimeSheet";
     this.lblFour_2.Click += new System.EventHandler(this.lblFour_2_Click);
     //
     // lblFour_1
     //
     this.lblFour_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_1.Appearance.Options.UseFont = true;
     this.lblFour_1.Appearance.Options.UseForeColor = true;
     this.lblFour_1.Location = new System.Drawing.Point(8, 0);
     this.lblFour_1.Name = "lblFour_1";
     this.lblFour_1.Size = new System.Drawing.Size(138, 23);
     this.lblFour_1.TabIndex = 143;
     this.lblFour_1.Text = "Roster";
     this.lblFour_1.Click += new System.EventHandler(this.lblFour_1_Click);
     //
     // lblFour_3
     //
     this.lblFour_3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_3.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_3.Appearance.Options.UseFont = true;
     this.lblFour_3.Appearance.Options.UseForeColor = true;
     this.lblFour_3.Location = new System.Drawing.Point(296, 0);
     this.lblFour_3.Name = "lblFour_3";
     this.lblFour_3.Size = new System.Drawing.Size(138, 23);
     this.lblFour_3.TabIndex = 145;
     this.lblFour_3.Text = "OverTime";
     this.lblFour_3.Click += new System.EventHandler(this.lblFour_3_Click);
     //
     // lblFour_4
     //
     this.lblFour_4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_4.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_4.Appearance.Options.UseFont = true;
     this.lblFour_4.Appearance.Options.UseForeColor = true;
     this.lblFour_4.Location = new System.Drawing.Point(440, 0);
     this.lblFour_4.Name = "lblFour_4";
     this.lblFour_4.Size = new System.Drawing.Size(138, 23);
     this.lblFour_4.TabIndex = 146;
     this.lblFour_4.Text = "Leave";
     this.lblFour_4.Click += new System.EventHandler(this.lblFour_4_Click);
     //
     // lblFour_5
     //
     this.lblFour_5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_5.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_5.Appearance.Options.UseFont = true;
     this.lblFour_5.Appearance.Options.UseForeColor = true;
     this.lblFour_5.Location = new System.Drawing.Point(584, 0);
     this.lblFour_5.Name = "lblFour_5";
     this.lblFour_5.Size = new System.Drawing.Size(138, 23);
     this.lblFour_5.TabIndex = 147;
     this.lblFour_5.Text = "Appointment";
     this.lblFour_5.Click += new System.EventHandler(this.lblFour_5_Click);
     //
     // panel2
     //
     this.panel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel2.BackgroundImage")));
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel2.Location = new System.Drawing.Point(3, 32);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(1000, 592);
     this.panel2.TabIndex = 45;
     //
     // tabManagerFive
     //
     this.tabManagerFive.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tabManagerFive.BackgroundImage")));
     this.tabManagerFive.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.tabManagerFive.Controls.Add(this.label6);
     this.tabManagerFive.Controls.Add(this.ReportPanel);
     this.tabManagerFive.Controls.Add(this.lk_ReportView);
     this.tabManagerFive.Controls.Add(this.lblFive_9);
     this.tabManagerFive.Controls.Add(this.lblFive_10);
     this.tabManagerFive.Controls.Add(this.lblFive_4);
     this.tabManagerFive.Controls.Add(this.lblFive_2);
     this.tabManagerFive.Controls.Add(this.lblFive_8);
     this.tabManagerFive.Controls.Add(this.lblFive_7);
     this.tabManagerFive.Controls.Add(this.lblFive_3);
     this.tabManagerFive.Controls.Add(this.lblFive_6);
     this.tabManagerFive.Controls.Add(this.lblFive_1);
     this.tabManagerFive.Controls.Add(this.lblFive_5);
     this.tabManagerFive.Name = "tabManagerFive";
     this.tabManagerFive.PageVisible = false;
     this.tabManagerFive.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerFive.Text = "Report";
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Monotype Corsiva", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.SystemColors.Desktop;
     this.label6.Location = new System.Drawing.Point(16, 32);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(61, 16);
     this.label6.TabIndex = 57;
     this.label6.Text = "Option >>";
     //
     // ReportPanel
     //
     this.ReportPanel.Location = new System.Drawing.Point(8, 56);
     this.ReportPanel.Name = "ReportPanel";
     this.ReportPanel.Size = new System.Drawing.Size(984, 560);
     this.ReportPanel.TabIndex = 28;
     //
     // lk_ReportView
     //
     this.lk_ReportView.Location = new System.Drawing.Point(88, 32);
     this.lk_ReportView.Name = "lk_ReportView";
     this.lk_ReportView.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lk_ReportView.Properties.Appearance.Options.UseFont = true;
     this.lk_ReportView.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.lk_ReportView.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_ReportView.Properties.NullText = "";
     this.lk_ReportView.Size = new System.Drawing.Size(272, 22);
     this.lk_ReportView.TabIndex = 53;
     this.lk_ReportView.EditValueChanged += new System.EventHandler(this.lk_ReportView_EditValueChanged);
     this.lk_ReportView.DoubleClick += new System.EventHandler(this.lk_ReportView_EditValueChanged);
     //
     // lblFive_9
     //
     this.lblFive_9.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_9.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_9.Appearance.Options.UseFont = true;
     this.lblFive_9.Appearance.Options.UseForeColor = true;
     this.lblFive_9.Location = new System.Drawing.Point(712, 0);
     this.lblFive_9.Name = "lblFive_9";
     this.lblFive_9.Size = new System.Drawing.Size(80, 23);
     this.lblFive_9.TabIndex = 152;
     this.lblFive_9.Text = "Leave";
     this.lblFive_9.Click += new System.EventHandler(this.lblFive_9_Click);
     //
     // lblFive_10
     //
     this.lblFive_10.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_10.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_10.Appearance.Options.UseFont = true;
     this.lblFive_10.Appearance.Options.UseForeColor = true;
     this.lblFive_10.Location = new System.Drawing.Point(800, 0);
     this.lblFive_10.Name = "lblFive_10";
     this.lblFive_10.Size = new System.Drawing.Size(80, 23);
     this.lblFive_10.TabIndex = 153;
     this.lblFive_10.Text = "Member";
     this.lblFive_10.Click += new System.EventHandler(this.lblFive_10_Click);
     //
     // lblFive_4
     //
     this.lblFive_4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_4.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_4.Appearance.Options.UseFont = true;
     this.lblFive_4.Appearance.Options.UseForeColor = true;
     this.lblFive_4.Location = new System.Drawing.Point(272, 0);
     this.lblFive_4.Name = "lblFive_4";
     this.lblFive_4.Size = new System.Drawing.Size(80, 23);
     this.lblFive_4.TabIndex = 147;
     this.lblFive_4.Text = "Promotion";
     this.lblFive_4.Click += new System.EventHandler(this.lblFive_4_Click);
     //
     // lblFive_2
     //
     this.lblFive_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_2.Appearance.Options.UseFont = true;
     this.lblFive_2.Appearance.Options.UseForeColor = true;
     this.lblFive_2.Location = new System.Drawing.Point(96, 0);
     this.lblFive_2.Name = "lblFive_2";
     this.lblFive_2.Size = new System.Drawing.Size(80, 23);
     this.lblFive_2.TabIndex = 145;
     this.lblFive_2.Text = "Attendance";
     this.lblFive_2.Click += new System.EventHandler(this.lblFive_2_Click);
     //
     // lblFive_8
     //
     this.lblFive_8.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_8.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_8.Appearance.Options.UseFont = true;
     this.lblFive_8.Appearance.Options.UseForeColor = true;
     this.lblFive_8.Location = new System.Drawing.Point(624, 0);
     this.lblFive_8.Name = "lblFive_8";
     this.lblFive_8.Size = new System.Drawing.Size(80, 23);
     this.lblFive_8.TabIndex = 151;
     this.lblFive_8.Text = "Stock";
     this.lblFive_8.Click += new System.EventHandler(this.lblFive_8_Click);
     //
     // lblFive_7
     //
     this.lblFive_7.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_7.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_7.Appearance.Options.UseFont = true;
     this.lblFive_7.Appearance.Options.UseForeColor = true;
     this.lblFive_7.Location = new System.Drawing.Point(536, 0);
     this.lblFive_7.Name = "lblFive_7";
     this.lblFive_7.Size = new System.Drawing.Size(80, 23);
     this.lblFive_7.TabIndex = 150;
     this.lblFive_7.Text = "Voice";
     this.lblFive_7.Click += new System.EventHandler(this.lblFive_7_Click);
     //
     // lblFive_3
     //
     this.lblFive_3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_3.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_3.Appearance.Options.UseFont = true;
     this.lblFive_3.Appearance.Options.UseForeColor = true;
     this.lblFive_3.Location = new System.Drawing.Point(184, 0);
     this.lblFive_3.Name = "lblFive_3";
     this.lblFive_3.Size = new System.Drawing.Size(80, 23);
     this.lblFive_3.TabIndex = 146;
     this.lblFive_3.Text = "Operation";
     this.lblFive_3.Click += new System.EventHandler(this.lblFive_3_Click);
     //
     // lblFive_6
     //
     this.lblFive_6.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_6.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_6.Appearance.Options.UseFont = true;
     this.lblFive_6.Appearance.Options.UseForeColor = true;
     this.lblFive_6.Location = new System.Drawing.Point(448, 0);
     this.lblFive_6.Name = "lblFive_6";
     this.lblFive_6.Size = new System.Drawing.Size(80, 23);
     this.lblFive_6.TabIndex = 149;
     this.lblFive_6.Text = "Staff";
     this.lblFive_6.Click += new System.EventHandler(this.lblFive_6_Click);
     //
     // lblFive_1
     //
     this.lblFive_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_1.Appearance.Options.UseFont = true;
     this.lblFive_1.Appearance.Options.UseForeColor = true;
     this.lblFive_1.Location = new System.Drawing.Point(8, 0);
     this.lblFive_1.Name = "lblFive_1";
     this.lblFive_1.Size = new System.Drawing.Size(80, 23);
     this.lblFive_1.TabIndex = 144;
     this.lblFive_1.Text = "Sales";
     this.lblFive_1.Click += new System.EventHandler(this.lblFive_1_Click);
     //
     // lblFive_5
     //
     this.lblFive_5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_5.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_5.Appearance.Options.UseFont = true;
     this.lblFive_5.Appearance.Options.UseForeColor = true;
     this.lblFive_5.Location = new System.Drawing.Point(360, 0);
     this.lblFive_5.Name = "lblFive_5";
     this.lblFive_5.Size = new System.Drawing.Size(80, 23);
     this.lblFive_5.TabIndex = 148;
     this.lblFive_5.Text = "Account";
     this.lblFive_5.Click += new System.EventHandler(this.lblFive_5_Click);
     //
     // tabManagerSix
     //
     this.tabManagerSix.Appearance.PageClient.BackColor = System.Drawing.Color.Gray;
     this.tabManagerSix.Appearance.PageClient.Options.UseBackColor = true;
     this.tabManagerSix.Controls.Add(this.lk_MasterData);
     this.tabManagerSix.Controls.Add(this.panel1);
     this.tabManagerSix.Controls.Add(this.label1);
     this.tabManagerSix.Name = "tabManagerSix";
     this.tabManagerSix.PageVisible = false;
     this.tabManagerSix.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerSix.Text = "Master Data";
     //
     // lk_MasterData
     //
     this.lk_MasterData.Location = new System.Drawing.Point(88, 7);
     this.lk_MasterData.Name = "lk_MasterData";
     this.lk_MasterData.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lk_MasterData.Properties.Appearance.Options.UseFont = true;
     this.lk_MasterData.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.lk_MasterData.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_MasterData.Size = new System.Drawing.Size(160, 22);
     this.lk_MasterData.TabIndex = 52;
     this.lk_MasterData.EditValueChanged += new System.EventHandler(this.lk_MasterData_EditValueChanged);
     //
     // panel1
     //
     this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel1.Location = new System.Drawing.Point(3, 32);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1000, 592);
     this.panel1.TabIndex = 45;
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Monotype Corsiva", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.Desktop;
     this.label1.Location = new System.Drawing.Point(19, 7);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(61, 16);
     this.label1.TabIndex = 40;
     this.label1.Text = "Option >>";
     //
     // groupCashVoucherMaster
     //
     this.groupCashVoucherMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupCashVoucherMaster.Controls.Add(this.groupCashVoucher);
     this.groupCashVoucherMaster.ImeMode = System.Windows.Forms.ImeMode.On;
     this.groupCashVoucherMaster.Location = new System.Drawing.Point(0, 32);
     this.groupCashVoucherMaster.Name = "groupCashVoucherMaster";
     this.groupCashVoucherMaster.Size = new System.Drawing.Size(1007, 608);
     this.groupCashVoucherMaster.TabIndex = 146;
     //
     // groupCashVoucher
     //
     this.groupCashVoucher.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupCashVoucher.Appearance.Options.UseBackColor = true;
     this.groupCashVoucher.Controls.Add(this.pbSelectCashVoucher);
     this.groupCashVoucher.Controls.Add(this.txtFilePathCashVoucher);
     this.groupCashVoucher.Controls.Add(this.label20);
     this.groupCashVoucher.Controls.Add(this.btnCashVoucherImport);
     this.groupCashVoucher.ImeMode = System.Windows.Forms.ImeMode.On;
     this.groupCashVoucher.Location = new System.Drawing.Point(4, 0);
     this.groupCashVoucher.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupCashVoucher.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupCashVoucher.Name = "groupCashVoucher";
     this.groupCashVoucher.Size = new System.Drawing.Size(996, 336);
     this.groupCashVoucher.TabIndex = 19;
     this.groupCashVoucher.Text = "Cash Voucher Import";
     //
     // pbSelectCashVoucher
     //
     this.pbSelectCashVoucher.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pbSelectCashVoucher.ErrorImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbSelectCashVoucher.Image = global::ACMS.Properties.Resources.open_file_icon;
     this.pbSelectCashVoucher.InitialImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbSelectCashVoucher.Location = new System.Drawing.Point(573, 122);
     this.pbSelectCashVoucher.Name = "pbSelectCashVoucher";
     this.pbSelectCashVoucher.Size = new System.Drawing.Size(20, 20);
     this.pbSelectCashVoucher.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbSelectCashVoucher.TabIndex = 36;
     this.pbSelectCashVoucher.TabStop = false;
     this.pbSelectCashVoucher.Click += new System.EventHandler(this.pbSelectCashVoucher_Click);
     //
     // txtFilePathCashVoucher
     //
     this.txtFilePathCashVoucher.EditValue = "";
     this.txtFilePathCashVoucher.Location = new System.Drawing.Point(266, 123);
     this.txtFilePathCashVoucher.Name = "txtFilePathCashVoucher";
     this.txtFilePathCashVoucher.Properties.MaxLength = 255;
     this.txtFilePathCashVoucher.Properties.ReadOnly = true;
     this.txtFilePathCashVoucher.Size = new System.Drawing.Size(301, 20);
     this.txtFilePathCashVoucher.TabIndex = 35;
     //
     // label20
     //
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.Location = new System.Drawing.Point(145, 127);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(126, 16);
     this.label20.TabIndex = 34;
     this.label20.Text = "Select file to upload";
     //
     // btnCashVoucherImport
     //
     this.btnCashVoucherImport.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnCashVoucherImport.Appearance.Options.UseFont = true;
     this.btnCashVoucherImport.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCashVoucherImport.Location = new System.Drawing.Point(521, 149);
     this.btnCashVoucherImport.Name = "btnCashVoucherImport";
     this.btnCashVoucherImport.Size = new System.Drawing.Size(72, 18);
     this.btnCashVoucherImport.TabIndex = 12;
     this.btnCashVoucherImport.Text = "Import";
     this.btnCashVoucherImport.Click += new System.EventHandler(this.btnCashVoucherImport_Click);
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.Controller = this.barAndDockingController1;
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiManagerLoginOut,
     this.bbiManagerTimeCard,
     this.barButtonItem1,
     this.barstaticCurrentLogin});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 5;
     //
     // bar1
     //
     this.bar1.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.bar1.Appearance.Options.UseBackColor = true;
     this.bar1.BarName = "Custom 1";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiManagerLoginOut, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem1, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barstaticCurrentLogin, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.Caption)});
     this.bar1.OptionsBar.AllowQuickCustomization = false;
     this.bar1.OptionsBar.DrawDragBorder = false;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Custom 1";
     //
     // bbiManagerLoginOut
     //
     this.bbiManagerLoginOut.Caption = "Close";
     this.bbiManagerLoginOut.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiManagerLoginOut.Glyph")));
     this.bbiManagerLoginOut.Id = 0;
     this.bbiManagerLoginOut.Name = "bbiManagerLoginOut";
     this.bbiManagerLoginOut.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiManagerLoginOut_ItemClick);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Time Card";
     this.barButtonItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph")));
     this.barButtonItem1.Id = 3;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbtnTimeCard_ItemClick);
     //
     // barstaticCurrentLogin
     //
     this.barstaticCurrentLogin.Caption = "Current Login: {0}, {1}";
     this.barstaticCurrentLogin.Id = 4;
     this.barstaticCurrentLogin.Name = "barstaticCurrentLogin";
     this.barstaticCurrentLogin.OwnFont = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.World);
     this.barstaticCurrentLogin.UseOwnFont = true;
     //
     // barAndDockingController1
     //
     this.barAndDockingController1.AppearancesBar.ItemsFont = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barAndDockingController1.PaintStyleName = "WindowsXP";
     //
     // bbiManagerTimeCard
     //
     this.bbiManagerTimeCard.Caption = "Time Card";
     this.bbiManagerTimeCard.Id = 2;
     this.bbiManagerTimeCard.Name = "bbiManagerTimeCard";
     this.bbiManagerTimeCard.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiManagerTimeCard_ItemClick);
     //
     // printDocument1
     //
     this.printDocument1.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDocument1_PrintPage);
     //
     // gridColumnPGE3
     //
     this.gridColumnPGE3.Caption = "Quantity";
     this.gridColumnPGE3.FieldName = "nQuantity";
     this.gridColumnPGE3.Name = "gridColumnPGE3";
     this.gridColumnPGE3.Visible = true;
     this.gridColumnPGE3.VisibleIndex = 2;
     //
     // gridColumnPGE2
     //
     this.gridColumnPGE2.Caption = "Package Code";
     this.gridColumnPGE2.FieldName = "strPackageCode";
     this.gridColumnPGE2.Name = "gridColumnPGE2";
     this.gridColumnPGE2.Visible = true;
     this.gridColumnPGE2.VisibleIndex = 1;
     //
     // gridColumnPGE1
     //
     this.gridColumnPGE1.Caption = "Package Group Code";
     this.gridColumnPGE1.FieldName = "strPackageGroupCode";
     this.gridColumnPGE1.Name = "gridColumnPGE1";
     this.gridColumnPGE1.Visible = true;
     this.gridColumnPGE1.VisibleIndex = 0;
     //
     // mdPGE_txtNQuantity
     //
     this.mdPGE_txtNQuantity.EditValue = "";
     this.mdPGE_txtNQuantity.Location = new System.Drawing.Point(32, 152);
     this.mdPGE_txtNQuantity.Name = "mdPGE_txtNQuantity";
     this.mdPGE_txtNQuantity.Properties.Mask.EditMask = "######0";
     this.mdPGE_txtNQuantity.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.mdPGE_txtNQuantity.Size = new System.Drawing.Size(144, 22);
     this.mdPGE_txtNQuantity.TabIndex = 122;
     //
     // mdPGE_txtStrPackageCode
     //
     this.mdPGE_txtStrPackageCode.EditValue = "imageComboBoxEdit2";
     this.mdPGE_txtStrPackageCode.Location = new System.Drawing.Point(32, 96);
     this.mdPGE_txtStrPackageCode.Name = "mdPGE_txtStrPackageCode";
     this.mdPGE_txtStrPackageCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdPGE_txtStrPackageCode.Size = new System.Drawing.Size(144, 22);
     this.mdPGE_txtStrPackageCode.TabIndex = 121;
     //
     // mdPGE_cdStrPackageGroupCode
     //
     this.mdPGE_cdStrPackageGroupCode.EditValue = "imageComboBoxEdit1";
     this.mdPGE_cdStrPackageGroupCode.Location = new System.Drawing.Point(32, 48);
     this.mdPGE_cdStrPackageGroupCode.Name = "mdPGE_cdStrPackageGroupCode";
     this.mdPGE_cdStrPackageGroupCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdPGE_cdStrPackageGroupCode.Size = new System.Drawing.Size(144, 22);
     this.mdPGE_cdStrPackageGroupCode.TabIndex = 120;
     //
     // mdPGE_lblNQuantity
     //
     this.mdPGE_lblNQuantity.BackColor = System.Drawing.Color.Transparent;
     this.mdPGE_lblNQuantity.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPGE_lblNQuantity.ForeColor = System.Drawing.Color.Black;
     this.mdPGE_lblNQuantity.Location = new System.Drawing.Point(32, 136);
     this.mdPGE_lblNQuantity.Name = "mdPGE_lblNQuantity";
     this.mdPGE_lblNQuantity.Size = new System.Drawing.Size(120, 16);
     this.mdPGE_lblNQuantity.TabIndex = 119;
     this.mdPGE_lblNQuantity.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPGE_lblStrPackageCode
     //
     this.mdPGE_lblStrPackageCode.BackColor = System.Drawing.Color.Transparent;
     this.mdPGE_lblStrPackageCode.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPGE_lblStrPackageCode.ForeColor = System.Drawing.Color.Black;
     this.mdPGE_lblStrPackageCode.Location = new System.Drawing.Point(32, 80);
     this.mdPGE_lblStrPackageCode.Name = "mdPGE_lblStrPackageCode";
     this.mdPGE_lblStrPackageCode.Size = new System.Drawing.Size(120, 16);
     this.mdPGE_lblStrPackageCode.TabIndex = 118;
     this.mdPGE_lblStrPackageCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPGE_lblStrPackageGroupCode
     //
     this.mdPGE_lblStrPackageGroupCode.BackColor = System.Drawing.Color.Transparent;
     this.mdPGE_lblStrPackageGroupCode.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPGE_lblStrPackageGroupCode.ForeColor = System.Drawing.Color.Black;
     this.mdPGE_lblStrPackageGroupCode.Location = new System.Drawing.Point(32, 32);
     this.mdPGE_lblStrPackageGroupCode.Name = "mdPGE_lblStrPackageGroupCode";
     this.mdPGE_lblStrPackageGroupCode.Size = new System.Drawing.Size(120, 16);
     this.mdPGE_lblStrPackageGroupCode.TabIndex = 117;
     this.mdPGE_lblStrPackageGroupCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Georgia", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(153)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label5.Location = new System.Drawing.Point(888, 8);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(120, 24);
     this.label5.TabIndex = 25;
     this.label5.Text = "HeadStart";
     //
     // frmManager
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(1012, 691);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.tabControlManager);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu = this.MainMenu1;
     this.Name = "frmManager";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "ACMS Manager";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmManager_Load);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlManager)).EndInit();
     this.tabControlManager.ResumeLayout(false);
     this.tabManagerOne.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupIPPMaster)).EndInit();
     this.groupIPPMaster.ResumeLayout(false);
     this.groupIPPMaster.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPP)).EndInit();
     this.groupIPP.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ComboBoxIPP.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpIPP2)).EndInit();
     this.grpIPP2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBank.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtTo.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCardScr.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupIPPDetails)).EndInit();
     this.GroupIPPDetails.ResumeLayout(false);
     this.GroupIPPDetails.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.strReferenceNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPBankCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNMonths.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPCCNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPDateRcv.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPDateSent.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPCreatedDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMerchantNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPInterest.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNettAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMemberId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMemberName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPPReceipt)).EndInit();
     this.groupIPPReceipt.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridReceipt)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPReceiptView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPReceiptStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupCashCardMaster)).EndInit();
     this.groupCashCardMaster.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupCashCard)).EndInit();
     this.groupCashCard.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pbSelect)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePath.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupGIROMaster)).EndInit();
     this.groupGIROMaster.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.tabGiroDetails.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.luedtBankBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBank.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtPackage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackageDesc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAccountNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGIROId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).EndInit();
     this.tabGiroTrnsHistory.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridTransaction)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupGiro)).EndInit();
     this.GroupGiro.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxGiroStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GiroGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GIROGridView)).EndInit();
     this.tabManagerTwo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GrpPayroll)).EndInit();
     this.GrpPayroll.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbJob.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpGridExcel)).EndInit();
     this.grpGridExcel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridExcel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewExcel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditMTH.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditYR.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbxPayroll.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPayroll)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPayroll)).EndInit();
     this.tabManagerThree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpClassSchedule)).EndInit();
     this.grpClassSchedule.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxHall.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbxScheduleType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMemCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpRoadShow)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpNextSemSchedule)).EndInit();
     this.tabManagerFour.ResumeLayout(false);
     this.tabManagerFive.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ReportPanel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_ReportView.Properties)).EndInit();
     this.tabManagerSix.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lk_MasterData.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupCashVoucherMaster)).EndInit();
     this.groupCashVoucherMaster.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupCashVoucher)).EndInit();
     this.groupCashVoucher.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pbSelectCashVoucher)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePathCashVoucher.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_txtNQuantity.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_txtStrPackageCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_cdStrPackageGroupCode.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition3 = new DevExpress.XtraGrid.StyleFormatCondition();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WishListForm));
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition4 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule3 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule4 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     this.colPacks = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.spinEditPack = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.boxSizedList = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.layoutControl4 = new DevExpress.XtraLayout.LayoutControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.lkRange = new DevExpress.XtraEditors.LookUpEdit();
     this.ShowStockOutCheckBox = new DevExpress.XtraEditors.CheckEdit();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.ItemSelectionPage = new DevExpress.XtraTab.XtraTabPage();
     this.orderGrid = new DevExpress.XtraGrid.GridControl();
     this.gridOrderView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.ColStockCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColItemNameOrderDetail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.colsQtyPerPack = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColUnit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colExpired = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDamaged = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSOH = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColBeginningBalance = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColLoss = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColAdjustment = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColQuantityReceived = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColDOS = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColQuantityNeedMax = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColMaxStockQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColConsumption = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColStockedOut = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ExpireDateEditor = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemButtonEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.spinEditQtyPerPack = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridRecieveView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.VolumeMetricsPage = new DevExpress.XtraTab.XtraTabPage();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.lkContainerTypes = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cboRequiredContainer = new System.Windows.Forms.ComboBox();
     this.lblAvailableVolume = new System.Windows.Forms.Label();
     this.lblVolumeNeeded = new System.Windows.Forms.Label();
     this.volumetricsCanvas = new System.Windows.Forms.Panel();
     this.grdVolumeGrid = new DevExpress.XtraGrid.GridControl();
     this.grdVolumeGridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.Height = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Width = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Depth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Quantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlItem32 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem36 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem37 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem40 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem39 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem33 = new DevExpress.XtraLayout.LayoutControlItem();
     this.NoOfVisitLabel = new DevExpress.XtraEditors.LabelControl();
     this.LastVisitlabel = new DevExpress.XtraEditors.LabelControl();
     this.progressBarControl = new DevExpress.XtraEditors.ProgressBarControl();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.lkType = new DevExpress.XtraEditors.LookUpEdit();
     this.lkOwnership = new DevExpress.XtraEditors.LookUpEdit();
     this.lkWoreda = new DevExpress.XtraEditors.LookUpEdit();
     this.txtRemark = new DevExpress.XtraEditors.MemoEdit();
     this.txtReceivedBy = new DevExpress.XtraEditors.TextEdit();
     this.txtTin = new DevExpress.XtraEditors.TextEdit();
     this.txtVatRegistration = new DevExpress.XtraEditors.TextEdit();
     this.txtRegistrationNo = new DevExpress.XtraEditors.TextEdit();
     this.txtLetterNumber = new DevExpress.XtraEditors.TextEdit();
     this.txtRefNo = new DevExpress.XtraEditors.TextEdit();
     this.btnSaveOrder = new DevExpress.XtraEditors.SimpleButton();
     this.btnSaveAndForward = new DevExpress.XtraEditors.SimpleButton();
     this.lkModes = new DevExpress.XtraEditors.LookUpEdit();
     this.txtContactPerson = new DevExpress.XtraEditors.TextEdit();
     this.lkZone = new DevExpress.XtraEditors.LookUpEdit();
     this.lkRegion = new DevExpress.XtraEditors.LookUpEdit();
     this.lblLoadRU = new DevExpress.XtraEditors.LabelControl();
     this.lkCategoires = new DevExpress.XtraEditors.LookUpEdit();
     this.txtItemName = new DevExpress.XtraEditors.TextEdit();
     this.gridItemsChoice = new DevExpress.XtraGrid.GridControl();
     this.gridItemChoiceView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colItemName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn66 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn67 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lkPaymentType = new DevExpress.XtraEditors.LookUpEdit();
     this.lkForFacility = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lkPeriod = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.lkColStartDate_EndDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lkRequisitionType = new DevExpress.XtraEditors.LookUpEdit();
     this.btnCancelOne = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem25 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutReload = new DevExpress.XtraLayout.LayoutControlItem();
     this.progressBarlayoutControlItem = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem23 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem22 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem21 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup14 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem29 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem30 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem19 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem14 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.simpleSeparator2 = new DevExpress.XtraLayout.SimpleSeparator();
     this.LastVisitlayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.NoRequisitionlayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
     this.ShowStockOutCheckBoxLayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup5 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.RequisitionTypelayoutControlItem = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.RangeLayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem52 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem31 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem7 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem38 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.simpleSeparator3 = new DevExpress.XtraLayout.SimpleSeparator();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem20 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem8 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem18 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem34 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem35 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem9 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lkPeriodlayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutForFacility = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.emptySpaceItem15 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup8 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup9 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup10 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem10 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem22 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem23 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printOrder = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.dxValidation1stTab = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem26 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem27 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem28 = new DevExpress.XtraLayout.LayoutControlItem();
     this.simpleLabelItem13 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem1 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem2 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditPack)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl4)).BeginInit();
     this.layoutControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkRange.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShowStockOutCheckBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.ItemSelectionPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.orderGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrderView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditQtyPerPack)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridRecieveView1)).BeginInit();
     this.VolumeMetricsPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkContainerTypes.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdVolumeGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdVolumeGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem33)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkOwnership.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkWoreda.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceivedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTin.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVatRegistration.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRegistrationNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLetterNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkModes.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkZone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRegion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkCategoires.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemsChoice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemChoiceView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPaymentType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkForFacility.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPeriod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRequisitionType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutReload)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarlayoutControlItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastVisitlayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoRequisitionlayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShowStockOutCheckBoxLayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RequisitionTypelayoutControlItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RangeLayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem52)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem34)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPeriodlayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutForFacility)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printOrder.ImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidation1stTab)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem2)).BeginInit();
     this.SuspendLayout();
     //
     // colPacks
     //
     this.colPacks.Caption = "Quantity";
     this.colPacks.ColumnEdit = this.repositoryItemTextEdit1;
     this.colPacks.FieldName = "Pack";
     this.colPacks.Name = "colPacks";
     this.colPacks.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colPacks.OptionsColumn.FixedWidth = true;
     this.colPacks.ToolTip = "Requested Quantity";
     this.colPacks.Visible = true;
     this.colPacks.VisibleIndex = 14;
     this.colPacks.Width = 40;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Mask.EditMask = "\\d{0,6}(\\.\\d{0,4})";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // spinEditPack
     //
     this.spinEditPack.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.spinEditPack.AutoHeight = false;
     this.spinEditPack.DisplayFormat.FormatString = "#,##0.##";
     this.spinEditPack.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.spinEditPack.EditFormat.FormatString = "#,##0.##";
     this.spinEditPack.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.spinEditPack.IsFloatValue = false;
     this.spinEditPack.MaxValue = new decimal(new int[] {
     100000000,
     0,
     0,
     0});
     this.spinEditPack.Name = "spinEditPack";
     //
     // boxSizedList
     //
     this.boxSizedList.AutoHeight = false;
     this.boxSizedList.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.boxSizedList.DisplayMember = "Name";
     this.boxSizedList.Name = "boxSizedList";
     this.boxSizedList.ValueMember = "ID";
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // repositoryItemDateEdit3
     //
     this.repositoryItemDateEdit3.AutoHeight = false;
     this.repositoryItemDateEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit3.EditFormat.FormatString = "mm-DD-YYYY";
     this.repositoryItemDateEdit3.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit3.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.DisplayText;
     this.repositoryItemDateEdit3.Name = "repositoryItemDateEdit3";
     this.repositoryItemDateEdit3.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemButtonEdit4
     //
     this.repositoryItemButtonEdit4.AutoHeight = false;
     this.repositoryItemButtonEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemButtonEdit4.Name = "repositoryItemButtonEdit4";
     this.repositoryItemButtonEdit4.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // layoutControl4
     //
     this.layoutControl4.AllowCustomizationMenu = false;
     this.layoutControl4.Controls.Add(this.labelControl4);
     this.layoutControl4.Controls.Add(this.labelControl3);
     this.layoutControl4.Controls.Add(this.labelControl2);
     this.layoutControl4.Controls.Add(this.labelControl1);
     this.layoutControl4.Controls.Add(this.lkRange);
     this.layoutControl4.Controls.Add(this.ShowStockOutCheckBox);
     this.layoutControl4.Controls.Add(this.xtraTabControl1);
     this.layoutControl4.Controls.Add(this.NoOfVisitLabel);
     this.layoutControl4.Controls.Add(this.LastVisitlabel);
     this.layoutControl4.Controls.Add(this.progressBarControl);
     this.layoutControl4.Controls.Add(this.simpleButton1);
     this.layoutControl4.Controls.Add(this.lkType);
     this.layoutControl4.Controls.Add(this.lkOwnership);
     this.layoutControl4.Controls.Add(this.lkWoreda);
     this.layoutControl4.Controls.Add(this.txtRemark);
     this.layoutControl4.Controls.Add(this.txtReceivedBy);
     this.layoutControl4.Controls.Add(this.txtTin);
     this.layoutControl4.Controls.Add(this.txtVatRegistration);
     this.layoutControl4.Controls.Add(this.txtRegistrationNo);
     this.layoutControl4.Controls.Add(this.txtLetterNumber);
     this.layoutControl4.Controls.Add(this.txtRefNo);
     this.layoutControl4.Controls.Add(this.btnSaveOrder);
     this.layoutControl4.Controls.Add(this.btnSaveAndForward);
     this.layoutControl4.Controls.Add(this.lkModes);
     this.layoutControl4.Controls.Add(this.txtContactPerson);
     this.layoutControl4.Controls.Add(this.lkZone);
     this.layoutControl4.Controls.Add(this.lkRegion);
     this.layoutControl4.Controls.Add(this.lblLoadRU);
     this.layoutControl4.Controls.Add(this.lkCategoires);
     this.layoutControl4.Controls.Add(this.txtItemName);
     this.layoutControl4.Controls.Add(this.gridItemsChoice);
     this.layoutControl4.Controls.Add(this.lkPaymentType);
     this.layoutControl4.Controls.Add(this.lkForFacility);
     this.layoutControl4.Controls.Add(this.lkPeriod);
     this.layoutControl4.Controls.Add(this.lkRequisitionType);
     this.layoutControl4.Controls.Add(this.btnCancelOne);
     this.layoutControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl4.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem24,
     this.layoutControlItem25,
     this.layoutReload,
     this.progressBarlayoutControlItem,
     this.layoutControlItem23,
     this.layoutControlItem22,
     this.layoutControlItem21,
     this.layoutControlItem13});
     this.layoutControl4.Location = new System.Drawing.Point(0, 0);
     this.layoutControl4.Name = "layoutControl4";
     this.layoutControl4.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(59, 358, 345, 729);
     this.layoutControl4.OptionsView.ShareLookAndFeelWithChildren = false;
     this.layoutControl4.Root = this.layoutControlGroup14;
     this.layoutControl4.Size = new System.Drawing.Size(1350, 393);
     this.layoutControl4.TabIndex = 31;
     this.layoutControl4.Text = "layoutControl4";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(75, 16);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(189, 13);
     this.labelControl4.TabIndex = 53;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(899, 4);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(93, 13);
     this.labelControl3.TabIndex = 52;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(707, 4);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(107, 13);
     this.labelControl2.TabIndex = 51;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(523, 4);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(113, 13);
     this.labelControl1.TabIndex = 50;
     //
     // lkRange
     //
     this.lkRange.Enabled = false;
     this.lkRange.Location = new System.Drawing.Point(308, 38);
     this.lkRange.Name = "lkRange";
     this.lkRange.Properties.AllowMouseWheel = false;
     this.lkRange.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRange.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Range", "History Detail")});
     this.lkRange.Properties.DisplayMember = "Range";
     this.lkRange.Properties.NullText = "Range";
     this.lkRange.Properties.PopupWidth = 100;
     this.lkRange.Properties.ShowFooter = false;
     this.lkRange.Properties.ValueMember = "Value";
     this.lkRange.Size = new System.Drawing.Size(102, 20);
     this.lkRange.TabIndex = 46;
     this.lkRange.EditValueChanged += new System.EventHandler(this.lkRange_EditValueChanged);
     //
     // ShowStockOutCheckBox
     //
     this.ShowStockOutCheckBox.Location = new System.Drawing.Point(446, 107);
     this.ShowStockOutCheckBox.Name = "ShowStockOutCheckBox";
     this.ShowStockOutCheckBox.Properties.Caption = "Show Stock Out";
     this.ShowStockOutCheckBox.Size = new System.Drawing.Size(277, 19);
     this.ShowStockOutCheckBox.TabIndex = 49;
     this.ShowStockOutCheckBox.CheckedChanged += new System.EventHandler(this.ShowStockOutCheckBox_CheckedChanged);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(432, 143);
     this.xtraTabControl1.Margin = new System.Windows.Forms.Padding(0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.ItemSelectionPage;
     this.xtraTabControl1.Size = new System.Drawing.Size(916, 222);
     this.xtraTabControl1.TabIndex = 48;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.ItemSelectionPage,
     this.VolumeMetricsPage});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     this.xtraTabControl1.Click += new System.EventHandler(this.xtraTabControl1_Click);
     //
     // ItemSelectionPage
     //
     this.ItemSelectionPage.Controls.Add(this.orderGrid);
     this.ItemSelectionPage.Name = "ItemSelectionPage";
     this.ItemSelectionPage.Size = new System.Drawing.Size(910, 194);
     this.ItemSelectionPage.Text = "Selection";
     //
     // orderGrid
     //
     this.orderGrid.Dock = System.Windows.Forms.DockStyle.Fill;
     this.orderGrid.ImeMode = System.Windows.Forms.ImeMode.On;
     this.orderGrid.Location = new System.Drawing.Point(0, 0);
     this.orderGrid.MainView = this.gridOrderView;
     this.orderGrid.Margin = new System.Windows.Forms.Padding(0);
     this.orderGrid.Name = "orderGrid";
     this.orderGrid.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.ExpireDateEditor,
     this.repositoryItemButtonEdit2,
     this.spinEditPack,
     this.spinEditQtyPerPack,
     this.repositoryItemTextEdit1,
     this.repositoryItemMemoEdit1});
     this.orderGrid.Size = new System.Drawing.Size(910, 194);
     this.orderGrid.TabIndex = 11;
     this.orderGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridOrderView,
     this.gridRecieveView1});
     this.orderGrid.Click += new System.EventHandler(this.orderGrid_Click);
     //
     // gridOrderView
     //
     this.gridOrderView.Appearance.FocusedCell.BackColor = System.Drawing.Color.SkyBlue;
     this.gridOrderView.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gridOrderView.Appearance.FocusedRow.BackColor = System.Drawing.Color.CornflowerBlue;
     this.gridOrderView.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridOrderView.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.gridOrderView.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridOrderView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColStockCode,
     this.ColItemNameOrderDetail,
     this.colsQtyPerPack,
     this.ColUnit,
     this.colExpired,
     this.colDamaged,
     this.colSOH,
     this.ColBeginningBalance,
     this.ColLoss,
     this.ColAdjustment,
     this.ColQuantityReceived,
     this.ColDOS,
     this.ColQuantityNeedMax,
     this.ColMaxStockQuantity,
     this.ColConsumption,
     this.colPacks,
     this.ColStockedOut});
     styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition1.Appearance.Options.UseBackColor = true;
     styleFormatCondition1.Column = this.colPacks;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "[SKUBU] is null";
     styleFormatCondition2.Appearance.ForeColor = System.Drawing.Color.Silver;
     styleFormatCondition2.Appearance.Options.UseForeColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition2.Expression = "[StockedOut] == 1";
     styleFormatCondition3.Appearance.ForeColor = System.Drawing.Color.Silver;
     styleFormatCondition3.Appearance.Options.UseForeColor = true;
     styleFormatCondition3.ApplyToRow = true;
     styleFormatCondition3.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition3.Expression = "[StockedOut] == 1";
     this.gridOrderView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1,
     styleFormatCondition2,
     styleFormatCondition3});
     this.gridOrderView.GridControl = this.orderGrid;
     this.gridOrderView.IndicatorWidth = 40;
     this.gridOrderView.Name = "gridOrderView";
     this.gridOrderView.OptionsCustomization.AllowColumnMoving = false;
     this.gridOrderView.OptionsCustomization.AllowColumnResizing = false;
     this.gridOrderView.OptionsCustomization.AllowFilter = false;
     this.gridOrderView.OptionsCustomization.AllowQuickHideColumns = false;
     this.gridOrderView.OptionsCustomization.AllowSort = false;
     this.gridOrderView.OptionsMenu.EnableColumnMenu = false;
     this.gridOrderView.OptionsMenu.EnableFooterMenu = false;
     this.gridOrderView.OptionsMenu.EnableGroupPanelMenu = false;
     this.gridOrderView.OptionsView.AllowCellMerge = true;
     this.gridOrderView.OptionsView.RowAutoHeight = true;
     this.gridOrderView.OptionsView.ShowGroupPanel = false;
     this.gridOrderView.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridOrderView_CustomDrawRowIndicator);
     this.gridOrderView.CustomDrawCell += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.gridOrderView_CustomDrawCell);
     this.gridOrderView.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.gridOrderView_ShowingEditor);
     this.gridOrderView.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.OnOrderCellValueChanged);
     //
     // ColStockCode
     //
     this.ColStockCode.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ColStockCode.AppearanceCell.Options.UseBackColor = true;
     this.ColStockCode.Caption = "Stock Code";
     this.ColStockCode.FieldName = "StockCode";
     this.ColStockCode.Name = "ColStockCode";
     this.ColStockCode.OptionsColumn.AllowEdit = false;
     this.ColStockCode.OptionsColumn.AllowFocus = false;
     this.ColStockCode.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.OptionsColumn.AllowIncrementalSearch = false;
     this.ColStockCode.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.OptionsColumn.AllowMove = false;
     this.ColStockCode.OptionsColumn.AllowShowHide = false;
     this.ColStockCode.OptionsColumn.AllowSize = false;
     this.ColStockCode.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.OptionsColumn.FixedWidth = true;
     this.ColStockCode.OptionsColumn.ShowInCustomizationForm = false;
     this.ColStockCode.OptionsColumn.ShowInExpressionEditor = false;
     this.ColStockCode.OptionsFilter.AllowAutoFilter = false;
     this.ColStockCode.OptionsFilter.AllowFilter = false;
     this.ColStockCode.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.Visible = true;
     this.ColStockCode.VisibleIndex = 0;
     this.ColStockCode.Width = 34;
     //
     // ColItemNameOrderDetail
     //
     this.ColItemNameOrderDetail.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ColItemNameOrderDetail.AppearanceCell.Options.UseBackColor = true;
     this.ColItemNameOrderDetail.AppearanceCell.Options.UseTextOptions = true;
     this.ColItemNameOrderDetail.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.ColItemNameOrderDetail.AppearanceHeader.Options.UseTextOptions = true;
     this.ColItemNameOrderDetail.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.ColItemNameOrderDetail.Caption = "Item";
     this.ColItemNameOrderDetail.ColumnEdit = this.repositoryItemMemoEdit1;
     this.ColItemNameOrderDetail.FieldName = "FullItemName";
     this.ColItemNameOrderDetail.Name = "ColItemNameOrderDetail";
     this.ColItemNameOrderDetail.OptionsColumn.AllowEdit = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowFocus = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.OptionsColumn.AllowIncrementalSearch = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.OptionsColumn.AllowMove = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowShowHide = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowSize = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.OptionsColumn.FixedWidth = true;
     this.ColItemNameOrderDetail.OptionsColumn.ShowInCustomizationForm = false;
     this.ColItemNameOrderDetail.OptionsColumn.ShowInExpressionEditor = false;
     this.ColItemNameOrderDetail.OptionsFilter.AllowAutoFilter = false;
     this.ColItemNameOrderDetail.OptionsFilter.AllowFilter = false;
     this.ColItemNameOrderDetail.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.ColItemNameOrderDetail.ToolTip = "FullItemName";
     this.ColItemNameOrderDetail.Visible = true;
     this.ColItemNameOrderDetail.VisibleIndex = 1;
     this.ColItemNameOrderDetail.Width = 171;
     //
     // repositoryItemMemoEdit1
     //
     this.repositoryItemMemoEdit1.LinesCount = 1;
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     //
     // colsQtyPerPack
     //
     this.colsQtyPerPack.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.colsQtyPerPack.AppearanceCell.Options.UseBackColor = true;
     this.colsQtyPerPack.Caption = "Quantity Per Pack";
     this.colsQtyPerPack.ColumnEdit = this.spinEditPack;
     this.colsQtyPerPack.FieldName = "QtyPerPack";
     this.colsQtyPerPack.Name = "colsQtyPerPack";
     this.colsQtyPerPack.OptionsColumn.AllowEdit = false;
     this.colsQtyPerPack.OptionsColumn.AllowFocus = false;
     this.colsQtyPerPack.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.OptionsColumn.AllowIncrementalSearch = false;
     this.colsQtyPerPack.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.OptionsColumn.AllowMove = false;
     this.colsQtyPerPack.OptionsColumn.AllowShowHide = false;
     this.colsQtyPerPack.OptionsColumn.AllowSize = false;
     this.colsQtyPerPack.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.OptionsColumn.FixedWidth = true;
     this.colsQtyPerPack.OptionsColumn.ShowInCustomizationForm = false;
     this.colsQtyPerPack.OptionsColumn.ShowInExpressionEditor = false;
     this.colsQtyPerPack.OptionsFilter.AllowAutoFilter = false;
     this.colsQtyPerPack.OptionsFilter.AllowFilter = false;
     this.colsQtyPerPack.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.Width = 100;
     //
     // ColUnit
     //
     this.ColUnit.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ColUnit.AppearanceCell.Options.UseBackColor = true;
     this.ColUnit.Caption = "Unit";
     this.ColUnit.FieldName = "Unit";
     this.ColUnit.Name = "ColUnit";
     this.ColUnit.OptionsColumn.AllowEdit = false;
     this.ColUnit.OptionsColumn.AllowFocus = false;
     this.ColUnit.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.OptionsColumn.AllowIncrementalSearch = false;
     this.ColUnit.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.OptionsColumn.AllowMove = false;
     this.ColUnit.OptionsColumn.AllowShowHide = false;
     this.ColUnit.OptionsColumn.AllowSize = false;
     this.ColUnit.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.OptionsColumn.FixedWidth = true;
     this.ColUnit.OptionsColumn.ShowInCustomizationForm = false;
     this.ColUnit.OptionsColumn.ShowInExpressionEditor = false;
     this.ColUnit.OptionsFilter.AllowAutoFilter = false;
     this.ColUnit.OptionsFilter.AllowFilter = false;
     this.ColUnit.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.Visible = true;
     this.ColUnit.VisibleIndex = 2;
     this.ColUnit.Width = 53;
     //
     // colExpired
     //
     this.colExpired.Caption = "Expired";
     this.colExpired.DisplayFormat.FormatString = "#,###.##";
     this.colExpired.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colExpired.FieldName = "ExpiredStock";
     this.colExpired.Name = "colExpired";
     this.colExpired.OptionsColumn.AllowEdit = false;
     this.colExpired.OptionsColumn.AllowFocus = false;
     this.colExpired.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsColumn.AllowIncrementalSearch = false;
     this.colExpired.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsColumn.AllowMove = false;
     this.colExpired.OptionsColumn.AllowShowHide = false;
     this.colExpired.OptionsColumn.AllowSize = false;
     this.colExpired.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsColumn.FixedWidth = true;
     this.colExpired.OptionsColumn.ShowInCustomizationForm = false;
     this.colExpired.OptionsColumn.ShowInExpressionEditor = false;
     this.colExpired.OptionsFilter.AllowAutoFilter = false;
     this.colExpired.OptionsFilter.AllowFilter = false;
     this.colExpired.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.ToolTip = "Expired Stock";
     this.colExpired.Visible = true;
     this.colExpired.VisibleIndex = 3;
     this.colExpired.Width = 39;
     //
     // colDamaged
     //
     this.colDamaged.Caption = "Damaged";
     this.colDamaged.DisplayFormat.FormatString = "#,###.##";
     this.colDamaged.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colDamaged.FieldName = "DamagedStock";
     this.colDamaged.Name = "colDamaged";
     this.colDamaged.OptionsColumn.AllowEdit = false;
     this.colDamaged.OptionsColumn.AllowFocus = false;
     this.colDamaged.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsColumn.AllowIncrementalSearch = false;
     this.colDamaged.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsColumn.AllowMove = false;
     this.colDamaged.OptionsColumn.AllowShowHide = false;
     this.colDamaged.OptionsColumn.AllowSize = false;
     this.colDamaged.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsColumn.FixedWidth = true;
     this.colDamaged.OptionsColumn.ShowInCustomizationForm = false;
     this.colDamaged.OptionsColumn.ShowInExpressionEditor = false;
     this.colDamaged.OptionsFilter.AllowAutoFilter = false;
     this.colDamaged.OptionsFilter.AllowFilter = false;
     this.colDamaged.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.ToolTip = "Damaged Stock";
     this.colDamaged.Visible = true;
     this.colDamaged.VisibleIndex = 4;
     this.colDamaged.Width = 39;
     //
     // colSOH
     //
     this.colSOH.Caption = "E.B";
     this.colSOH.DisplayFormat.FormatString = "#,###.##";
     this.colSOH.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colSOH.FieldName = "StockOnHand";
     this.colSOH.Name = "colSOH";
     this.colSOH.OptionsColumn.AllowEdit = false;
     this.colSOH.OptionsColumn.AllowFocus = false;
     this.colSOH.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsColumn.AllowIncrementalSearch = false;
     this.colSOH.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsColumn.AllowMove = false;
     this.colSOH.OptionsColumn.AllowShowHide = false;
     this.colSOH.OptionsColumn.AllowSize = false;
     this.colSOH.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsColumn.FixedWidth = true;
     this.colSOH.OptionsColumn.ShowInCustomizationForm = false;
     this.colSOH.OptionsColumn.ShowInExpressionEditor = false;
     this.colSOH.OptionsFilter.AllowAutoFilter = false;
     this.colSOH.OptionsFilter.AllowFilter = false;
     this.colSOH.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.ToolTip = "Remaining Stock On Hand (Ending Balance)";
     this.colSOH.Visible = true;
     this.colSOH.VisibleIndex = 8;
     this.colSOH.Width = 39;
     //
     // ColBeginningBalance
     //
     this.ColBeginningBalance.Caption = "b.B";
     this.ColBeginningBalance.DisplayFormat.FormatString = "#,###.##";
     this.ColBeginningBalance.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColBeginningBalance.FieldName = "BeginningBalance";
     this.ColBeginningBalance.Name = "ColBeginningBalance";
     this.ColBeginningBalance.OptionsColumn.AllowEdit = false;
     this.ColBeginningBalance.OptionsColumn.AllowFocus = false;
     this.ColBeginningBalance.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.OptionsColumn.AllowIncrementalSearch = false;
     this.ColBeginningBalance.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.OptionsColumn.AllowMove = false;
     this.ColBeginningBalance.OptionsColumn.AllowShowHide = false;
     this.ColBeginningBalance.OptionsColumn.AllowSize = false;
     this.ColBeginningBalance.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.OptionsColumn.FixedWidth = true;
     this.ColBeginningBalance.OptionsColumn.ShowInCustomizationForm = false;
     this.ColBeginningBalance.OptionsColumn.ShowInExpressionEditor = false;
     this.ColBeginningBalance.OptionsFilter.AllowAutoFilter = false;
     this.ColBeginningBalance.OptionsFilter.AllowFilter = false;
     this.ColBeginningBalance.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.ToolTip = "Beginning Balance";
     this.ColBeginningBalance.Visible = true;
     this.ColBeginningBalance.VisibleIndex = 5;
     this.ColBeginningBalance.Width = 39;
     //
     // ColLoss
     //
     this.ColLoss.Caption = "Loss";
     this.ColLoss.DisplayFormat.FormatString = "#,###.##";
     this.ColLoss.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColLoss.FieldName = "Loss";
     this.ColLoss.Name = "ColLoss";
     this.ColLoss.OptionsColumn.AllowEdit = false;
     this.ColLoss.OptionsColumn.AllowFocus = false;
     this.ColLoss.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.OptionsColumn.AllowIncrementalSearch = false;
     this.ColLoss.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.OptionsColumn.AllowMove = false;
     this.ColLoss.OptionsColumn.AllowShowHide = false;
     this.ColLoss.OptionsColumn.AllowSize = false;
     this.ColLoss.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.OptionsColumn.FixedWidth = true;
     this.ColLoss.OptionsColumn.ShowInCustomizationForm = false;
     this.ColLoss.OptionsColumn.ShowInExpressionEditor = false;
     this.ColLoss.OptionsFilter.AllowAutoFilter = false;
     this.ColLoss.OptionsFilter.AllowFilter = false;
     this.ColLoss.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.ToolTip = "Loss";
     this.ColLoss.Visible = true;
     this.ColLoss.VisibleIndex = 6;
     this.ColLoss.Width = 39;
     //
     // ColAdjustment
     //
     this.ColAdjustment.Caption = "Adjust.";
     this.ColAdjustment.DisplayFormat.FormatString = "#,###.##";
     this.ColAdjustment.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColAdjustment.FieldName = "Adjustment";
     this.ColAdjustment.Name = "ColAdjustment";
     this.ColAdjustment.OptionsColumn.AllowEdit = false;
     this.ColAdjustment.OptionsColumn.AllowFocus = false;
     this.ColAdjustment.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.OptionsColumn.AllowIncrementalSearch = false;
     this.ColAdjustment.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.OptionsColumn.AllowMove = false;
     this.ColAdjustment.OptionsColumn.AllowShowHide = false;
     this.ColAdjustment.OptionsColumn.AllowSize = false;
     this.ColAdjustment.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.OptionsColumn.FixedWidth = true;
     this.ColAdjustment.OptionsColumn.ShowInCustomizationForm = false;
     this.ColAdjustment.OptionsColumn.ShowInExpressionEditor = false;
     this.ColAdjustment.OptionsFilter.AllowAutoFilter = false;
     this.ColAdjustment.OptionsFilter.AllowFilter = false;
     this.ColAdjustment.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.ToolTip = "Adjustment";
     this.ColAdjustment.Visible = true;
     this.ColAdjustment.VisibleIndex = 7;
     this.ColAdjustment.Width = 39;
     //
     // ColQuantityReceived
     //
     this.ColQuantityReceived.Caption = "Q.R";
     this.ColQuantityReceived.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColQuantityReceived.FieldName = "QuantityReceived";
     this.ColQuantityReceived.Name = "ColQuantityReceived";
     this.ColQuantityReceived.OptionsColumn.AllowEdit = false;
     this.ColQuantityReceived.OptionsColumn.AllowFocus = false;
     this.ColQuantityReceived.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.OptionsColumn.AllowIncrementalSearch = false;
     this.ColQuantityReceived.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.OptionsColumn.AllowMove = false;
     this.ColQuantityReceived.OptionsColumn.AllowShowHide = false;
     this.ColQuantityReceived.OptionsColumn.AllowSize = false;
     this.ColQuantityReceived.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.OptionsColumn.FixedWidth = true;
     this.ColQuantityReceived.OptionsColumn.ShowInCustomizationForm = false;
     this.ColQuantityReceived.OptionsColumn.ShowInExpressionEditor = false;
     this.ColQuantityReceived.OptionsFilter.AllowAutoFilter = false;
     this.ColQuantityReceived.OptionsFilter.AllowFilter = false;
     this.ColQuantityReceived.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.ToolTip = "Quantity Received";
     this.ColQuantityReceived.Visible = true;
     this.ColQuantityReceived.VisibleIndex = 9;
     this.ColQuantityReceived.Width = 39;
     //
     // ColDOS
     //
     this.ColDOS.Caption = "DoS";
     this.ColDOS.DisplayFormat.FormatString = "#,###.##";
     this.ColDOS.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColDOS.FieldName = "DOS";
     this.ColDOS.Name = "ColDOS";
     this.ColDOS.OptionsColumn.AllowEdit = false;
     this.ColDOS.OptionsColumn.AllowFocus = false;
     this.ColDOS.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.OptionsColumn.AllowIncrementalSearch = false;
     this.ColDOS.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.OptionsColumn.AllowMove = false;
     this.ColDOS.OptionsColumn.AllowShowHide = false;
     this.ColDOS.OptionsColumn.AllowSize = false;
     this.ColDOS.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.OptionsColumn.FixedWidth = true;
     this.ColDOS.OptionsColumn.ShowInCustomizationForm = false;
     this.ColDOS.OptionsColumn.ShowInExpressionEditor = false;
     this.ColDOS.OptionsFilter.AllowAutoFilter = false;
     this.ColDOS.OptionsFilter.AllowFilter = false;
     this.ColDOS.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.ToolTip = "Days Out Of Stock";
     this.ColDOS.Visible = true;
     this.ColDOS.VisibleIndex = 10;
     this.ColDOS.Width = 39;
     //
     // ColQuantityNeedMax
     //
     this.ColQuantityNeedMax.Caption = "Q.N.M";
     this.ColQuantityNeedMax.DisplayFormat.FormatString = "#,###.##";
     this.ColQuantityNeedMax.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColQuantityNeedMax.FieldName = "QuantityNeedMax";
     this.ColQuantityNeedMax.Name = "ColQuantityNeedMax";
     this.ColQuantityNeedMax.OptionsColumn.AllowEdit = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowFocus = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.OptionsColumn.AllowIncrementalSearch = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.OptionsColumn.AllowMove = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowShowHide = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowSize = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.OptionsColumn.FixedWidth = true;
     this.ColQuantityNeedMax.OptionsColumn.ReadOnly = true;
     this.ColQuantityNeedMax.OptionsColumn.ShowInCustomizationForm = false;
     this.ColQuantityNeedMax.OptionsColumn.ShowInExpressionEditor = false;
     this.ColQuantityNeedMax.OptionsFilter.AllowAutoFilter = false;
     this.ColQuantityNeedMax.OptionsFilter.AllowFilter = false;
     this.ColQuantityNeedMax.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.ToolTip = "Quantity Need To Reach Max =  M.S.Q - E.B";
     this.ColQuantityNeedMax.Visible = true;
     this.ColQuantityNeedMax.VisibleIndex = 11;
     this.ColQuantityNeedMax.Width = 57;
     //
     // ColMaxStockQuantity
     //
     this.ColMaxStockQuantity.Caption = "M.S.Q";
     this.ColMaxStockQuantity.DisplayFormat.FormatString = "#,###.##";
     this.ColMaxStockQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColMaxStockQuantity.FieldName = "MaxStockQuantity";
     this.ColMaxStockQuantity.Name = "ColMaxStockQuantity";
     this.ColMaxStockQuantity.OptionsColumn.AllowEdit = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowFocus = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.OptionsColumn.AllowIncrementalSearch = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.OptionsColumn.AllowMove = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowShowHide = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowSize = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.OptionsColumn.FixedWidth = true;
     this.ColMaxStockQuantity.OptionsColumn.ReadOnly = true;
     this.ColMaxStockQuantity.OptionsColumn.ShowInCustomizationForm = false;
     this.ColMaxStockQuantity.OptionsColumn.ShowInExpressionEditor = false;
     this.ColMaxStockQuantity.OptionsFilter.AllowAutoFilter = false;
     this.ColMaxStockQuantity.OptionsFilter.AllowFilter = false;
     this.ColMaxStockQuantity.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.ToolTip = "Max Stock Quantity  = (120*Consum)/(60-DOS)";
     this.ColMaxStockQuantity.Visible = true;
     this.ColMaxStockQuantity.VisibleIndex = 12;
     this.ColMaxStockQuantity.Width = 39;
     //
     // ColConsumption
     //
     this.ColConsumption.Caption = "Consum";
     this.ColConsumption.DisplayFormat.FormatString = "#,###.##";
     this.ColConsumption.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColConsumption.FieldName = "Consumption";
     this.ColConsumption.Name = "ColConsumption";
     this.ColConsumption.OptionsColumn.AllowEdit = false;
     this.ColConsumption.OptionsColumn.AllowFocus = false;
     this.ColConsumption.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.OptionsColumn.AllowIncrementalSearch = false;
     this.ColConsumption.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.OptionsColumn.AllowMove = false;
     this.ColConsumption.OptionsColumn.AllowShowHide = false;
     this.ColConsumption.OptionsColumn.AllowSize = false;
     this.ColConsumption.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.OptionsColumn.FixedWidth = true;
     this.ColConsumption.OptionsColumn.ReadOnly = true;
     this.ColConsumption.OptionsColumn.ShowInCustomizationForm = false;
     this.ColConsumption.OptionsColumn.ShowInExpressionEditor = false;
     this.ColConsumption.OptionsFilter.AllowAutoFilter = false;
     this.ColConsumption.OptionsFilter.AllowFilter = false;
     this.ColConsumption.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.ToolTip = "Calculated Consumption =   b.B + Q.R +/- (Loss+Adjust) - E.B";
     this.ColConsumption.Visible = true;
     this.ColConsumption.VisibleIndex = 13;
     this.ColConsumption.Width = 39;
     //
     // ColStockedOut
     //
     this.ColStockedOut.Caption = "StockedOut";
     this.ColStockedOut.FieldName = "StockedOut";
     this.ColStockedOut.Name = "ColStockedOut";
     this.ColStockedOut.OptionsColumn.AllowEdit = false;
     this.ColStockedOut.OptionsColumn.AllowFocus = false;
     this.ColStockedOut.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockedOut.OptionsColumn.AllowIncrementalSearch = false;
     this.ColStockedOut.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockedOut.OptionsColumn.AllowMove = false;
     this.ColStockedOut.OptionsColumn.AllowShowHide = false;
     this.ColStockedOut.OptionsColumn.AllowSize = false;
     this.ColStockedOut.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockedOut.OptionsColumn.FixedWidth = true;
     this.ColStockedOut.OptionsColumn.ShowInCustomizationForm = false;
     this.ColStockedOut.OptionsColumn.ShowInExpressionEditor = false;
     this.ColStockedOut.OptionsFilter.AllowAutoFilter = false;
     this.ColStockedOut.OptionsFilter.AllowFilter = false;
     this.ColStockedOut.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockedOut.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     //
     // ExpireDateEditor
     //
     this.ExpireDateEditor.AutoHeight = false;
     this.ExpireDateEditor.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ExpireDateEditor.DisplayFormat.FormatString = "mm-DD-YYYY";
     this.ExpireDateEditor.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.ExpireDateEditor.EditFormat.FormatString = "mm-DD-YYYY";
     this.ExpireDateEditor.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.ExpireDateEditor.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Value;
     this.ExpireDateEditor.Name = "ExpireDateEditor";
     this.ExpireDateEditor.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemButtonEdit2
     //
     this.repositoryItemButtonEdit2.AutoHeight = false;
     this.repositoryItemButtonEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemButtonEdit2.Name = "repositoryItemButtonEdit2";
     this.repositoryItemButtonEdit2.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // spinEditQtyPerPack
     //
     this.spinEditQtyPerPack.AutoHeight = false;
     this.spinEditQtyPerPack.Name = "spinEditQtyPerPack";
     //
     // gridRecieveView1
     //
     this.gridRecieveView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1});
     this.gridRecieveView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.gridColumn3,
     this.gridColumn1,
     this.gridColumn10,
     this.gridColumn2,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn12,
     this.gridColumn9});
     this.gridRecieveView1.GridControl = this.orderGrid;
     this.gridRecieveView1.Name = "gridRecieveView1";
     this.gridRecieveView1.OptionsView.ShowGroupPanel = false;
     //
     // gridBand1
     //
     this.gridBand1.Caption = "gridBand1";
     this.gridBand1.Columns.Add(this.gridColumn3);
     this.gridBand1.Columns.Add(this.gridColumn1);
     this.gridBand1.Columns.Add(this.gridColumn10);
     this.gridBand1.Columns.Add(this.gridColumn2);
     this.gridBand1.Columns.Add(this.gridColumn4);
     this.gridBand1.Columns.Add(this.gridColumn5);
     this.gridBand1.Columns.Add(this.gridColumn6);
     this.gridBand1.Columns.Add(this.gridColumn7);
     this.gridBand1.Columns.Add(this.gridColumn8);
     this.gridBand1.Columns.Add(this.gridColumn12);
     this.gridBand1.Columns.Add(this.gridColumn9);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 1117;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Stock Code";
     this.gridColumn3.FieldName = "Stock Code";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.AllowFocus = false;
     this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn3.Visible = true;
     this.gridColumn3.Width = 104;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Item Name";
     this.gridColumn1.FieldName = "Item Name";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn1.Visible = true;
     this.gridColumn1.Width = 104;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Manufacturer";
     this.gridColumn10.FieldName = "Manufacturer";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn10.Visible = true;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Pack Qty";
     this.gridColumn2.FieldName = "Pack Qty";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.Visible = true;
     this.gridColumn2.Width = 104;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Reciving Box Size";
     this.gridColumn4.FieldName = "Qty/pack";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn4.Visible = true;
     this.gridColumn4.Width = 104;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "BU Qty";
     this.gridColumn5.FieldName = "BU Qty";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.Visible = true;
     this.gridColumn5.Width = 104;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Unit";
     this.gridColumn6.FieldName = "Unit";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.Visible = true;
     this.gridColumn6.Width = 104;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Price/Pack";
     this.gridColumn7.FieldName = "Price/Pack";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.Visible = true;
     this.gridColumn7.Width = 104;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Batch No";
     this.gridColumn8.FieldName = "Batch No";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn8.Visible = true;
     this.gridColumn8.Width = 144;
     //
     // gridColumn12
     //
     this.gridColumn12.ColumnEdit = this.repositoryItemButtonEdit2;
     this.gridColumn12.ImageAlignment = System.Drawing.StringAlignment.Center;
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn12.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.gridColumn12.Visible = true;
     this.gridColumn12.Width = 25;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Expiry Date";
     this.gridColumn9.ColumnEdit = this.ExpireDateEditor;
     this.gridColumn9.FieldName = "Expiry Date";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn9.Visible = true;
     this.gridColumn9.Width = 145;
     //
     // VolumeMetricsPage
     //
     this.VolumeMetricsPage.Controls.Add(this.layoutControl1);
     this.VolumeMetricsPage.Name = "VolumeMetricsPage";
     this.VolumeMetricsPage.Size = new System.Drawing.Size(910, 194);
     this.VolumeMetricsPage.Text = "Volume Metrics";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.lkContainerTypes);
     this.layoutControl1.Controls.Add(this.cboRequiredContainer);
     this.layoutControl1.Controls.Add(this.lblAvailableVolume);
     this.layoutControl1.Controls.Add(this.lblVolumeNeeded);
     this.layoutControl1.Controls.Add(this.volumetricsCanvas);
     this.layoutControl1.Controls.Add(this.grdVolumeGrid);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem32});
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(845, 218, 250, 350);
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(910, 194);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // lkContainerTypes
     //
     this.lkContainerTypes.EditValue = "Select";
     this.lkContainerTypes.Location = new System.Drawing.Point(89, 12);
     this.lkContainerTypes.Name = "lkContainerTypes";
     this.lkContainerTypes.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkContainerTypes.Properties.DisplayMember = "Name";
     this.lkContainerTypes.Properties.ValueMember = "ShippingContainerTypeID";
     this.lkContainerTypes.Properties.View = this.gridView1;
     this.lkContainerTypes.Size = new System.Drawing.Size(249, 20);
     this.lkContainerTypes.StyleController = this.layoutControl1;
     this.lkContainerTypes.TabIndex = 15;
     this.lkContainerTypes.EditValueChanged += new System.EventHandler(this.lkContainerTypes_EditValueChanged);
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn11,
     this.gridColumn13,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Name";
     this.gridColumn11.FieldName = "Name";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 0;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Height";
     this.gridColumn13.FieldName = "HeightMM";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 1;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Width";
     this.gridColumn16.FieldName = "WidthMM";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 2;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Length";
     this.gridColumn17.FieldName = "LengthMM";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 3;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Weight";
     this.gridColumn18.FieldName = "WeightG";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 4;
     //
     // cboRequiredContainer
     //
     this.cboRequiredContainer.FormattingEnabled = true;
     this.cboRequiredContainer.Location = new System.Drawing.Point(419, 12);
     this.cboRequiredContainer.Name = "cboRequiredContainer";
     this.cboRequiredContainer.Size = new System.Drawing.Size(108, 21);
     this.cboRequiredContainer.TabIndex = 14;
     this.cboRequiredContainer.SelectedIndexChanged += new System.EventHandler(this.cboRequiredContainer_SelectedIndexChanged);
     //
     // lblAvailableVolume
     //
     this.lblAvailableVolume.Location = new System.Drawing.Point(12, 37);
     this.lblAvailableVolume.Name = "lblAvailableVolume";
     this.lblAvailableVolume.Size = new System.Drawing.Size(167, 41);
     this.lblAvailableVolume.TabIndex = 13;
     //
     // lblVolumeNeeded
     //
     this.lblVolumeNeeded.Location = new System.Drawing.Point(183, 37);
     this.lblVolumeNeeded.Name = "lblVolumeNeeded";
     this.lblVolumeNeeded.Size = new System.Drawing.Size(155, 41);
     this.lblVolumeNeeded.TabIndex = 12;
     //
     // volumetricsCanvas
     //
     this.volumetricsCanvas.Location = new System.Drawing.Point(12, 82);
     this.volumetricsCanvas.Name = "volumetricsCanvas";
     this.volumetricsCanvas.Size = new System.Drawing.Size(886, 100);
     this.volumetricsCanvas.TabIndex = 10;
     this.volumetricsCanvas.Paint += new System.Windows.Forms.PaintEventHandler(this.volumetricsCanvas_Paint);
     //
     // grdVolumeGrid
     //
     this.grdVolumeGrid.Location = new System.Drawing.Point(12, 166);
     this.grdVolumeGrid.MainView = this.grdVolumeGridView;
     this.grdVolumeGrid.Name = "grdVolumeGrid";
     this.grdVolumeGrid.Size = new System.Drawing.Size(228, 173);
     this.grdVolumeGrid.TabIndex = 5;
     this.grdVolumeGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grdVolumeGridView});
     this.grdVolumeGrid.Visible = false;
     //
     // grdVolumeGridView
     //
     this.grdVolumeGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Height,
     this.Width,
     this.Depth,
     this.Quantity});
     this.grdVolumeGridView.GridControl = this.grdVolumeGrid;
     this.grdVolumeGridView.Name = "grdVolumeGridView";
     this.grdVolumeGridView.OptionsView.ShowGroupPanel = false;
     this.grdVolumeGridView.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.grdVolumeGridView_CellValueChanged);
     //
     // Height
     //
     this.Height.Caption = "Height";
     this.Height.FieldName = "HeightMM";
     this.Height.Name = "Height";
     this.Height.Visible = true;
     this.Height.VisibleIndex = 0;
     //
     // Width
     //
     this.Width.Caption = "Width";
     this.Width.FieldName = "WidthMM";
     this.Width.Name = "Width";
     this.Width.Visible = true;
     this.Width.VisibleIndex = 1;
     //
     // Depth
     //
     this.Depth.Caption = "Depth";
     this.Depth.FieldName = "DepthMM";
     this.Depth.Name = "Depth";
     this.Depth.Visible = true;
     this.Depth.VisibleIndex = 2;
     //
     // Quantity
     //
     this.Quantity.Caption = "Quantity";
     this.Quantity.FieldName = "Quantity";
     this.Quantity.Name = "Quantity";
     this.Quantity.Visible = true;
     this.Quantity.VisibleIndex = 3;
     //
     // layoutControlItem32
     //
     this.layoutControlItem32.Control = this.grdVolumeGrid;
     this.layoutControlItem32.CustomizationFormText = "layoutControlItem32";
     this.layoutControlItem32.Location = new System.Drawing.Point(0, 154);
     this.layoutControlItem32.MinSize = new System.Drawing.Size(104, 24);
     this.layoutControlItem32.Name = "layoutControlItem32";
     this.layoutControlItem32.Size = new System.Drawing.Size(232, 177);
     this.layoutControlItem32.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem32.Text = "layoutControlItem32";
     this.layoutControlItem32.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem32.TextToControlDistance = 0;
     this.layoutControlItem32.TextVisible = false;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.emptySpaceItem2,
     this.layoutControlItem36,
     this.layoutControlItem37,
     this.layoutControlItem40,
     this.layoutControlItem39,
     this.emptySpaceItem4,
     this.layoutControlItem33});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Size = new System.Drawing.Size(910, 194);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(519, 0);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(371, 25);
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem36
     //
     this.layoutControlItem36.Control = this.volumetricsCanvas;
     this.layoutControlItem36.CustomizationFormText = "layoutControlItem36";
     this.layoutControlItem36.Location = new System.Drawing.Point(0, 70);
     this.layoutControlItem36.Name = "layoutControlItem36";
     this.layoutControlItem36.Size = new System.Drawing.Size(890, 104);
     this.layoutControlItem36.Text = "layoutControlItem36";
     this.layoutControlItem36.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem36.TextToControlDistance = 0;
     this.layoutControlItem36.TextVisible = false;
     //
     // layoutControlItem37
     //
     this.layoutControlItem37.Control = this.cboRequiredContainer;
     this.layoutControlItem37.CustomizationFormText = "Required";
     this.layoutControlItem37.Location = new System.Drawing.Point(330, 0);
     this.layoutControlItem37.Name = "layoutControlItem37";
     this.layoutControlItem37.Size = new System.Drawing.Size(189, 25);
     this.layoutControlItem37.Text = "Required";
     this.layoutControlItem37.TextSize = new System.Drawing.Size(74, 13);
     //
     // layoutControlItem40
     //
     this.layoutControlItem40.Control = this.lblVolumeNeeded;
     this.layoutControlItem40.CustomizationFormText = "layoutControlItem40";
     this.layoutControlItem40.Location = new System.Drawing.Point(171, 25);
     this.layoutControlItem40.Name = "layoutControlItem40";
     this.layoutControlItem40.Size = new System.Drawing.Size(159, 45);
     this.layoutControlItem40.Text = "layoutControlItem40";
     this.layoutControlItem40.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem40.TextToControlDistance = 0;
     this.layoutControlItem40.TextVisible = false;
     //
     // layoutControlItem39
     //
     this.layoutControlItem39.Control = this.lblAvailableVolume;
     this.layoutControlItem39.CustomizationFormText = "layoutControlItem39";
     this.layoutControlItem39.Location = new System.Drawing.Point(0, 25);
     this.layoutControlItem39.Name = "layoutControlItem39";
     this.layoutControlItem39.Size = new System.Drawing.Size(171, 45);
     this.layoutControlItem39.Text = "layoutControlItem39";
     this.layoutControlItem39.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem39.TextToControlDistance = 0;
     this.layoutControlItem39.TextVisible = false;
     //
     // emptySpaceItem4
     //
     this.emptySpaceItem4.AllowHotTrack = false;
     this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4";
     this.emptySpaceItem4.Location = new System.Drawing.Point(330, 25);
     this.emptySpaceItem4.Name = "emptySpaceItem4";
     this.emptySpaceItem4.Size = new System.Drawing.Size(560, 45);
     this.emptySpaceItem4.Text = "emptySpaceItem4";
     this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem33
     //
     this.layoutControlItem33.Control = this.lkContainerTypes;
     this.layoutControlItem33.CustomizationFormText = "Container Type";
     this.layoutControlItem33.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem33.Name = "layoutControlItem33";
     this.layoutControlItem33.Size = new System.Drawing.Size(330, 25);
     this.layoutControlItem33.Text = "Container Type";
     this.layoutControlItem33.TextSize = new System.Drawing.Size(74, 13);
     //
     // NoOfVisitLabel
     //
     this.NoOfVisitLabel.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.NoOfVisitLabel.Location = new System.Drawing.Point(1259, 4);
     this.NoOfVisitLabel.Name = "NoOfVisitLabel";
     this.NoOfVisitLabel.Size = new System.Drawing.Size(87, 13);
     this.NoOfVisitLabel.TabIndex = 47;
     //
     // LastVisitlabel
     //
     this.LastVisitlabel.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LastVisitlabel.Location = new System.Drawing.Point(1050, 4);
     this.LastVisitlabel.Name = "LastVisitlabel";
     this.LastVisitlabel.Size = new System.Drawing.Size(119, 13);
     this.LastVisitlabel.TabIndex = 46;
     //
     // progressBarControl
     //
     this.progressBarControl.Location = new System.Drawing.Point(390, 370);
     this.progressBarControl.Name = "progressBarControl";
     this.progressBarControl.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.progressBarControl.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.progressBarControl.Properties.ProgressViewStyle = DevExpress.XtraEditors.Controls.ProgressViewStyle.Solid;
     this.progressBarControl.Properties.ShowTitle = true;
     this.progressBarControl.Properties.Step = 1;
     this.progressBarControl.Size = new System.Drawing.Size(962, 20);
     this.progressBarControl.TabIndex = 45;
     //
     // simpleButton1
     //
     this.simpleButton1.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton1.Image")));
     this.simpleButton1.Location = new System.Drawing.Point(763, 367);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(142, 22);
     this.simpleButton1.TabIndex = 32;
     this.simpleButton1.Text = "Save Multiple";
     this.simpleButton1.Click += new System.EventHandler(this.multiFacilityDialog_Click);
     //
     // lkType
     //
     this.lkType.Location = new System.Drawing.Point(818, 59);
     this.lkType.Name = "lkType";
     this.lkType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "Name"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "Name28", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lkType.Properties.DisplayMember = "Name";
     this.lkType.Properties.NullText = "Select Institution Type";
     this.lkType.Properties.ShowFooter = false;
     this.lkType.Properties.ShowHeader = false;
     this.lkType.Properties.ValueMember = "ID";
     this.lkType.Size = new System.Drawing.Size(211, 20);
     this.lkType.TabIndex = 45;
     this.lkType.EditValueChanged += new System.EventHandler(this.lkType_EditValueChanged);
     //
     // lkOwnership
     //
     this.lkOwnership.Location = new System.Drawing.Point(818, 35);
     this.lkOwnership.Name = "lkOwnership";
     this.lkOwnership.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkOwnership.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "Name"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "Name26", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lkOwnership.Properties.DisplayMember = "Name";
     this.lkOwnership.Properties.NullText = "Select Ownership";
     this.lkOwnership.Properties.ShowFooter = false;
     this.lkOwnership.Properties.ShowHeader = false;
     this.lkOwnership.Properties.ValueMember = "ID";
     this.lkOwnership.Size = new System.Drawing.Size(211, 20);
     this.lkOwnership.TabIndex = 44;
     this.lkOwnership.EditValueChanged += new System.EventHandler(this.lkOwnership_EditValueChanged);
     //
     // lkWoreda
     //
     this.lkWoreda.Location = new System.Drawing.Point(497, 83);
     this.lkWoreda.Name = "lkWoreda";
     this.lkWoreda.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkWoreda.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.lkWoreda.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "ID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "Woreda Name")});
     this.lkWoreda.Properties.DisplayMember = "WoredaName";
     this.lkWoreda.Properties.NullText = "";
     this.lkWoreda.Properties.ShowFooter = false;
     this.lkWoreda.Properties.ShowHeader = false;
     this.lkWoreda.Properties.ValueMember = "ID";
     this.lkWoreda.Size = new System.Drawing.Size(226, 20);
     this.lkWoreda.TabIndex = 43;
     this.lkWoreda.EditValueChanged += new System.EventHandler(this.lkWoreda_EditValueChanged);
     //
     // txtRemark
     //
     this.txtRemark.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.txtRemark.Location = new System.Drawing.Point(357, 521);
     this.txtRemark.Name = "txtRemark";
     this.txtRemark.Size = new System.Drawing.Size(395, 22);
     this.txtRemark.TabIndex = 18;
     //
     // txtReceivedBy
     //
     this.txtReceivedBy.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.txtReceivedBy.Enabled = false;
     this.txtReceivedBy.Location = new System.Drawing.Point(664, 521);
     this.txtReceivedBy.Name = "txtReceivedBy";
     this.txtReceivedBy.Size = new System.Drawing.Size(124, 20);
     this.txtReceivedBy.TabIndex = 16;
     //
     // txtTin
     //
     this.txtTin.Enabled = false;
     this.txtTin.Location = new System.Drawing.Point(497, 4);
     this.txtTin.Name = "txtTin";
     this.txtTin.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.txtTin.Properties.Appearance.Options.UseBackColor = true;
     this.txtTin.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.txtTin.Size = new System.Drawing.Size(122, 18);
     this.txtTin.TabIndex = 26;
     this.txtTin.Visible = false;
     //
     // txtVatRegistration
     //
     this.txtVatRegistration.Enabled = false;
     this.txtVatRegistration.Location = new System.Drawing.Point(621, 4);
     this.txtVatRegistration.Name = "txtVatRegistration";
     this.txtVatRegistration.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.txtVatRegistration.Properties.Appearance.Options.UseBackColor = true;
     this.txtVatRegistration.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.txtVatRegistration.Size = new System.Drawing.Size(128, 18);
     this.txtVatRegistration.TabIndex = 25;
     //
     // txtRegistrationNo
     //
     this.txtRegistrationNo.Location = new System.Drawing.Point(808, 4);
     this.txtRegistrationNo.Name = "txtRegistrationNo";
     this.txtRegistrationNo.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.txtRegistrationNo.Properties.Appearance.Options.UseBackColor = true;
     this.txtRegistrationNo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.txtRegistrationNo.Size = new System.Drawing.Size(50, 18);
     this.txtRegistrationNo.TabIndex = 27;
     //
     // txtLetterNumber
     //
     this.txtLetterNumber.Location = new System.Drawing.Point(1151, 83);
     this.txtLetterNumber.Name = "txtLetterNumber";
     this.txtLetterNumber.Size = new System.Drawing.Size(183, 20);
     this.txtLetterNumber.TabIndex = 28;
     //
     // txtRefNo
     //
     this.txtRefNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtRefNo.Location = new System.Drawing.Point(104, 16);
     this.txtRefNo.Name = "txtRefNo";
     this.txtRefNo.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.txtRefNo.Properties.Appearance.Options.UseBackColor = true;
     this.txtRefNo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.txtRefNo.Size = new System.Drawing.Size(160, 18);
     this.txtRefNo.TabIndex = 15;
     //
     // btnSaveOrder
     //
     this.btnSaveOrder.Cursor = System.Windows.Forms.Cursors.Default;
     this.btnSaveOrder.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveOrder.Image")));
     this.btnSaveOrder.Location = new System.Drawing.Point(909, 367);
     this.btnSaveOrder.Name = "btnSaveOrder";
     this.btnSaveOrder.Size = new System.Drawing.Size(142, 22);
     this.btnSaveOrder.TabIndex = 24;
     this.btnSaveOrder.Text = "Save as Draft";
     this.btnSaveOrder.Click += new System.EventHandler(this.SaveOrderAsDraft);
     //
     // btnSaveAndForward
     //
     this.btnSaveAndForward.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveAndForward.Image")));
     this.btnSaveAndForward.Location = new System.Drawing.Point(1055, 367);
     this.btnSaveAndForward.Name = "btnSaveAndForward";
     this.btnSaveAndForward.Size = new System.Drawing.Size(142, 22);
     this.btnSaveAndForward.TabIndex = 25;
     this.btnSaveAndForward.Text = "Save and Forward";
     this.btnSaveAndForward.Click += new System.EventHandler(this.btnSaveAndForward_Click);
     //
     // lkModes
     //
     this.lkModes.EditValue = "1";
     this.lkModes.Location = new System.Drawing.Point(78, 62);
     this.lkModes.Name = "lkModes";
     this.lkModes.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkModes.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TypeName", "Name")});
     this.lkModes.Properties.DisplayMember = "TypeName";
     this.lkModes.Properties.NullText = "Select Mode";
     this.lkModes.Properties.ShowFooter = false;
     this.lkModes.Properties.ValueMember = "ID";
     this.lkModes.Size = new System.Drawing.Size(186, 20);
     this.lkModes.TabIndex = 15;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.dxValidation1stTab.SetValidationRule(this.lkModes, conditionValidationRule1);
     this.lkModes.EditValueChanged += new System.EventHandler(this.lkModes_EditValueChanged);
     //
     // txtContactPerson
     //
     this.txtContactPerson.Location = new System.Drawing.Point(1151, 59);
     this.txtContactPerson.Name = "txtContactPerson";
     this.txtContactPerson.Size = new System.Drawing.Size(183, 20);
     this.txtContactPerson.TabIndex = 39;
     //
     // lkZone
     //
     this.lkZone.Location = new System.Drawing.Point(497, 59);
     this.lkZone.Name = "lkZone";
     this.lkZone.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkZone.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "ZoneName"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "ID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lkZone.Properties.DisplayMember = "ZoneName";
     this.lkZone.Properties.NullText = "";
     this.lkZone.Properties.ShowFooter = false;
     this.lkZone.Properties.ShowHeader = false;
     this.lkZone.Properties.ValueMember = "ID";
     this.lkZone.Size = new System.Drawing.Size(226, 20);
     this.lkZone.TabIndex = 38;
     this.lkZone.EditValueChanged += new System.EventHandler(this.lkZone_EditValueChanged);
     //
     // lkRegion
     //
     this.lkRegion.Location = new System.Drawing.Point(497, 35);
     this.lkRegion.Name = "lkRegion";
     this.lkRegion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRegion.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RegionName", "RegionName"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "ID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lkRegion.Properties.DisplayMember = "RegionName";
     this.lkRegion.Properties.NullText = "Select Region";
     this.lkRegion.Properties.ShowFooter = false;
     this.lkRegion.Properties.ShowHeader = false;
     this.lkRegion.Properties.ValueMember = "ID";
     this.lkRegion.Size = new System.Drawing.Size(226, 20);
     this.lkRegion.TabIndex = 37;
     this.lkRegion.Tag = "r";
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "This value is not valid";
     this.dxValidation1stTab.SetValidationRule(this.lkRegion, conditionValidationRule2);
     this.lkRegion.EditValueChanged += new System.EventHandler(this.lkRegion_EditValueChanged);
     //
     // lblLoadRU
     //
     this.lblLoadRU.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline);
     this.lblLoadRU.Location = new System.Drawing.Point(1082, 19);
     this.lblLoadRU.Name = "lblLoadRU";
     this.lblLoadRU.Size = new System.Drawing.Size(33, 13);
     this.lblLoadRU.TabIndex = 36;
     this.lblLoadRU.Text = "Reload";
     this.lblLoadRU.Click += new System.EventHandler(this.lblLoadRU_Click);
     //
     // lkCategoires
     //
     this.lkCategoires.Location = new System.Drawing.Point(78, 86);
     this.lkCategoires.Name = "lkCategoires";
     this.lkCategoires.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkCategoires.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkCategoires.Properties.DisplayMember = "Name";
     this.lkCategoires.Properties.NullText = "Select Commodity Type";
     this.lkCategoires.Properties.ShowFooter = false;
     this.lkCategoires.Properties.ValueMember = "ID";
     this.lkCategoires.Size = new System.Drawing.Size(186, 20);
     this.lkCategoires.TabIndex = 23;
     this.lkCategoires.EditValueChanged += new System.EventHandler(this.lkCategoires_EditValueChanged);
     //
     // txtItemName
     //
     this.txtItemName.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtItemName.Location = new System.Drawing.Point(308, 86);
     this.txtItemName.Name = "txtItemName";
     this.txtItemName.Size = new System.Drawing.Size(102, 20);
     this.txtItemName.TabIndex = 4;
     this.txtItemName.EditValueChanged += new System.EventHandler(this.OnFilterByItemNameChanged);
     //
     // gridItemsChoice
     //
     this.gridItemsChoice.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridItemsChoice.Location = new System.Drawing.Point(4, 122);
     this.gridItemsChoice.MainView = this.gridItemChoiceView;
     this.gridItemsChoice.Name = "gridItemsChoice";
     this.gridItemsChoice.Padding = new System.Windows.Forms.Padding(2);
     this.gridItemsChoice.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1,
     this.repositoryItemMemoEdit2});
     this.gridItemsChoice.Size = new System.Drawing.Size(418, 241);
     this.gridItemsChoice.TabIndex = 11;
     this.gridItemsChoice.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridItemChoiceView});
     this.gridItemsChoice.Click += new System.EventHandler(this.gridItemsChoice_Click);
     //
     // gridItemChoiceView
     //
     this.gridItemChoiceView.Appearance.FocusedRow.BackColor = System.Drawing.Color.Gray;
     this.gridItemChoiceView.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridItemChoiceView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn30,
     this.gridColumn28,
     this.colItemName,
     this.gridColumn14,
     this.gridColumn29,
     this.gridColumn66,
     this.gridColumn67,
     this.gridColumn21});
     styleFormatCondition4.Appearance.ForeColor = System.Drawing.Color.Silver;
     styleFormatCondition4.Appearance.Options.UseForeColor = true;
     styleFormatCondition4.ApplyToRow = true;
     styleFormatCondition4.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition4.Expression = "[StockedOut] == 1";
     this.gridItemChoiceView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition4});
     this.gridItemChoiceView.GridControl = this.gridItemsChoice;
     this.gridItemChoiceView.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.None, "", null, "")});
     this.gridItemChoiceView.HorzScrollStep = 1;
     this.gridItemChoiceView.Name = "gridItemChoiceView";
     this.gridItemChoiceView.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridItemChoiceView.OptionsCustomization.AllowColumnMoving = false;
     this.gridItemChoiceView.OptionsCustomization.AllowColumnResizing = false;
     this.gridItemChoiceView.OptionsCustomization.AllowFilter = false;
     this.gridItemChoiceView.OptionsCustomization.AllowGroup = false;
     this.gridItemChoiceView.OptionsDetail.AllowExpandEmptyDetails = true;
     this.gridItemChoiceView.OptionsDetail.EnableDetailToolTip = true;
     this.gridItemChoiceView.OptionsDetail.SmartDetailExpandButtonMode = DevExpress.XtraGrid.Views.Grid.DetailExpandButtonMode.AlwaysEnabled;
     this.gridItemChoiceView.OptionsDetail.SmartDetailHeight = true;
     this.gridItemChoiceView.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridItemChoiceView.OptionsMenu.EnableColumnMenu = false;
     this.gridItemChoiceView.OptionsMenu.EnableFooterMenu = false;
     this.gridItemChoiceView.OptionsMenu.EnableGroupPanelMenu = false;
     this.gridItemChoiceView.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridItemChoiceView.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridItemChoiceView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridItemChoiceView.OptionsSelection.EnableAppearanceHideSelection = false;
     this.gridItemChoiceView.OptionsSelection.MultiSelect = true;
     this.gridItemChoiceView.OptionsView.EnableAppearanceEvenRow = true;
     this.gridItemChoiceView.OptionsView.EnableAppearanceOddRow = true;
     this.gridItemChoiceView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridItemChoiceView.OptionsView.ShowGroupPanel = false;
     this.gridItemChoiceView.OptionsView.ShowIndicator = false;
     this.gridItemChoiceView.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.gridItemChoiceView_RowClick);
     //
     // gridColumn30
     //
     this.gridColumn30.ColumnEdit = this.repositoryItemCheckEdit1;
     this.gridColumn30.FieldName = "IsSelected";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.OptionsColumn.AllowEdit = false;
     this.gridColumn30.OptionsColumn.AllowFocus = false;
     this.gridColumn30.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn30.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn30.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn30.OptionsColumn.AllowMove = false;
     this.gridColumn30.OptionsColumn.AllowShowHide = false;
     this.gridColumn30.OptionsColumn.AllowSize = false;
     this.gridColumn30.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn30.OptionsColumn.FixedWidth = true;
     this.gridColumn30.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn30.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn30.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn30.OptionsFilter.AllowFilter = false;
     this.gridColumn30.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn30.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Like;
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 0;
     this.gridColumn30.Width = 20;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.repositoryItemCheckEdit1.ValueGrayed = false;
     this.repositoryItemCheckEdit1.CheckedChanged += new System.EventHandler(this.OnItemCheckedChanged);
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "Stock Code";
     this.gridColumn28.FieldName = "StockCode";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.OptionsColumn.AllowEdit = false;
     this.gridColumn28.OptionsColumn.AllowFocus = false;
     this.gridColumn28.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn28.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn28.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn28.OptionsColumn.AllowMove = false;
     this.gridColumn28.OptionsColumn.AllowShowHide = false;
     this.gridColumn28.OptionsColumn.AllowSize = false;
     this.gridColumn28.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn28.OptionsColumn.FixedWidth = true;
     this.gridColumn28.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn28.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn28.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn28.OptionsFilter.AllowFilter = false;
     this.gridColumn28.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn28.Width = 89;
     //
     // colItemName
     //
     this.colItemName.AppearanceCell.Options.UseTextOptions = true;
     this.colItemName.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.colItemName.AppearanceHeader.Options.UseTextOptions = true;
     this.colItemName.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.colItemName.Caption = "Item";
     this.colItemName.ColumnEdit = this.repositoryItemMemoEdit2;
     this.colItemName.FieldName = "FullItemName";
     this.colItemName.Name = "colItemName";
     this.colItemName.OptionsColumn.AllowEdit = false;
     this.colItemName.OptionsColumn.AllowFocus = false;
     this.colItemName.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.OptionsColumn.AllowIncrementalSearch = false;
     this.colItemName.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.OptionsColumn.AllowMove = false;
     this.colItemName.OptionsColumn.AllowShowHide = false;
     this.colItemName.OptionsColumn.AllowSize = false;
     this.colItemName.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.OptionsColumn.FixedWidth = true;
     this.colItemName.OptionsColumn.ShowInCustomizationForm = false;
     this.colItemName.OptionsColumn.ShowInExpressionEditor = false;
     this.colItemName.OptionsFilter.AllowAutoFilter = false;
     this.colItemName.OptionsFilter.AllowFilter = false;
     this.colItemName.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.Visible = true;
     this.colItemName.VisibleIndex = 1;
     this.colItemName.Width = 343;
     //
     // repositoryItemMemoEdit2
     //
     this.repositoryItemMemoEdit2.LinesCount = 1;
     this.repositoryItemMemoEdit2.Name = "repositoryItemMemoEdit2";
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Type";
     this.gridColumn14.FieldName = "CommodityType";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowEdit = false;
     this.gridColumn14.OptionsColumn.AllowFocus = false;
     this.gridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn14.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn14.OptionsColumn.AllowMove = false;
     this.gridColumn14.OptionsColumn.AllowShowHide = false;
     this.gridColumn14.OptionsColumn.AllowSize = false;
     this.gridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn14.OptionsColumn.FixedWidth = true;
     this.gridColumn14.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn14.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn14.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn14.OptionsFilter.AllowFilter = false;
     this.gridColumn14.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "Unit";
     this.gridColumn29.FieldName = "Unit";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.OptionsColumn.AllowEdit = false;
     this.gridColumn29.OptionsColumn.AllowFocus = false;
     this.gridColumn29.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn29.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.AllowMove = false;
     this.gridColumn29.OptionsColumn.AllowShowHide = false;
     this.gridColumn29.OptionsColumn.AllowSize = false;
     this.gridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.FixedWidth = true;
     this.gridColumn29.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn29.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn29.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn29.OptionsFilter.AllowFilter = false;
     this.gridColumn29.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 2;
     //
     // gridColumn66
     //
     this.gridColumn66.Caption = "gridColumn66";
     this.gridColumn66.FieldName = "SubCategoryID";
     this.gridColumn66.Name = "gridColumn66";
     this.gridColumn66.OptionsColumn.AllowEdit = false;
     this.gridColumn66.OptionsColumn.AllowFocus = false;
     this.gridColumn66.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn66.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn66.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn66.OptionsColumn.AllowMove = false;
     this.gridColumn66.OptionsColumn.AllowShowHide = false;
     this.gridColumn66.OptionsColumn.AllowSize = false;
     this.gridColumn66.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn66.OptionsColumn.FixedWidth = true;
     this.gridColumn66.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn66.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn66.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn66.OptionsFilter.AllowFilter = false;
     this.gridColumn66.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColumn67
     //
     this.gridColumn67.Caption = "gridColumn67";
     this.gridColumn67.FieldName = "CategoryID";
     this.gridColumn67.Name = "gridColumn67";
     this.gridColumn67.OptionsColumn.AllowEdit = false;
     this.gridColumn67.OptionsColumn.AllowFocus = false;
     this.gridColumn67.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn67.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn67.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn67.OptionsColumn.AllowMove = false;
     this.gridColumn67.OptionsColumn.AllowShowHide = false;
     this.gridColumn67.OptionsColumn.AllowSize = false;
     this.gridColumn67.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn67.OptionsColumn.FixedWidth = true;
     this.gridColumn67.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn67.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn67.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn67.OptionsFilter.AllowFilter = false;
     this.gridColumn67.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "gridColumn21";
     this.gridColumn21.FieldName = "TypeID";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.OptionsColumn.AllowEdit = false;
     this.gridColumn21.OptionsColumn.AllowFocus = false;
     this.gridColumn21.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn21.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn21.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn21.OptionsColumn.AllowMove = false;
     this.gridColumn21.OptionsColumn.AllowShowHide = false;
     this.gridColumn21.OptionsColumn.AllowSize = false;
     this.gridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn21.OptionsColumn.FixedWidth = true;
     this.gridColumn21.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn21.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn21.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn21.OptionsFilter.AllowFilter = false;
     this.gridColumn21.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     //
     // lkPaymentType
     //
     this.lkPaymentType.Location = new System.Drawing.Point(1150, 35);
     this.lkPaymentType.Margin = new System.Windows.Forms.Padding(0);
     this.lkPaymentType.Name = "lkPaymentType";
     this.lkPaymentType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkPaymentType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkPaymentType.Properties.DisplayMember = "Name";
     this.lkPaymentType.Properties.NullText = "Select Payment Type";
     this.lkPaymentType.Properties.PopupSizeable = false;
     this.lkPaymentType.Properties.ShowFooter = false;
     this.lkPaymentType.Properties.ShowHeader = false;
     this.lkPaymentType.Properties.ValueMember = "ID";
     this.lkPaymentType.Size = new System.Drawing.Size(184, 20);
     this.lkPaymentType.TabIndex = 37;
     conditionValidationRule3.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule3.ErrorText = "This value is not valid";
     this.dxValidation1stTab.SetValidationRule(this.lkPaymentType, conditionValidationRule3);
     //
     // lkForFacility
     //
     this.lkForFacility.EditValue = "1";
     this.lkForFacility.Location = new System.Drawing.Point(818, 83);
     this.lkForFacility.Name = "lkForFacility";
     this.lkForFacility.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkForFacility.Properties.DisplayMember = "Name";
     this.lkForFacility.Properties.NullText = "Select Issue Location";
     this.lkForFacility.Properties.ShowFooter = false;
     this.lkForFacility.Properties.ShowPopupShadow = false;
     this.lkForFacility.Properties.ValueMember = "ID";
     this.lkForFacility.Properties.View = this.gridLookUpEdit1View;
     this.lkForFacility.Size = new System.Drawing.Size(211, 20);
     this.lkForFacility.TabIndex = 22;
     this.lkForFacility.EditValueChanged += new System.EventHandler(this.lkForFacility_EditValueChanged);
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn19,
     this.gridColumn20,
     this.gridColumn22,
     this.gridColumn24,
     this.gridColumn25});
     this.gridLookUpEdit1View.DetailTabHeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Bottom;
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.VisibleAlways;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsCustomization.AllowColumnMoving = false;
     this.gridLookUpEdit1View.OptionsCustomization.AllowColumnResizing = false;
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowAutoFilterRow = true;
     this.gridLookUpEdit1View.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     this.gridLookUpEdit1View.OptionsView.ShowIndicator = false;
     this.gridLookUpEdit1View.ScrollStyle = DevExpress.XtraGrid.Views.Grid.ScrollStyleFlags.LiveVertScroll;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Name";
     this.gridColumn15.FieldName = "Name";
     this.gridColumn15.MinWidth = 150;
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.OptionsColumn.AllowFocus = false;
     this.gridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsColumn.AllowMove = false;
     this.gridColumn15.OptionsColumn.AllowShowHide = false;
     this.gridColumn15.OptionsColumn.AllowSize = false;
     this.gridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 150;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Ownership";
     this.gridColumn19.FieldName = "OwnershipName";
     this.gridColumn19.MinWidth = 75;
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.AllowEdit = false;
     this.gridColumn19.OptionsColumn.AllowFocus = false;
     this.gridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsColumn.AllowMove = false;
     this.gridColumn19.OptionsColumn.AllowShowHide = false;
     this.gridColumn19.OptionsColumn.AllowSize = false;
     this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Type";
     this.gridColumn20.FieldName = "InstitutionTypeName";
     this.gridColumn20.MinWidth = 75;
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.OptionsColumn.AllowEdit = false;
     this.gridColumn20.OptionsColumn.AllowFocus = false;
     this.gridColumn20.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsColumn.AllowMove = false;
     this.gridColumn20.OptionsColumn.AllowShowHide = false;
     this.gridColumn20.OptionsColumn.AllowSize = false;
     this.gridColumn20.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 2;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Woreda";
     this.gridColumn22.FieldName = "WoredaName";
     this.gridColumn22.MinWidth = 150;
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.OptionsColumn.AllowEdit = false;
     this.gridColumn22.OptionsColumn.AllowFocus = false;
     this.gridColumn22.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.AllowMove = false;
     this.gridColumn22.OptionsColumn.AllowShowHide = false;
     this.gridColumn22.OptionsColumn.AllowSize = false;
     this.gridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 3;
     this.gridColumn22.Width = 150;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Zone";
     this.gridColumn24.FieldName = "ZoneName";
     this.gridColumn24.MinWidth = 150;
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.OptionsColumn.AllowEdit = false;
     this.gridColumn24.OptionsColumn.AllowFocus = false;
     this.gridColumn24.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsColumn.AllowMove = false;
     this.gridColumn24.OptionsColumn.AllowShowHide = false;
     this.gridColumn24.OptionsColumn.AllowSize = false;
     this.gridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 4;
     this.gridColumn24.Width = 150;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "Region";
     this.gridColumn25.FieldName = "RegionName";
     this.gridColumn25.MinWidth = 75;
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.OptionsColumn.AllowEdit = false;
     this.gridColumn25.OptionsColumn.AllowFocus = false;
     this.gridColumn25.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsColumn.AllowMove = false;
     this.gridColumn25.OptionsColumn.AllowShowHide = false;
     this.gridColumn25.OptionsColumn.AllowSize = false;
     this.gridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 5;
     //
     // lkPeriod
     //
     this.lkPeriod.Location = new System.Drawing.Point(818, 107);
     this.lkPeriod.Name = "lkPeriod";
     this.lkPeriod.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkPeriod.Properties.DisplayMember = "StartDate_EndDate";
     this.lkPeriod.Properties.NullText = "Select Period";
     this.lkPeriod.Properties.ShowFooter = false;
     this.lkPeriod.Properties.ValueMember = "PeriodID";
     this.lkPeriod.Properties.View = this.gridView2;
     this.lkPeriod.Size = new System.Drawing.Size(211, 20);
     this.lkPeriod.TabIndex = 44;
     this.lkPeriod.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.lkPeriod_EditValueChanging);
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.lkColStartDate_EndDate});
     this.gridView2.DetailHeight = 150;
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // lkColStartDate_EndDate
     //
     this.lkColStartDate_EndDate.Caption = "StartDate_EndDate";
     this.lkColStartDate_EndDate.FieldName = "StartDate_EndDate";
     this.lkColStartDate_EndDate.Name = "lkColStartDate_EndDate";
     this.lkColStartDate_EndDate.Visible = true;
     this.lkColStartDate_EndDate.VisibleIndex = 0;
     //
     // lkRequisitionType
     //
     this.lkRequisitionType.Location = new System.Drawing.Point(78, 38);
     this.lkRequisitionType.Name = "lkRequisitionType";
     this.lkRequisitionType.Properties.AllowMouseWheel = false;
     this.lkRequisitionType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRequisitionType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Description", "Requisiton Type")});
     this.lkRequisitionType.Properties.DisplayMember = "Description";
     this.lkRequisitionType.Properties.NullText = "Select Type";
     this.lkRequisitionType.Properties.PopupWidth = 100;
     this.lkRequisitionType.Properties.ShowFooter = false;
     this.lkRequisitionType.Properties.ValueMember = "Value";
     this.lkRequisitionType.Size = new System.Drawing.Size(186, 20);
     this.lkRequisitionType.TabIndex = 45;
     conditionValidationRule4.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule4.ErrorText = "This value is not valid";
     this.dxValidation1stTab.SetValidationRule(this.lkRequisitionType, conditionValidationRule4);
     this.lkRequisitionType.EditValueChanged += new System.EventHandler(this.lkRequisitionType_EditValueChanged);
     this.lkRequisitionType.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.lkRequisitionType_EditValueChanging);
     //
     // btnCancelOne
     //
     this.btnCancelOne.Image = ((System.Drawing.Image)(resources.GetObject("btnCancelOne.Image")));
     this.btnCancelOne.Location = new System.Drawing.Point(1201, 367);
     this.btnCancelOne.Name = "btnCancelOne";
     this.btnCancelOne.Size = new System.Drawing.Size(142, 22);
     this.btnCancelOne.TabIndex = 20;
     this.btnCancelOne.Text = "Cancel";
     this.btnCancelOne.Click += new System.EventHandler(this.btnCancelOne_Click);
     //
     // layoutControlItem24
     //
     this.layoutControlItem24.Control = this.txtReceivedBy;
     this.layoutControlItem24.CustomizationFormText = "Received By";
     this.layoutControlItem24.Location = new System.Drawing.Point(538, 517);
     this.layoutControlItem24.Name = "layoutControlItem24";
     this.layoutControlItem24.Size = new System.Drawing.Size(250, 26);
     this.layoutControlItem24.Text = "Received By";
     this.layoutControlItem24.TextSize = new System.Drawing.Size(120, 13);
     this.layoutControlItem24.TextToControlDistance = 5;
     //
     // layoutControlItem25
     //
     this.layoutControlItem25.Control = this.txtRemark;
     this.layoutControlItem25.CustomizationFormText = "layoutControlItem25";
     this.layoutControlItem25.Location = new System.Drawing.Point(231, 517);
     this.layoutControlItem25.Name = "layoutControlItem25";
     this.layoutControlItem25.Size = new System.Drawing.Size(521, 26);
     this.layoutControlItem25.Text = "Remarks";
     this.layoutControlItem25.TextSize = new System.Drawing.Size(120, 13);
     this.layoutControlItem25.TextToControlDistance = 5;
     //
     // layoutReload
     //
     this.layoutReload.Control = this.lblLoadRU;
     this.layoutReload.ControlAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.layoutReload.CustomizationFormText = "layoutControlItem2";
     this.layoutReload.FillControlToClientArea = false;
     this.layoutReload.Location = new System.Drawing.Point(1078, 0);
     this.layoutReload.Name = "layoutReload";
     this.layoutReload.Size = new System.Drawing.Size(37, 48);
     this.layoutReload.Text = "layoutReload";
     this.layoutReload.TextLocation = DevExpress.Utils.Locations.Default;
     this.layoutReload.TextSize = new System.Drawing.Size(0, 0);
     this.layoutReload.TextToControlDistance = 0;
     this.layoutReload.TextVisible = false;
     this.layoutReload.TrimClientAreaToControl = false;
     this.layoutReload.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // progressBarlayoutControlItem
     //
     this.progressBarlayoutControlItem.Control = this.progressBarControl;
     this.progressBarlayoutControlItem.CustomizationFormText = "progressBarlayoutControlItem";
     this.progressBarlayoutControlItem.Location = new System.Drawing.Point(386, 366);
     this.progressBarlayoutControlItem.MinSize = new System.Drawing.Size(54, 18);
     this.progressBarlayoutControlItem.Name = "progressBarlayoutControlItem";
     this.progressBarlayoutControlItem.Size = new System.Drawing.Size(966, 24);
     this.progressBarlayoutControlItem.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.progressBarlayoutControlItem.Text = "progressBarlayoutControlItem";
     this.progressBarlayoutControlItem.TextSize = new System.Drawing.Size(0, 0);
     this.progressBarlayoutControlItem.TextToControlDistance = 0;
     this.progressBarlayoutControlItem.TextVisible = false;
     this.progressBarlayoutControlItem.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // layoutControlItem23
     //
     this.layoutControlItem23.Control = this.txtTin;
     this.layoutControlItem23.CustomizationFormText = "TIN Number";
     this.layoutControlItem23.Location = new System.Drawing.Point(430, 0);
     this.layoutControlItem23.MaxSize = new System.Drawing.Size(189, 22);
     this.layoutControlItem23.MinSize = new System.Drawing.Size(189, 22);
     this.layoutControlItem23.Name = "layoutControlItem23";
     this.layoutControlItem23.Size = new System.Drawing.Size(189, 22);
     this.layoutControlItem23.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem23.Text = "TIN Number:";
     this.layoutControlItem23.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem23.TextSize = new System.Drawing.Size(61, 13);
     this.layoutControlItem23.TextToControlDistance = 2;
     //
     // layoutControlItem22
     //
     this.layoutControlItem22.Control = this.txtVatRegistration;
     this.layoutControlItem22.CustomizationFormText = "VAT Registration Number";
     this.layoutControlItem22.Location = new System.Drawing.Point(552, 0);
     this.layoutControlItem22.MaxSize = new System.Drawing.Size(197, 22);
     this.layoutControlItem22.MinSize = new System.Drawing.Size(197, 22);
     this.layoutControlItem22.Name = "layoutControlItem22";
     this.layoutControlItem22.Size = new System.Drawing.Size(197, 22);
     this.layoutControlItem22.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem22.Text = "VAT Number:";
     this.layoutControlItem22.TextSize = new System.Drawing.Size(63, 13);
     this.layoutControlItem22.TextToControlDistance = 5;
     //
     // layoutControlItem21
     //
     this.layoutControlItem21.Control = this.txtRegistrationNo;
     this.layoutControlItem21.CustomizationFormText = "License Number";
     this.layoutControlItem21.Location = new System.Drawing.Point(723, 0);
     this.layoutControlItem21.MinSize = new System.Drawing.Size(135, 22);
     this.layoutControlItem21.Name = "layoutControlItem21";
     this.layoutControlItem21.Size = new System.Drawing.Size(135, 22);
     this.layoutControlItem21.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem21.Text = "License Number:";
     this.layoutControlItem21.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem21.TextSize = new System.Drawing.Size(79, 13);
     this.layoutControlItem21.TextToControlDistance = 2;
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.Control = this.txtRefNo;
     this.layoutControlItem13.CustomizationFormText = "Order Number";
     this.layoutControlItem13.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem13.MaxSize = new System.Drawing.Size(252, 22);
     this.layoutControlItem13.MinSize = new System.Drawing.Size(252, 22);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(252, 22);
     this.layoutControlItem13.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem13.Text = "Order Number:";
     this.layoutControlItem13.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem13.TextSize = new System.Drawing.Size(72, 13);
     this.layoutControlItem13.TextToControlDistance = 16;
     //
     // layoutControlGroup14
     //
     this.layoutControlGroup14.CustomizationFormText = "Root";
     this.layoutControlGroup14.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup14.GroupBordersVisible = false;
     this.layoutControlGroup14.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem29,
     this.layoutControlItem2,
     this.layoutControlItem30,
     this.layoutControlItem8,
     this.layoutControlItem19,
     this.layoutControlItem12,
     this.emptySpaceItem14,
     this.simpleSeparator2,
     this.LastVisitlayout,
     this.NoRequisitionlayout,
     this.layoutControlGroup2,
     this.layoutControlGroup5,
     this.emptySpaceItem5,
     this.simpleSeparator3,
     this.layoutControlGroup4,
     this.layoutControlItem18,
     this.layoutControlItem34,
     this.layoutControlItem35,
     this.emptySpaceItem9,
     this.layoutControlGroup3});
     this.layoutControlGroup14.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup14.Name = "Root";
     this.layoutControlGroup14.OptionsItemText.TextToControlDistance = 2;
     this.layoutControlGroup14.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutControlGroup14.Size = new System.Drawing.Size(1350, 393);
     this.layoutControlGroup14.Text = "Root";
     this.layoutControlGroup14.TextVisible = false;
     //
     // layoutControlItem29
     //
     this.layoutControlItem29.Control = this.gridItemsChoice;
     this.layoutControlItem29.CustomizationFormText = "layoutControlItem29";
     this.layoutControlItem29.Location = new System.Drawing.Point(0, 118);
     this.layoutControlItem29.Name = "layoutControlItem29";
     this.layoutControlItem29.Size = new System.Drawing.Size(422, 245);
     this.layoutControlItem29.Text = "layoutControlItem29";
     this.layoutControlItem29.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem29.TextToControlDistance = 0;
     this.layoutControlItem29.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.xtraTabControl1;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(430, 141);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlItem2.Size = new System.Drawing.Size(916, 222);
     this.layoutControlItem2.Text = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem30
     //
     this.layoutControlItem30.Control = this.simpleButton1;
     this.layoutControlItem30.CustomizationFormText = "layoutControlItem30";
     this.layoutControlItem30.Location = new System.Drawing.Point(759, 363);
     this.layoutControlItem30.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem30.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem30.Name = "layoutControlItem30";
     this.layoutControlItem30.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem30.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem30.Text = "layoutControlItem30";
     this.layoutControlItem30.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem30.TextToControlDistance = 0;
     this.layoutControlItem30.TextVisible = false;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.btnSaveAndForward;
     this.layoutControlItem8.CustomizationFormText = "layoutControlItem8";
     this.layoutControlItem8.Location = new System.Drawing.Point(1051, 363);
     this.layoutControlItem8.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem8.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem8.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem8.Text = "layoutControlItem8";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem8.TextToControlDistance = 0;
     this.layoutControlItem8.TextVisible = false;
     //
     // layoutControlItem19
     //
     this.layoutControlItem19.Control = this.btnSaveOrder;
     this.layoutControlItem19.CustomizationFormText = "layoutControlItem19";
     this.layoutControlItem19.Location = new System.Drawing.Point(905, 363);
     this.layoutControlItem19.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem19.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem19.Name = "layoutControlItem19";
     this.layoutControlItem19.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem19.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem19.Text = "layoutControlItem19";
     this.layoutControlItem19.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem19.TextToControlDistance = 0;
     this.layoutControlItem19.TextVisible = false;
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.Control = this.btnCancelOne;
     this.layoutControlItem12.CustomizationFormText = "layoutControlItem12";
     this.layoutControlItem12.Location = new System.Drawing.Point(1197, 363);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 5, 2, 2);
     this.layoutControlItem12.Size = new System.Drawing.Size(149, 26);
     this.layoutControlItem12.Text = "layoutControlItem12";
     this.layoutControlItem12.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem12.TextToControlDistance = 0;
     this.layoutControlItem12.TextVisible = false;
     //
     // emptySpaceItem14
     //
     this.emptySpaceItem14.AllowHotTrack = false;
     this.emptySpaceItem14.CustomizationFormText = "emptySpaceItem14";
     this.emptySpaceItem14.Location = new System.Drawing.Point(0, 363);
     this.emptySpaceItem14.Name = "emptySpaceItem14";
     this.emptySpaceItem14.Size = new System.Drawing.Size(759, 26);
     this.emptySpaceItem14.Text = "emptySpaceItem14";
     this.emptySpaceItem14.TextSize = new System.Drawing.Size(0, 0);
     //
     // simpleSeparator2
     //
     this.simpleSeparator2.AllowHotTrack = false;
     this.simpleSeparator2.CustomizationFormText = "simpleSeparator2";
     this.simpleSeparator2.Location = new System.Drawing.Point(430, 17);
     this.simpleSeparator2.Name = "simpleSeparator2";
     this.simpleSeparator2.Size = new System.Drawing.Size(916, 2);
     this.simpleSeparator2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.simpleSeparator2.Text = "simpleSeparator2";
     //
     // LastVisitlayout
     //
     this.LastVisitlayout.AppearanceItemCaption.Options.UseTextOptions = true;
     this.LastVisitlayout.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.LastVisitlayout.Control = this.LastVisitlabel;
     this.LastVisitlayout.CustomizationFormText = "Last Visit:";
     this.LastVisitlayout.Location = new System.Drawing.Point(992, 0);
     this.LastVisitlayout.MaxSize = new System.Drawing.Size(177, 17);
     this.LastVisitlayout.MinSize = new System.Drawing.Size(177, 17);
     this.LastVisitlayout.Name = "LastVisitlayout";
     this.LastVisitlayout.Size = new System.Drawing.Size(177, 17);
     this.LastVisitlayout.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.LastVisitlayout.Text = "  Last Visit:";
     this.LastVisitlayout.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.LastVisitlayout.TextSize = new System.Drawing.Size(52, 13);
     this.LastVisitlayout.TextToControlDistance = 2;
     //
     // NoRequisitionlayout
     //
     this.NoRequisitionlayout.Control = this.NoOfVisitLabel;
     this.NoRequisitionlayout.CustomizationFormText = "        No of Requistion:";
     this.NoRequisitionlayout.Location = new System.Drawing.Point(1169, 0);
     this.NoRequisitionlayout.MaxSize = new System.Drawing.Size(177, 17);
     this.NoRequisitionlayout.MinSize = new System.Drawing.Size(177, 17);
     this.NoRequisitionlayout.Name = "NoRequisitionlayout";
     this.NoRequisitionlayout.Size = new System.Drawing.Size(177, 17);
     this.NoRequisitionlayout.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.NoRequisitionlayout.Text = "Last Requisitions:";
     this.NoRequisitionlayout.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.NoRequisitionlayout.TextSize = new System.Drawing.Size(84, 13);
     this.NoRequisitionlayout.TextToControlDistance = 2;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = " ";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem15,
     this.ShowStockOutCheckBoxLayout,
     this.layoutControlItem3,
     this.layoutControlItem4});
     this.layoutControlGroup2.Location = new System.Drawing.Point(430, 19);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(305, 120);
     this.layoutControlGroup2.Text = " ";
     this.layoutControlGroup2.TextVisible = false;
     //
     // layoutControlItem15
     //
     this.layoutControlItem15.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem15.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem15.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem15.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem15.Control = this.lkWoreda;
     this.layoutControlItem15.CustomizationFormText = "Woreda";
     this.layoutControlItem15.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem15.MaxSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem15.MinSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem15.Name = "layoutControlItem15";
     this.layoutControlItem15.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem15.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem15.Text = "Woreda:";
     this.layoutControlItem15.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem15.TextSize = new System.Drawing.Size(47, 13);
     this.layoutControlItem15.TextToControlDistance = 4;
     //
     // ShowStockOutCheckBoxLayout
     //
     this.ShowStockOutCheckBoxLayout.Control = this.ShowStockOutCheckBox;
     this.ShowStockOutCheckBoxLayout.CustomizationFormText = "ShowStockOutCheckBoxLayout";
     this.ShowStockOutCheckBoxLayout.Location = new System.Drawing.Point(0, 72);
     this.ShowStockOutCheckBoxLayout.Name = "ShowStockOutCheckBoxLayout";
     this.ShowStockOutCheckBoxLayout.Size = new System.Drawing.Size(281, 24);
     this.ShowStockOutCheckBoxLayout.Text = "ShowStockOutCheckBoxLayout";
     this.ShowStockOutCheckBoxLayout.TextSize = new System.Drawing.Size(0, 0);
     this.ShowStockOutCheckBoxLayout.TextToControlDistance = 0;
     this.ShowStockOutCheckBoxLayout.TextVisible = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem3.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem3.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem3.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem3.Control = this.lkRegion;
     this.layoutControlItem3.CustomizationFormText = "Region";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Region:";
     this.layoutControlItem3.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(42, 13);
     this.layoutControlItem3.TextToControlDistance = 9;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem4.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem4.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem4.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem4.Control = this.lkZone;
     this.layoutControlItem4.CustomizationFormText = "Zone";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Zone:";
     this.layoutControlItem4.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem4.TextToControlDistance = 20;
     //
     // layoutControlGroup5
     //
     this.layoutControlGroup5.CustomizationFormText = " ";
     this.layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.RequisitionTypelayoutControlItem,
     this.layoutControlItem7,
     this.RangeLayout,
     this.layoutControlItem52,
     this.layoutControlItem31,
     this.emptySpaceItem1,
     this.emptySpaceItem7,
     this.layoutControlItem38});
     this.layoutControlGroup5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup5.Name = "layoutControlGroup5";
     this.layoutControlGroup5.Size = new System.Drawing.Size(422, 118);
     this.layoutControlGroup5.Text = " ";
     this.layoutControlGroup5.TextVisible = false;
     //
     // RequisitionTypelayoutControlItem
     //
     this.RequisitionTypelayoutControlItem.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.RequisitionTypelayoutControlItem.AppearanceItemCaption.Options.UseForeColor = true;
     this.RequisitionTypelayoutControlItem.Control = this.lkRequisitionType;
     this.RequisitionTypelayoutControlItem.CustomizationFormText = "Type";
     this.RequisitionTypelayoutControlItem.ImageToTextDistance = 1;
     this.RequisitionTypelayoutControlItem.Location = new System.Drawing.Point(0, 22);
     this.RequisitionTypelayoutControlItem.MaxSize = new System.Drawing.Size(252, 24);
     this.RequisitionTypelayoutControlItem.MinSize = new System.Drawing.Size(252, 24);
     this.RequisitionTypelayoutControlItem.Name = "RequisitionTypelayoutControlItem";
     this.RequisitionTypelayoutControlItem.Size = new System.Drawing.Size(252, 24);
     this.RequisitionTypelayoutControlItem.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.RequisitionTypelayoutControlItem.Text = "Type:";
     this.RequisitionTypelayoutControlItem.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.RequisitionTypelayoutControlItem.TextSize = new System.Drawing.Size(28, 13);
     this.RequisitionTypelayoutControlItem.TextToControlDistance = 34;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.layoutControlItem7.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem7.Control = this.lkModes;
     this.layoutControlItem7.CustomizationFormText = "Mode:";
     this.layoutControlItem7.Location = new System.Drawing.Point(0, 46);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(252, 24);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(252, 24);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(252, 24);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.Text = "Mode:";
     this.layoutControlItem7.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem7.TextToControlDistance = 32;
     //
     // RangeLayout
     //
     this.RangeLayout.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.RangeLayout.AppearanceItemCaption.Options.UseForeColor = true;
     this.RangeLayout.Control = this.lkRange;
     this.RangeLayout.CustomizationFormText = "RangeLayout";
     this.RangeLayout.Location = new System.Drawing.Point(252, 22);
     this.RangeLayout.MaxSize = new System.Drawing.Size(146, 24);
     this.RangeLayout.MinSize = new System.Drawing.Size(146, 24);
     this.RangeLayout.Name = "RangeLayout";
     this.RangeLayout.Size = new System.Drawing.Size(146, 24);
     this.RangeLayout.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.RangeLayout.Text = "Range:";
     this.RangeLayout.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.RangeLayout.TextSize = new System.Drawing.Size(35, 13);
     this.RangeLayout.TextToControlDistance = 5;
     //
     // layoutControlItem52
     //
     this.layoutControlItem52.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.layoutControlItem52.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem52.Control = this.lkCategoires;
     this.layoutControlItem52.CustomizationFormText = "Categories";
     this.layoutControlItem52.Location = new System.Drawing.Point(0, 70);
     this.layoutControlItem52.MaxSize = new System.Drawing.Size(252, 24);
     this.layoutControlItem52.MinSize = new System.Drawing.Size(252, 24);
     this.layoutControlItem52.Name = "layoutControlItem52";
     this.layoutControlItem52.Size = new System.Drawing.Size(252, 24);
     this.layoutControlItem52.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem52.Text = "Commodity:";
     this.layoutControlItem52.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem52.TextSize = new System.Drawing.Size(57, 13);
     this.layoutControlItem52.TextToControlDistance = 5;
     //
     // layoutControlItem31
     //
     this.layoutControlItem31.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.layoutControlItem31.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem31.Control = this.txtItemName;
     this.layoutControlItem31.CustomizationFormText = "layoutControlItem31";
     this.layoutControlItem31.Location = new System.Drawing.Point(252, 70);
     this.layoutControlItem31.MaxSize = new System.Drawing.Size(146, 24);
     this.layoutControlItem31.MinSize = new System.Drawing.Size(146, 24);
     this.layoutControlItem31.Name = "layoutControlItem31";
     this.layoutControlItem31.Size = new System.Drawing.Size(146, 24);
     this.layoutControlItem31.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem31.Text = "Item:";
     this.layoutControlItem31.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem31.TextSize = new System.Drawing.Size(26, 13);
     this.layoutControlItem31.TextToControlDistance = 14;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(252, 46);
     this.emptySpaceItem1.MaxSize = new System.Drawing.Size(146, 24);
     this.emptySpaceItem1.MinSize = new System.Drawing.Size(146, 24);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(146, 24);
     this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem7
     //
     this.emptySpaceItem7.AllowHotTrack = false;
     this.emptySpaceItem7.CustomizationFormText = "emptySpaceItem7";
     this.emptySpaceItem7.Location = new System.Drawing.Point(252, 0);
     this.emptySpaceItem7.MaxSize = new System.Drawing.Size(146, 22);
     this.emptySpaceItem7.MinSize = new System.Drawing.Size(146, 22);
     this.emptySpaceItem7.Name = "emptySpaceItem7";
     this.emptySpaceItem7.Size = new System.Drawing.Size(146, 22);
     this.emptySpaceItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem7.Text = "emptySpaceItem7";
     this.emptySpaceItem7.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem38
     //
     this.layoutControlItem38.Control = this.labelControl4;
     this.layoutControlItem38.CustomizationFormText = "Order Number: ";
     this.layoutControlItem38.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem38.Name = "layoutControlItem38";
     this.layoutControlItem38.Size = new System.Drawing.Size(252, 22);
     this.layoutControlItem38.Text = "Order No: ";
     this.layoutControlItem38.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem38.TextSize = new System.Drawing.Size(51, 13);
     this.layoutControlItem38.TextToControlDistance = 8;
     //
     // emptySpaceItem5
     //
     this.emptySpaceItem5.AllowHotTrack = false;
     this.emptySpaceItem5.CustomizationFormText = "emptySpaceItem5";
     this.emptySpaceItem5.Location = new System.Drawing.Point(422, 0);
     this.emptySpaceItem5.MinSize = new System.Drawing.Size(8, 10);
     this.emptySpaceItem5.Name = "emptySpaceItem5";
     this.emptySpaceItem5.Size = new System.Drawing.Size(8, 363);
     this.emptySpaceItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem5.Text = "emptySpaceItem5";
     this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
     //
     // simpleSeparator3
     //
     this.simpleSeparator3.AllowHotTrack = false;
     this.simpleSeparator3.CustomizationFormText = "simpleSeparator3";
     this.simpleSeparator3.Location = new System.Drawing.Point(430, 139);
     this.simpleSeparator3.Name = "simpleSeparator3";
     this.simpleSeparator3.Size = new System.Drawing.Size(916, 2);
     this.simpleSeparator3.Text = "simpleSeparator3";
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "layoutControlGroup4";
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem5,
     this.layoutControlItem20,
     this.layoutControlItem1,
     this.emptySpaceItem8});
     this.layoutControlGroup4.Location = new System.Drawing.Point(1041, 19);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.Size = new System.Drawing.Size(305, 120);
     this.layoutControlGroup4.Text = " ";
     this.layoutControlGroup4.TextVisible = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem5.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem5.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.layoutControlItem5.Control = this.txtContactPerson;
     this.layoutControlItem5.CustomizationFormText = "Contact Person";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem5.Text = "Contact Person:";
     this.layoutControlItem5.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(89, 13);
     this.layoutControlItem5.TextToControlDistance = 5;
     //
     // layoutControlItem20
     //
     this.layoutControlItem20.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem20.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem20.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem20.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem20.Control = this.txtLetterNumber;
     this.layoutControlItem20.CustomizationFormText = "Letter Number";
     this.layoutControlItem20.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem20.Name = "layoutControlItem20";
     this.layoutControlItem20.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem20.Text = "Letter No:";
     this.layoutControlItem20.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem20.TextSize = new System.Drawing.Size(55, 13);
     this.layoutControlItem20.TextToControlDistance = 39;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem1.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem1.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem1.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem1.Control = this.lkPaymentType;
     this.layoutControlItem1.CustomizationFormText = "Payment Type";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem1.Text = "Payment:";
     this.layoutControlItem1.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(54, 13);
     this.layoutControlItem1.TextToControlDistance = 39;
     //
     // emptySpaceItem8
     //
     this.emptySpaceItem8.AllowHotTrack = false;
     this.emptySpaceItem8.CustomizationFormText = "emptySpaceItem8";
     this.emptySpaceItem8.Location = new System.Drawing.Point(0, 72);
     this.emptySpaceItem8.Name = "emptySpaceItem8";
     this.emptySpaceItem8.Size = new System.Drawing.Size(281, 24);
     this.emptySpaceItem8.Text = "emptySpaceItem8";
     this.emptySpaceItem8.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem18
     //
     this.layoutControlItem18.Control = this.labelControl1;
     this.layoutControlItem18.CustomizationFormText = "Tin Number:";
     this.layoutControlItem18.Location = new System.Drawing.Point(459, 0);
     this.layoutControlItem18.MaxSize = new System.Drawing.Size(177, 17);
     this.layoutControlItem18.MinSize = new System.Drawing.Size(177, 17);
     this.layoutControlItem18.Name = "layoutControlItem18";
     this.layoutControlItem18.Size = new System.Drawing.Size(177, 17);
     this.layoutControlItem18.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem18.Text = "Tin Number:";
     this.layoutControlItem18.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem18.TextSize = new System.Drawing.Size(58, 13);
     this.layoutControlItem18.TextToControlDistance = 2;
     //
     // layoutControlItem34
     //
     this.layoutControlItem34.Control = this.labelControl2;
     this.layoutControlItem34.CustomizationFormText = "VAT number: ";
     this.layoutControlItem34.Location = new System.Drawing.Point(636, 0);
     this.layoutControlItem34.MaxSize = new System.Drawing.Size(178, 17);
     this.layoutControlItem34.MinSize = new System.Drawing.Size(178, 17);
     this.layoutControlItem34.Name = "layoutControlItem34";
     this.layoutControlItem34.Size = new System.Drawing.Size(178, 17);
     this.layoutControlItem34.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem34.Text = "VAT number: ";
     this.layoutControlItem34.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem34.TextSize = new System.Drawing.Size(65, 13);
     this.layoutControlItem34.TextToControlDistance = 2;
     //
     // layoutControlItem35
     //
     this.layoutControlItem35.Control = this.labelControl3;
     this.layoutControlItem35.CustomizationFormText = "License Number:";
     this.layoutControlItem35.Location = new System.Drawing.Point(814, 0);
     this.layoutControlItem35.MaxSize = new System.Drawing.Size(178, 17);
     this.layoutControlItem35.MinSize = new System.Drawing.Size(178, 17);
     this.layoutControlItem35.Name = "layoutControlItem35";
     this.layoutControlItem35.Size = new System.Drawing.Size(178, 17);
     this.layoutControlItem35.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem35.Text = "License Number:";
     this.layoutControlItem35.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem35.TextSize = new System.Drawing.Size(79, 13);
     this.layoutControlItem35.TextToControlDistance = 2;
     //
     // emptySpaceItem9
     //
     this.emptySpaceItem9.AllowHotTrack = false;
     this.emptySpaceItem9.CustomizationFormText = "emptySpaceItem9";
     this.emptySpaceItem9.Location = new System.Drawing.Point(430, 0);
     this.emptySpaceItem9.Name = "emptySpaceItem9";
     this.emptySpaceItem9.Size = new System.Drawing.Size(29, 17);
     this.emptySpaceItem9.Text = "emptySpaceItem9";
     this.emptySpaceItem9.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem11,
     this.lkPeriodlayout,
     this.layoutControlItem14,
     this.layoutForFacility});
     this.layoutControlGroup3.Location = new System.Drawing.Point(735, 19);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Size = new System.Drawing.Size(306, 120);
     this.layoutControlGroup3.Text = " ";
     this.layoutControlGroup3.TextVisible = false;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem11.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem11.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem11.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem11.Control = this.lkOwnership;
     this.layoutControlItem11.CustomizationFormText = "Ownership";
     this.layoutControlItem11.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(282, 24);
     this.layoutControlItem11.Text = "Ownership:";
     this.layoutControlItem11.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem11.TextSize = new System.Drawing.Size(62, 13);
     this.layoutControlItem11.TextToControlDistance = 5;
     //
     // lkPeriodlayout
     //
     this.lkPeriodlayout.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lkPeriodlayout.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.lkPeriodlayout.AppearanceItemCaption.Options.UseFont = true;
     this.lkPeriodlayout.AppearanceItemCaption.Options.UseForeColor = true;
     this.lkPeriodlayout.Control = this.lkPeriod;
     this.lkPeriodlayout.CustomizationFormText = "Period";
     this.lkPeriodlayout.ImageToTextDistance = 1;
     this.lkPeriodlayout.Location = new System.Drawing.Point(0, 72);
     this.lkPeriodlayout.Name = "lkPeriodlayout";
     this.lkPeriodlayout.Size = new System.Drawing.Size(282, 24);
     this.lkPeriodlayout.Text = "Period:";
     this.lkPeriodlayout.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.lkPeriodlayout.TextSize = new System.Drawing.Size(39, 13);
     this.lkPeriodlayout.TextToControlDistance = 28;
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem14.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem14.Control = this.lkType;
     this.layoutControlItem14.CustomizationFormText = "Type";
     this.layoutControlItem14.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(282, 24);
     this.layoutControlItem14.Text = "Inst. Type:";
     this.layoutControlItem14.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem14.TextSize = new System.Drawing.Size(60, 13);
     this.layoutControlItem14.TextToControlDistance = 7;
     //
     // layoutForFacility
     //
     this.layoutForFacility.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutForFacility.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutForFacility.AppearanceItemCaption.Options.UseFont = true;
     this.layoutForFacility.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutForFacility.Control = this.lkForFacility;
     this.layoutForFacility.CustomizationFormText = "For Facility";
     this.layoutForFacility.Location = new System.Drawing.Point(0, 48);
     this.layoutForFacility.Name = "layoutForFacility";
     this.layoutForFacility.Size = new System.Drawing.Size(282, 24);
     this.layoutForFacility.Text = "Facility:";
     this.layoutForFacility.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutForFacility.TextSize = new System.Drawing.Size(43, 13);
     this.layoutForFacility.TextToControlDistance = 24;
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(297, 0);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(368, 20);
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // popupMenu1
     //
     this.popupMenu1.Name = "popupMenu1";
     //
     // emptySpaceItem15
     //
     this.emptySpaceItem15.AllowHotTrack = false;
     this.emptySpaceItem15.CustomizationFormText = "emptySpaceItem15";
     this.emptySpaceItem15.Location = new System.Drawing.Point(0, 116);
     this.emptySpaceItem15.Name = "emptySpaceItem15";
     this.emptySpaceItem15.Size = new System.Drawing.Size(717, 10);
     this.emptySpaceItem15.Text = "emptySpaceItem15";
     this.emptySpaceItem15.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup8
     //
     this.layoutControlGroup8.CustomizationFormText = "layoutControlGroup8";
     this.layoutControlGroup8.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup8.Name = "layoutControlGroup8";
     this.layoutControlGroup8.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup8.Size = new System.Drawing.Size(717, 116);
     this.layoutControlGroup8.Text = "layoutControlGroup8";
     //
     // layoutControlGroup9
     //
     this.layoutControlGroup9.CustomizationFormText = "layoutControlGroup9";
     this.layoutControlGroup9.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup9.Name = "layoutControlGroup9";
     this.layoutControlGroup9.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup9.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup9.Text = "layoutControlGroup9";
     //
     // layoutControlGroup10
     //
     this.layoutControlGroup10.CustomizationFormText = "layoutControlGroup10";
     this.layoutControlGroup10.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup10.Name = "layoutControlGroup10";
     this.layoutControlGroup10.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup10.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup10.Text = "layoutControlGroup10";
     //
     // emptySpaceItem10
     //
     this.emptySpaceItem10.AllowHotTrack = false;
     this.emptySpaceItem10.CustomizationFormText = "emptySpaceItem10";
     this.emptySpaceItem10.Location = new System.Drawing.Point(0, 0);
     this.emptySpaceItem10.Name = "emptySpaceItem10";
     this.emptySpaceItem10.Size = new System.Drawing.Size(693, 10);
     this.emptySpaceItem10.Text = "emptySpaceItem10";
     this.emptySpaceItem10.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem22
     //
     this.emptySpaceItem22.AllowHotTrack = false;
     this.emptySpaceItem22.CustomizationFormText = "emptySpaceItem22";
     this.emptySpaceItem22.Location = new System.Drawing.Point(85, 0);
     this.emptySpaceItem22.Name = "emptySpaceItem22";
     this.emptySpaceItem22.Size = new System.Drawing.Size(119, 479);
     this.emptySpaceItem22.Text = "emptySpaceItem22";
     this.emptySpaceItem22.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem23
     //
     this.emptySpaceItem23.AllowHotTrack = false;
     this.emptySpaceItem23.CustomizationFormText = "emptySpaceItem23";
     this.emptySpaceItem23.Location = new System.Drawing.Point(1179, 24);
     this.emptySpaceItem23.Name = "emptySpaceItem23";
     this.emptySpaceItem23.Size = new System.Drawing.Size(10, 455);
     this.emptySpaceItem23.Text = "emptySpaceItem23";
     this.emptySpaceItem23.TextSize = new System.Drawing.Size(0, 0);
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
     this.printableComponentLink1,
     this.printOrder});
     //
     // printableComponentLink1
     //
     //
     //
     //
     this.printableComponentLink1.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink1.ImageCollection.ImageStream")));
     this.printableComponentLink1.Landscape = true;
     this.printableComponentLink1.Margins = new System.Drawing.Printing.Margins(20, 20, 20, 20);
     this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(null, new DevExpress.XtraPrinting.PageFooterArea(new string[] {
         "[Time Printed]",
         "[Date Printed]",
         "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))), DevExpress.XtraPrinting.BrickAlignment.Near));
     this.printableComponentLink1.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printableComponentLink1.PrintingSystem = this.printingSystem1;
     this.printableComponentLink1.PrintingSystemBase = this.printingSystem1;
     this.printableComponentLink1.RtfReportHeader = resources.GetString("printableComponentLink1.RtfReportHeader");
     //
     // printOrder
     //
     //
     //
     //
     this.printOrder.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printOrder.ImageCollection.ImageStream")));
     this.printOrder.Landscape = true;
     this.printOrder.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printOrder.PrintingSystem = this.printingSystem1;
     this.printOrder.PrintingSystemBase = this.printingSystem1;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.CustomizationFormText = "Type";
     this.layoutControlItem9.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem9.Name = "layoutControlItem5";
     this.layoutControlItem9.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem9.Text = "Facility Type";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem9.TextToControlDistance = 5;
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.CustomizationFormText = "Type";
     this.layoutControlItem10.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem10.Name = "layoutControlItem5";
     this.layoutControlItem10.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem10.Text = "Facility Type";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem10.TextToControlDistance = 5;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.CustomizationFormText = "Woreda";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem6.Name = "layoutControlItem4";
     this.layoutControlItem6.Size = new System.Drawing.Size(387, 24);
     this.layoutControlItem6.Text = "Woreda";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem6.TextToControlDistance = 5;
     //
     // layoutControlItem16
     //
     this.layoutControlItem16.CustomizationFormText = "Ownership";
     this.layoutControlItem16.Location = new System.Drawing.Point(387, 0);
     this.layoutControlItem16.Name = "layoutControlItem6";
     this.layoutControlItem16.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem16.Text = "Ownership Type";
     this.layoutControlItem16.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem16.TextToControlDistance = 5;
     //
     // layoutControlItem17
     //
     this.layoutControlItem17.CustomizationFormText = "Type";
     this.layoutControlItem17.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem17.Name = "layoutControlItem5";
     this.layoutControlItem17.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem17.Text = "Facility Type";
     this.layoutControlItem17.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem17.TextToControlDistance = 5;
     //
     // layoutControlItem26
     //
     this.layoutControlItem26.CustomizationFormText = "Woreda";
     this.layoutControlItem26.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem26.Name = "layoutControlItem4";
     this.layoutControlItem26.Size = new System.Drawing.Size(387, 24);
     this.layoutControlItem26.Text = "Woreda";
     this.layoutControlItem26.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem26.TextToControlDistance = 5;
     //
     // layoutControlItem27
     //
     this.layoutControlItem27.CustomizationFormText = "Ownership";
     this.layoutControlItem27.Location = new System.Drawing.Point(387, 0);
     this.layoutControlItem27.Name = "layoutControlItem6";
     this.layoutControlItem27.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem27.Text = "Ownership Type";
     this.layoutControlItem27.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem27.TextToControlDistance = 5;
     //
     // layoutControlItem28
     //
     this.layoutControlItem28.CustomizationFormText = "Type";
     this.layoutControlItem28.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem28.Name = "layoutControlItem5";
     this.layoutControlItem28.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem28.Text = "Facility Type";
     this.layoutControlItem28.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem28.TextToControlDistance = 5;
     //
     // simpleLabelItem13
     //
     this.simpleLabelItem13.AllowHotTrack = false;
     this.simpleLabelItem13.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem13.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem13.CustomizationFormText = "Insurance";
     this.simpleLabelItem13.Location = new System.Drawing.Point(459, 85);
     this.simpleLabelItem13.Name = "simpleLabelItem13";
     this.simpleLabelItem13.Size = new System.Drawing.Size(165, 17);
     this.simpleLabelItem13.Text = "Insurance:";
     this.simpleLabelItem13.TextSize = new System.Drawing.Size(111, 13);
     //
     // simpleLabelItem1
     //
     this.simpleLabelItem1.AllowHotTrack = false;
     this.simpleLabelItem1.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem1.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem1.CustomizationFormText = "Insurance";
     this.simpleLabelItem1.Location = new System.Drawing.Point(459, 85);
     this.simpleLabelItem1.Name = "simpleLabelItem13";
     this.simpleLabelItem1.Size = new System.Drawing.Size(165, 17);
     this.simpleLabelItem1.Text = "Insurance:";
     this.simpleLabelItem1.TextSize = new System.Drawing.Size(111, 13);
     //
     // simpleLabelItem2
     //
     this.simpleLabelItem2.AllowHotTrack = false;
     this.simpleLabelItem2.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem2.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem2.CustomizationFormText = "Insurance";
     this.simpleLabelItem2.Location = new System.Drawing.Point(459, 85);
     this.simpleLabelItem2.Name = "simpleLabelItem13";
     this.simpleLabelItem2.Size = new System.Drawing.Size(165, 17);
     this.simpleLabelItem2.Text = "Insurance:";
     this.simpleLabelItem2.TextSize = new System.Drawing.Size(111, 13);
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "Ownership Type";
     this.gridColumn23.FieldName = "OwnershipName";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 4;
     //
     // WishListForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1350, 393);
     this.Controls.Add(this.layoutControl4);
     this.Name = "WishListForm";
     this.Text = "Order";
     this.Load += new System.EventHandler(this.OrderForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditPack)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl4)).EndInit();
     this.layoutControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkRange.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShowStockOutCheckBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.ItemSelectionPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.orderGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrderView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditQtyPerPack)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridRecieveView1)).EndInit();
     this.VolumeMetricsPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkContainerTypes.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdVolumeGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdVolumeGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem33)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkOwnership.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkWoreda.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceivedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTin.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVatRegistration.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRegistrationNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLetterNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkModes.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkZone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRegion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkCategoires.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemsChoice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemChoiceView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPaymentType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkForFacility.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPeriod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRequisitionType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutReload)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarlayoutControlItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastVisitlayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoRequisitionlayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShowStockOutCheckBoxLayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RequisitionTypelayoutControlItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RangeLayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem52)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem34)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPeriodlayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutForFacility)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printOrder.ImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidation1stTab)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddSupply));
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.groupBox7 = new System.Windows.Forms.GroupBox();
     this.ckNeedExp = new DevExpress.XtraEditors.CheckEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.txtStrength = new DevExpress.XtraEditors.TextEdit();
     this.cboUnit = new DevExpress.XtraEditors.LookUpEdit();
     this.cboDosageForm = new DevExpress.XtraEditors.LookUpEdit();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.cboIIN = new DevExpress.XtraEditors.LookUpEdit();
     this.label6 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.txtStockCode = new DevExpress.XtraEditors.TextEdit();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.groupBox1.SuspendLayout();
     this.groupBox7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckNeedExp.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtStrength.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboUnit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboDosageForm.Properties)).BeginInit();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboIIN.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtStockCode.Properties)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.groupBox7);
     this.groupBox1.Controls.Add(this.groupBox5);
     this.groupBox1.Controls.Add(this.btnCancel);
     this.groupBox1.Controls.Add(this.btnSave);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     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(0, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(452, 424);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Supply Detail";
     //
     // groupBox7
     //
     this.groupBox7.Controls.Add(this.ckNeedExp);
     this.groupBox7.Controls.Add(this.label2);
     this.groupBox7.Controls.Add(this.label4);
     this.groupBox7.Controls.Add(this.label5);
     this.groupBox7.Controls.Add(this.txtStrength);
     this.groupBox7.Controls.Add(this.cboUnit);
     this.groupBox7.Controls.Add(this.cboDosageForm);
     this.groupBox7.Location = new System.Drawing.Point(36, 124);
     this.groupBox7.Name = "groupBox7";
     this.groupBox7.Size = new System.Drawing.Size(345, 163);
     this.groupBox7.TabIndex = 13;
     this.groupBox7.TabStop = false;
     this.groupBox7.Text = "Detail";
     //
     // ckNeedExp
     //
     this.ckNeedExp.EditValue = true;
     this.ckNeedExp.Location = new System.Drawing.Point(113, 132);
     this.ckNeedExp.Name = "ckNeedExp";
     this.ckNeedExp.Properties.Caption = "Need Expiry and Batch";
     this.ckNeedExp.Size = new System.Drawing.Size(156, 19);
     this.ckNeedExp.TabIndex = 11;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(10, 26);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(56, 13);
     this.label2.TabIndex = 0;
     this.label2.Text = "Strength";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(12, 53);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(83, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "Dosage Form";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(12, 82);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(29, 13);
     this.label5.TabIndex = 0;
     this.label5.Text = "Unit";
     //
     // txtStrength
     //
     this.txtStrength.Location = new System.Drawing.Point(112, 18);
     this.txtStrength.Name = "txtStrength";
     this.txtStrength.Properties.Appearance.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtStrength.Properties.Appearance.Options.UseFont = true;
     this.txtStrength.Size = new System.Drawing.Size(220, 20);
     this.txtStrength.TabIndex = 1;
     //
     // cboUnit
     //
     this.cboUnit.Location = new System.Drawing.Point(113, 82);
     this.cboUnit.Name = "cboUnit";
     this.cboUnit.Properties.Appearance.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboUnit.Properties.Appearance.Options.UseFont = true;
     this.cboUnit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboUnit.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Unit", "Name")});
     this.cboUnit.Properties.DisplayMember = "Unit";
     this.cboUnit.Properties.ValueMember = "ID";
     this.cboUnit.Size = new System.Drawing.Size(220, 20);
     this.cboUnit.TabIndex = 10;
     //
     // cboDosageForm
     //
     this.cboDosageForm.Location = new System.Drawing.Point(113, 50);
     this.cboDosageForm.Name = "cboDosageForm";
     this.cboDosageForm.Properties.Appearance.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboDosageForm.Properties.Appearance.Options.UseFont = true;
     this.cboDosageForm.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboDosageForm.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Form", "Name")});
     this.cboDosageForm.Properties.DisplayMember = "Form";
     this.cboDosageForm.Properties.ValueMember = "ID";
     this.cboDosageForm.Size = new System.Drawing.Size(220, 20);
     this.cboDosageForm.TabIndex = 10;
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.cboIIN);
     this.groupBox5.Controls.Add(this.label6);
     this.groupBox5.Controls.Add(this.label8);
     this.groupBox5.Controls.Add(this.txtStockCode);
     this.groupBox5.Location = new System.Drawing.Point(36, 40);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(345, 78);
     this.groupBox5.TabIndex = 12;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Supply Name";
     //
     // cboIIN
     //
     this.cboIIN.Location = new System.Drawing.Point(112, 13);
     this.cboIIN.Name = "cboIIN";
     this.cboIIN.Properties.Appearance.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboIIN.Properties.Appearance.Options.UseFont = true;
     this.cboIIN.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboIIN.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IIN", "Name")});
     this.cboIIN.Properties.DisplayMember = "IIN";
     this.cboIIN.Properties.ValueMember = "ID";
     this.cboIIN.Size = new System.Drawing.Size(220, 20);
     this.cboIIN.TabIndex = 10;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(10, 17);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(25, 13);
     this.label6.TabIndex = 0;
     this.label6.Text = "IIN";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(11, 44);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(73, 13);
     this.label8.TabIndex = 0;
     this.label8.Text = "Stock Code";
     //
     // txtStockCode
     //
     this.txtStockCode.Location = new System.Drawing.Point(112, 40);
     this.txtStockCode.Name = "txtStockCode";
     this.txtStockCode.Properties.Appearance.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtStockCode.Properties.Appearance.Options.UseFont = true;
     this.txtStockCode.Size = new System.Drawing.Size(219, 20);
     this.txtStockCode.TabIndex = 1;
     //
     // btnCancel
     //
     this.btnCancel.Appearance.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCancel.Appearance.Options.UseFont = true;
     this.btnCancel.Image = global::PharmInventory.Properties.Resources.cross;
     this.btnCancel.Location = new System.Drawing.Point(257, 347);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(87, 23);
     this.btnCancel.TabIndex = 8;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnSave
     //
     this.btnSave.Appearance.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSave.Appearance.Options.UseFont = true;
     this.btnSave.Image = global::PharmInventory.Properties.Resources.disk;
     this.btnSave.Location = new System.Drawing.Point(149, 347);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(87, 23);
     this.btnSave.TabIndex = 7;
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.removeToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(115, 26);
     //
     // removeToolStripMenuItem
     //
     this.removeToolStripMenuItem.Image = global::PharmInventory.Properties.Resources.cancel_16;
     this.removeToolStripMenuItem.Name = "removeToolStripMenuItem";
     this.removeToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.removeToolStripMenuItem.Text = "remove";
     //
     // AddSupply
     //
     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(452, 424);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "AddSupply";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Supply Details";
     this.Load += new System.EventHandler(this.AddItem_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox7.ResumeLayout(false);
     this.groupBox7.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckNeedExp.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtStrength.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboUnit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboDosageForm.Properties)).EndInit();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboIIN.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtStockCode.Properties)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #45
0
 /// <summary>
 /// 绑定参照字段的数据源
 /// </summary>
 /// <param name="edit">参照字段输入控件</param>
 /// <param name="dataSource">数据源</param>
 /// <param name="displayMember">显示字段</param>
 /// <param name="valueMember">取值字段</param>
 public static void BindingLookupEditDataSource(LookUpEdit edit, object dataSource, string displayMember, string valueMember)
 {
     BindingLookupEditDataSource(edit.Properties, dataSource, displayMember, valueMember);
 }
 /// <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();
 }
Example #47
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lookUpEdit1 = new DevExpress.XtraEditors.LookUpEdit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // lookUpEdit1
     //
     this.lookUpEdit1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lookUpEdit1.Location = new System.Drawing.Point(0, 0);
     this.lookUpEdit1.Name = "lookUpEdit1";
     this.lookUpEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.lookUpEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit1.Properties.ImmediatePopup = true;
     this.lookUpEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lookUpEdit1.Size = new System.Drawing.Size(150, 20);
     this.lookUpEdit1.TabIndex = 0;
     //
     // PLListSelect
     //
     this.Controls.Add(this.lookUpEdit1);
     this.Name = "PLListSelect";
     this.Size = new System.Drawing.Size(150, 20);
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #48
0
        /// <summary>
        /// Bind dynamic controls inside layout control
        /// </summary>
        public void BindControls()
        {
            #region Initialize
            if (Questionnaire == null)
                MessageBox.Show("Questionnaire must be bind with JSON first.", "Seminar Component");
            var answerOpt = Questionnaire.Form.Settings.AnswerOptions[0] as ISeminar;
            if (SeminarScheduleDataSource == null) {
                if (answerOpt != null) {
                    if (answerOpt.SeminarSchedule != null && answerOpt.SeminarSchedule.ScheduleValues.Count > 0)
                        SeminarScheduleDataSource = answerOpt.SeminarSchedule.ScheduleValues;
                    else {
                        MessageBox.Show("\"SeminarScheduleDataSource\" property must be set first.", "Seminar Component");
                        return;
                    }
                } else {
                    MessageBox.Show("\"SeminarScheduleDataSource\" property must be set first.", "Seminar Component");
                    return;
                }

            }
            #endregion

            this.layoutControlGroupQuestion1.Clear();
            Settings oSettings = Questionnaire.Form.Settings;

            // layoutControlGroupQuestion1
            this.layoutControlGroupQuestion1.Name = "layoutControlGroupQuestion" + Guid.NewGuid().ToString();
            this.layoutControlGroupQuestion1.AppearanceGroup.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.layoutControlGroupQuestion1.AppearanceGroup.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.layoutControlGroupQuestion1.AppearanceGroup.Options.UseFont = true;
            this.layoutControlGroupQuestion1.ExpandButtonVisible = true;
            //this.layoutControlGroupQuestion1.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroupQuestion1.Padding = new DevExpress.XtraLayout.Utils.Padding(10, 10, 10, 10);
            this.layoutControlGroupQuestion1.ShowInCustomizationForm = false;
            this.layoutControlGroupQuestion1.Text = oSettings.Label + " " + oSettings.QuestionText;
            this.layoutControlGroupQuestion1.BeginUpdate();

            IList<AnswerOption> answeroptionList = Questionnaire.Form.Settings.AnswerOptions;
            ISeminar answeroption = null;
            int iAnswerOptions = answeroptionList.Count;
            System.Drawing.Size newSize;
            int selectedIndex = 0;
            int idx = 0;
            for (int x = 0; x < iAnswerOptions; ++x) {
                answeroption = answeroptionList[x] as ISeminar;

                #region Seminar List
                // layoutControlItem1
                this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
                //lookUpEdit1
                this.lookUpEdit1 = new LookUpEdit();
                this.lookUpEdit1.Name = "lookUpEdit" + Guid.NewGuid().ToString();
                this.lookUpEdit1.Properties.NullText = "";
                this.lookUpEdit1.Properties.DisplayMember = "Name";
                this.lookUpEdit1.Properties.ValueMember = "Id";
                this.lookUpEdit1.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Seminars"));
                this.lookUpEdit1.Properties.ShowFooter = false;
                this.lookUpEdit1.Properties.ShowHeader = false;
                this.lookUpEdit1.ItemIndex = -1;
                this.lookUpEdit1.Tag = new SeminarData() {
                    PositionIndex = "IndexPosition" + x,
                    ControlContainer = layoutControlItem1
                };
                this.lookUpEdit1.Size = new System.Drawing.Size(155, 20);
                this.lookUpEdit1.StyleController = this.StyleController;
                this.lookUpEdit1.EditValueChanged += new EventHandler(lookUpEdit1_SelectedIndexChanged);
                this.lookUpEdit1.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                this.lookUpEdit1.Properties.DataSource = SeminarScheduleDataSource;

                if (answeroption.SeminarSchedule != null && !string.IsNullOrEmpty(answeroption.SeminarSchedule.SelectedValue)) {
                    this.lookUpEdit1.EditValue = answeroption.SeminarSchedule.SelectedValue;
                } else {
                    selectedIndex = -1;
                }
                this.lookUpEdit1.ItemIndex = selectedIndex;

                // layoutControlItem1
                this.layoutControlItem1.Name = "layoutControlItem" + Guid.NewGuid().ToString();
                this.layoutControlItem1.Control = this.lookUpEdit1;
                int hgt = 28;
                if (answeroption.SeminarSchedule != null && !string.IsNullOrEmpty(answeroption.SeminarSchedule.TextPrefix)) {
                    this.layoutControlItem1.Text = answeroption.SeminarSchedule.TextPrefix;
                    hgt += 20;
                } else {
                    this.layoutControlItem1.TextVisible = false;
                }
                this.layoutControlItem1.TextLocation = DevExpress.Utils.Locations.Top;
                this.layoutControlItem1.TextSize = new System.Drawing.Size(108, 13);
                this.layoutControlItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.layoutControlItem1.MaxSize = new System.Drawing.Size(0, hgt);
                this.layoutControlItem1.MinSize = new System.Drawing.Size(0, hgt);
                this.layoutControlItem1.Size = new System.Drawing.Size(50, 28);
                this.layoutControlItem1.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                this.layoutControlGroupQuestion1.AddItem(this.layoutControlItem1);

                #endregion

                #region Customer Attendies
                //create our gridcontrol
                //
                // gridColumn1
                //
                this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
                this.gridColumn1.Caption = "Attending";
                this.gridColumn1.ColumnEdit = this.repositoryItemCheckEdit1;
                this.gridColumn1.FieldName = "Attending";
                this.gridColumn1.Name = "gridColumn" + Guid.NewGuid().ToString();
                this.gridColumn1.Visible = true;
                this.gridColumn1.VisibleIndex = 0;
                this.gridColumn1.Width = 57;
                //
                // repositoryItemCheckEdit1
                //
                this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
                this.repositoryItemCheckEdit1.AutoHeight = false;
                this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit" + Guid.NewGuid().ToString();
                //
                // gridColumn2
                //
                this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
                this.gridColumn2.Caption = "Name";
                this.gridColumn2.FieldName = "Name";
                this.gridColumn2.Name = "gridColumn" + Guid.NewGuid().ToString();
                this.gridColumn2.Visible = true;
                this.gridColumn2.OptionsColumn.AllowEdit = false;
                this.gridColumn2.VisibleIndex = 1;
                this.gridColumn2.Width = 66;
                //
                // gridColumn3
                //
                this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
                this.gridColumn3.Caption = "Address";
                this.gridColumn3.FieldName = "Address";
                this.gridColumn3.Name = "gridColumn" + Guid.NewGuid().ToString();
                this.gridColumn3.Visible = true;
                this.gridColumn3.OptionsColumn.AllowEdit = false;
                this.gridColumn3.VisibleIndex = 2;
                this.gridColumn3.Width = 66;
                //
                // gridColumn4
                //
                this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
                this.gridColumn4.Caption = "City";
                this.gridColumn4.FieldName = "City";
                this.gridColumn4.Name = "gridColumn" + Guid.NewGuid().ToString();
                this.gridColumn4.Visible = true;
                this.gridColumn4.OptionsColumn.AllowEdit = false;
                this.gridColumn4.VisibleIndex = 3;
                this.gridColumn4.Width = 66;
                //
                // gridColumn5
                //
                this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
                this.gridColumn5.Caption = "Telephone";
                this.gridColumn5.FieldName = "Telephone";
                this.gridColumn5.Name = "gridColumn" + Guid.NewGuid().ToString();
                this.gridColumn5.Visible = true;
                this.gridColumn5.OptionsColumn.AllowEdit = false;
                this.gridColumn5.VisibleIndex = 4;
                this.gridColumn5.Width = 66;
                //
                // gridColumn6
                //
                this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
                this.gridColumn6.Caption = "Email";
                this.gridColumn6.FieldName = "Email";
                this.gridColumn6.Name = "gridColumn" + Guid.NewGuid().ToString();
                this.gridColumn6.Visible = true;
                this.gridColumn6.OptionsColumn.AllowEdit = false;
                this.gridColumn6.VisibleIndex = 5;
                this.gridColumn6.Width = 70;

                //
                // gridColumn7
                //
                this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
                this.gridColumn7.Caption = "AccountID";
                this.gridColumn7.FieldName = "AccountID";
                this.gridColumn7.Name = "gridColumn" + Guid.NewGuid().ToString();
                this.gridColumn7.Visible = false;
                //
                // gridColumn8
                //
                this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
                this.gridColumn8.Caption = "ContactID";
                this.gridColumn8.FieldName = "ContactID";
                this.gridColumn8.Name = "gridColumn" + Guid.NewGuid().ToString();
                this.gridColumn8.Visible = false;

                //
                // gridView1
                //
                this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
                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.gridControl1;
                this.gridView1.Name = "gridView" + Guid.NewGuid().ToString();
                this.gridView1.OptionsFind.AlwaysVisible = true;
                this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
                this.gridView1.OptionsView.ShowGroupPanel = false;
                this.gridView1.OptionsView.ColumnAutoWidth = false;
                this.gridView1.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(gridView1_CellValueChanging);
                //
                // gridControl1
                //
                this.gridControl1 = new DevExpress.XtraGrid.GridControl();
                this.gridControl1.LookAndFeel.UseDefaultLookAndFeel = false;
                this.gridControl1.MainView = this.gridView1;
                this.gridControl1.Name = "gridControl" + Guid.NewGuid().ToString();
                this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                this.repositoryItemCheckEdit1});
                this.gridControl1.Size = new System.Drawing.Size(412, 74);
                this.gridControl1.TabIndex = 11;
                this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                this.gridView1});
                BindAttendiesDatasource();
                //
                // layoutControlItem2
                //
                this.layoutControlItem2 = new LayoutControlItem();
                this.layoutControlItem2.Control = this.gridControl1;
                this.layoutControlItem2.Name = "layoutControlItem" + Guid.NewGuid().ToString();
                this.layoutControlItem2.Text = answeroption.AttendiesLabel;
                this.layoutControlItem2.TextLocation = DevExpress.Utils.Locations.Top;
                this.layoutControlItem2.TextSize = new System.Drawing.Size(108, 13);
                this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.layoutControlItem2.MaxSize = new System.Drawing.Size(0, 200);
                this.layoutControlItem2.MinSize = new System.Drawing.Size(0, 200);
                this.layoutControlItem2.Size = new System.Drawing.Size(200, 200);
                this.layoutControlGroupQuestion1.AddItem(this.layoutControlItem2);
                //
                // simpleButton1
                //
                this.simpleButton1 = new SimpleButton();
                this.simpleButton1.Name = "simpleButton" + Guid.NewGuid().ToString();
                this.simpleButton1.Size = new System.Drawing.Size(130, 22);
                this.simpleButton1.StyleController = this.StyleController;
                this.simpleButton1.Text = answeroption.AddContactButtonLabel;
                this.simpleButton1.Click += new EventHandler(simpleButton1_Click);

                // layoutControlItem2
                this.layoutControlItem2 = new LayoutControlItem();
                this.layoutControlItem2.Name = "layoutControlItem" + Guid.NewGuid().ToString();
                this.layoutControlItem2.Control = this.simpleButton1;
                this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.layoutControlItem2.MaxSize = new System.Drawing.Size(150, 24);
                this.layoutControlItem2.MinSize = new System.Drawing.Size(80, 24);
                this.layoutControlItem2.Size = new System.Drawing.Size(80, 24);
                this.layoutControlItem2.TextVisible = false;
                this.layoutControlItem2.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                this.layoutControlGroupQuestion1.AddItem(this.layoutControlItem2);

                //
                // simpleButton1
                //
                this.simpleButton1 = new SimpleButton();
                this.simpleButton1.Name = "simpleButton" + Guid.NewGuid().ToString();
                this.simpleButton1.Size = new System.Drawing.Size(130, 22);
                this.simpleButton1.StyleController = this.StyleController;
                this.simpleButton1.Text = "Refresh";
                this.simpleButton1.Click += new EventHandler(simpleButton1Refresh_Click);

                // layoutControlItem1
                this.layoutControlItem1 = new LayoutControlItem();
                this.layoutControlItem1.Name = "layoutControlItem" + Guid.NewGuid().ToString();
                this.layoutControlItem1.Control = this.simpleButton1;
                this.layoutControlItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.layoutControlItem1.MaxSize = new System.Drawing.Size(80, 24);
                this.layoutControlItem1.MinSize = new System.Drawing.Size(80, 24);
                this.layoutControlItem1.Size = new System.Drawing.Size(80, 24);
                this.layoutControlItem1.TextVisible = false;
                this.layoutControlItem1.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                this.layoutControlGroupQuestion1.AddItem(this.layoutControlItem1, this.layoutControlItem2, DevExpress.XtraLayout.Utils.InsertType.Right);

                // emptySpaceItem1
                this.emptySpaceItem1 = new EmptySpaceItem();
                this.emptySpaceItem1.Name = "emptySpaceItem" + Guid.NewGuid().ToString();
                this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.emptySpaceItem1.MaxSize = new System.Drawing.Size(0, 20);
                this.emptySpaceItem1.MinSize = new System.Drawing.Size(0, 20);
                this.emptySpaceItem1.Size = new System.Drawing.Size(200, 20);
                this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
                this.emptySpaceItem1.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                this.layoutControlGroupQuestion1.AddItem(this.emptySpaceItem1, this.layoutControlItem1, DevExpress.XtraLayout.Utils.InsertType.Right);
                #endregion

                #region Other Choices
                idx = 0;

                EmptySpaceItem esitem = new EmptySpaceItem();
                esitem.Size = new Size(100, 20);
                this.layoutControlGroupQuestion1.AddItem(esitem);
                foreach (OtherChoice oChoice in answeroption.OtherChoices) {
                    if (oChoice.Enabled) {
                        if (!string.IsNullOrEmpty(oChoice.TextPrefix)) {
                            // simpleLabelItem1
                            this.simpleLabelItem1 = new DevExpress.XtraLayout.SimpleLabelItem();

                            this.simpleLabelItem1.Name = "simpleLabelItem" + Guid.NewGuid().ToString();
                            //this.simpleLabelItem1.ShowInCustomizationForm = false;
                            //this.simpleLabelItem1.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
                            this.simpleLabelItem1.Text = oChoice.TextPrefix;
                            //newSize = new System.Drawing.Size(100, 20);
                            newSize = new System.Drawing.Size(20, 20);
                            this.simpleLabelItem1.SizeConstraintsType = SizeConstraintsType.Custom;
                            this.simpleLabelItem1.MaxSize = new Size(0, 0);
                            this.simpleLabelItem1.MinSize = newSize;
                            this.simpleLabelItem1.Size = newSize;
                            this.simpleLabelItem1.AppearanceItemCaption.BackColor = System.Drawing.Color.Transparent;
                            this.simpleLabelItem1.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                            this.layoutControlGroupQuestion1.AddItem(this.simpleLabelItem1);
                        } else {
                            this.simpleLabelItem1 = null;
                        }
                        // layoutControlItem1
                        this.layoutControlItem1 = new LayoutControlItem();
                        //add textEdit1 to layout
                        this.memoEdit1 = new MemoEdit();
                        this.memoEdit1.Tag = new SeminarData() {
                            ParentPositionIndex = "IndexPosition" + x.ToString(),
                            PositionIndex = "IndexPosition" + idx.ToString(),
                            ControlContainer = layoutControlItem1
                        };
                        this.memoEdit1.Name = "textEdit" + Guid.NewGuid().ToString();
                        this.memoEdit1.Properties.ScrollBars = System.Windows.Forms.ScrollBars.None;
                        this.memoEdit1.StyleController = this.StyleController;

                        memoEdit1.TextChanged += new EventHandler(memoEdit1_TextChanged);
                        memoEdit1.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                        if (string.IsNullOrEmpty(oChoice.InputValue)) {
                            if (!string.IsNullOrEmpty(oChoice.DefaultInputValue)) {
                                this.memoEdit1.Text = oChoice.DefaultInputValue.Trim();
                                memoEdit1_TextChanged(this.memoEdit1, null);
                            }
                        } else {
                            this.memoEdit1.Text = oChoice.InputValue.Trim();
                            memoEdit1_TextChanged(this.memoEdit1, null);
                        }
                        this.layoutControlItem1.Name = "layoutControlItem" + Guid.NewGuid().ToString();
                        this.layoutControlItem1.Control = this.memoEdit1;
                        //int width = 0, height = 100;
                        //if (!string.IsNullOrEmpty(oChoice.TextboxMaxWidth)) {
                        //    int.TryParse(oChoice.TextboxMaxWidth, out width);
                        //}
                        //if (!string.IsNullOrEmpty(oChoice.TextboxMaxHeight)) {
                        //    int.TryParse(oChoice.TextboxMaxHeight, out height);
                        //}

                        //newSize = new System.Drawing.Size(width, height);
                        //this.layoutControlItem1.Size = new Size(200, 50);
                        //this.layoutControlItem1.MaxSize = new Size(400, 50);
                        //this.layoutControlItem1.MinSize = new Size(300, 50);
                        this.layoutControlItem1.SizeConstraintsType = SizeConstraintsType.Custom;
                        this.layoutControlItem1.MinSize = new Size(0, 60);
                        //this.layoutControlItem1.Text = oChoice.TextPrefix;
                        this.layoutControlItem1.TextVisible = false;
                        this.layoutControlItem1.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                        //if (this.simpleLabelItem1 != null) {
                        //    this.layoutControlGroupQuestion1.AddItem(this.layoutControlItem1,this.simpleLabelItem1, DevExpress.XtraLayout.Utils.InsertType.Right);
                        //} else {
                        this.layoutControlGroupQuestion1.AddItem(this.layoutControlItem1);
                        //}
                        idx++;
                    }
                }
                #endregion
            }

            #region Footer
            string prioText = oSettings.Priority;
            if (oSettings.CustomerOwnership && oSettings.BVOwnership) {
                prioText += "(Cust+BV)";
            } else if (oSettings.CustomerOwnership) {
                prioText += "(Cust)";
            } else if (oSettings.BVOwnership) {
                prioText += "(BV)";
            }
            if (oSettings.PlotDoneStatus.Trim().ToLower() == "done") {
                prioText += " Done";
            }

            // simpleLabelItem1 status
            this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.emptySpaceItem1.Name = "simpleLabelItem" + Guid.NewGuid().ToString();
            this.emptySpaceItem1.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.emptySpaceItem1.AppearanceItemCaption.Options.UseTextOptions = true;
            this.emptySpaceItem1.ShowInCustomizationForm = false;
            this.emptySpaceItem1.SizeConstraintsType = SizeConstraintsType.Custom;
            this.emptySpaceItem1.Text = prioText;
            this.emptySpaceItem1.TextVisible = true;
            this.emptySpaceItem1.Click += new EventHandler(layoutControlGroupQuestion1_Click);
            this.layoutControlGroupQuestion1.AddItem(this.emptySpaceItem1);

            if (!string.IsNullOrEmpty(oSettings.QuestionHelp)) {
                this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
                this.emptySpaceItem2.Name = "simpleLabelItem" + Guid.NewGuid().ToString();
                this.emptySpaceItem2.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
                this.emptySpaceItem2.AppearanceItemCaption.Options.UseTextOptions = true;
                this.emptySpaceItem2.ShowInCustomizationForm = false;
                this.emptySpaceItem2.Text = "Help";
                this.emptySpaceItem2.OptionsToolTip.ToolTip = oSettings.QuestionHelp.Trim();

                //apply tooltip controller from parent
                //if (this.ToolTipController != null && this.ToolTipController.DefaultController != null) {
                //    this.emptySpaceItem2.OptionsToolTip.ToolTipController = ToolTipController.DefaultController;
                //}

                this.emptySpaceItem2.TextVisible = true;
                this.emptySpaceItem2.Size = new Size(50, 20);
                this.emptySpaceItem2.MaxSize = new Size(50, 20);
                this.emptySpaceItem2.MinSize = new Size(50, 20);
                this.emptySpaceItem2.SizeConstraintsType = SizeConstraintsType.Custom;
                this.emptySpaceItem2.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                this.emptySpaceItem2.AppearanceItemCaption.TextOptions.HAlignment = HorzAlignment.Far;
                this.layoutControlGroupQuestion1.AddItem(this.emptySpaceItem2, this.emptySpaceItem1, DevExpress.XtraLayout.Utils.InsertType.Right);
            }
            #endregion

            this.layoutControlGroupQuestion1.Click += new EventHandler(layoutControlGroupQuestion1_Click);
            this.layoutControlGroupQuestion1.EndUpdate();
            Image bg = BGImage(this);
            if (bg != null) {
                this.layoutControlGroupQuestion1.BackgroundImage = bg;
                this.layoutControlGroupQuestion1.BackgroundImageVisible = true;
            }
            this.ControlGroup = this.layoutControlGroupQuestion1;
            this.ControlGroup.Tag = this;
        }
 /// <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()
 {
     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);
 }
Example #51
0
        /*
         * https://brightvision.jira.com/browse/PLATFORM-3015
         */
        public void BindControls()
        {
            #region Initialization
            if (Questionnaire == null)
                MessageBox.Show("Questionnaire must be bind with JSON first.", "Schedule Component");

            var answerOpt = Questionnaire.Form.Settings.AnswerOptions[0] as ISchedule;

            //if (CalendarDataSource == null) {
            //    if (answerOpt != null) {
            //        if (answerOpt.CalendarOption != null && answerOpt.CalendarOption.CalendarValues.Count > 0)
            //            CalendarDataSource = answerOpt.CalendarOption.CalendarValues;
            //        else {
            //            MessageBox.Show("\"CalendarDataSource\" property must be set first.","Schedule Component");
            //            return;
            //        }
            //    } else {
            //        MessageBox.Show("\"CalendarDataSource\" property must be set first.", "Schedule Component");
            //        return;
            //    }
            //}

            #endregion

            isLoaded = false;
            this.layoutControlGroupQuestion1.Clear();
            Settings oSettings = Questionnaire.Form.Settings;

            // layoutControlGroupQuestion1
            this.layoutControlGroupQuestion1.Name = "layoutControlGroupQuestion" + Guid.NewGuid().ToString();
            this.layoutControlGroupQuestion1.AppearanceGroup.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.layoutControlGroupQuestion1.AppearanceGroup.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.layoutControlGroupQuestion1.AppearanceGroup.Options.UseFont = true;
            this.layoutControlGroupQuestion1.ExpandButtonVisible = false;
            this.layoutControlGroupQuestion1.GroupBordersVisible = true;
            this.layoutControlGroupQuestion1.TextVisible = false;
            this.layoutControlGroupQuestion1.Padding = new DevExpress.XtraLayout.Utils.Padding(1, 1, 1, 1);
            this.layoutControlGroupQuestion1.ShowInCustomizationForm = false;
            //this.layoutControlGroupQuestion1.Text = oSettings.Label + " " + oSettings.QuestionText;
            this.layoutControlGroupQuestion1.BeginUpdate();

            #region Footer
            this.lciFooter = new LayoutControlItem();
            this.lciFooter.Name = "layoutControlItem" + Guid.NewGuid().ToString();

            //bool isCustomerOwnershipOnly = false;
            //if (oSettings.CustomerOwnership && oSettings.BVOwnership)
            //    isCustomerOwnershipOnly = true;

            //ctlFooter = new Footer() {
            //    IsAccountLevel = oSettings.DataBindings.account_level,
            //    IsCustomerOwnershipOnly = isCustomerOwnershipOnly,
            //    HelpText = oSettings.QuestionHelp,
            //    LanguageCode = oSettings.DataBindings.language_code
            //};

            ctlFooter = new Footer()
            {
                IsAccountLevel = oSettings.DataBindings.account_level,
                IsCustomerOwned = oSettings.CustomerOwnership,
                IsBrightvisionOwned = oSettings.BVOwnership,
                HelpText = oSettings.QuestionHelp,
                LanguageCode = oSettings.DataBindings.language_code,
                QuestionText = oSettings.Label + " " + oSettings.QuestionText
            };

            ctlFooter.InitializeFooter();
            ctlFooter.Dock = DockStyle.Fill;
            ctlFooter.Height = 20;
            this.lciFooter.Control = ctlFooter;
            this.lciFooter.ShowInCustomizationForm = false;
            this.lciFooter.TextVisible = false;
            this.lciFooter.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            this.lciFooter.MinSize = new Size(0, 24);
            this.lciFooter.MaxSize = new Size(0, 24);
            this.lciFooter.Click += new EventHandler(layoutControlGroupQuestion1_Click);
            this.lciFooter.SizeConstraintsType = SizeConstraintsType.Custom;
            this.layoutControlGroupQuestion1.AddItem(this.lciFooter);
            #endregion

            IList<AnswerOption> answeroptionList = Questionnaire.Form.Settings.AnswerOptions;
            ISchedule answeroption = null;
            int iAnswerOptions = answeroptionList.Count;
            //System.Drawing.Size newSize;
            int idx = 0;
            ScheduleSalesPerson oSalesPerson;
            for (int x = 0; x < iAnswerOptions; ++x)
            {
                answeroption = answeroptionList[x] as ISchedule;

                LayoutControlItem lciScheduleDetails = new LayoutControlItem();
                this.lblScheduleDetails = new Label();
                this.lblScheduleDetails.Text = "";
                lciScheduleDetails.Control = this.lblScheduleDetails;
                lciScheduleDetails.TextVisible = false;
                this.layoutControlGroupQuestion1.AddItem(lciScheduleDetails);

                #region Sales Person
                // layoutControlItem1
                this.lciSalesPerson = new LayoutControlItem();
                //lookUpEdit1
                this.lookUpEdit1 = new LookUpEdit();
                this.lookUpEdit1.Name = "SalesPerson_lookUpEdit" + Guid.NewGuid().ToString();
                this.lookUpEdit1.Properties.NullText = "";
                //this.lookUpEdit1.Properties.DisplayMember = "Name";
                //this.lookUpEdit1.Properties.ValueMember = "Id";
                this.lookUpEdit1.Properties.DisplayMember = "resource_name";
                this.lookUpEdit1.Properties.ValueMember = "resource_id";
                //this.lookUpEdit1.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "SalesPerson"));
                this.lookUpEdit1.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("resource_name", "SalesPerson"));
                this.lookUpEdit1.Properties.ShowFooter = false;
                this.lookUpEdit1.Properties.ShowHeader = false;
                this.lookUpEdit1.Properties.ReadOnly = true;
                this.lookUpEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;

                oSalesPerson = answeroption.ScheduleSalesPerson;
                if (oSalesPerson != null)
                {
                    if (oSalesPerson.SalesPersonSelectedValue != null)
                    {
                        this.lookUpEdit1.Properties.DataSource = new List<SalesPerson> { oSalesPerson.SalesPersonSelectedValue };
                        this.lookUpEdit1.EditValue = oSalesPerson.SalesPersonSelectedValue.Id;
                    }
                }

                this.lookUpEdit1.Tag = new ScheduleData()
                {
                    Name = "SalesPerson",
                    PositionIndex = "IndexPosition" + x,
                    ControlContainer = lciSalesPerson
                };
                this.lookUpEdit1.Size = new System.Drawing.Size(155, 20);
                this.lookUpEdit1.StyleController = this.StyleController;
                //this.lookUpEdit1.EditValueChanged += new EventHandler(lookUpEdit1_SelectedIndexChanged);
                this.lookUpEdit1.Click += new EventHandler(layoutControlGroupQuestion1_Click);

                // lciSalesPerson
                this.lciSalesPerson.Name = "layoutControlItem" + Guid.NewGuid().ToString();
                this.lciSalesPerson.Control = this.lookUpEdit1;
                if (oSalesPerson != null && !string.IsNullOrEmpty(oSalesPerson.TextPrefix))
                {
                    this.lciSalesPerson.Text = oSalesPerson.TextPrefix.Trim();

                }
                else
                {
                    this.lciSalesPerson.Text = "Sales Person:";
                }
                this.lciSalesPerson.TextLocation = DevExpress.Utils.Locations.Top;
                this.lciSalesPerson.TextSize = new System.Drawing.Size(108, 13);
                this.lciSalesPerson.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.lciSalesPerson.MaxSize = new System.Drawing.Size(160, 20);
                this.lciSalesPerson.MinSize = new System.Drawing.Size(160, 20);
                this.lciSalesPerson.Size = new System.Drawing.Size(50, 20);
                this.lciSalesPerson.ShowInCustomizationForm = false;
                this.lciSalesPerson.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                //this.layoutControlGroupQuestion1.AddItem(this.lciSalesPerson);

                #endregion

                #region Schedule Type
                // emptySpaceItem1
                this.emptySpaceItem1 = new EmptySpaceItem();
                this.emptySpaceItem1.Name = "emptySpaceItem" + Guid.NewGuid().ToString();
                this.emptySpaceItem1.Size = new System.Drawing.Size(25, 20);
                this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
                this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.emptySpaceItem1.MaxSize = new System.Drawing.Size(0, 20);
                this.emptySpaceItem1.MinSize = new System.Drawing.Size(0, 20);
                this.emptySpaceItem1.ShowInCustomizationForm = false;
                this.emptySpaceItem1.Click += new EventHandler(layoutControlGroupQuestion1_Click);

                //
                // comboBoxEdit1
                this.lciScheduleType = new DevExpress.XtraLayout.LayoutControlItem();
                this.comboBoxEdit1 = new ComboBoxEdit();
                this.comboBoxEdit1.Tag = new ScheduleData()
                {
                    Name = "ScheduleType",
                    PositionIndex = "IndexPosition" + x,
                    ControlContainer = lciScheduleType
                };

                this.comboBoxEdit1.Size = new System.Drawing.Size(50, 20);
                this.comboBoxEdit1.Name = "ScheduleType_comboBoxEdit" + Guid.NewGuid().ToString();
                this.comboBoxEdit1.Properties.ReadOnly = true;
                this.comboBoxEdit1.StyleController = this.StyleController;
                this.comboBoxEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
                this.comboBoxEdit1.SelectedIndexChanged += new EventHandler(comboBoxEdit1_SelectedIndexChanged);
                this.comboBoxEdit1.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                if (answeroption.ScheduleType == null)
                {
                    answeroption.ScheduleType = new ScheduleType();
                }
                if (answeroption.ScheduleType.ScheduleTypeSelectedValue == null)
                {
                    answeroption.ScheduleType.ScheduleTypeSelectedValue = "";
                }
                answeroption.ScheduleType.ScheduleTypeValues = new List<string> { "Seminar", "Webinar", "Meeting" };

                answeroption.ScheduleType.ScheduleTypeValues.ForEach(delegate(string strValue)
                {
                    this.comboBoxEdit1.Properties.Items.Add(strValue);
                });

                // lciScheduleType
                this.lciScheduleType.Name = "layoutControlItem" + Guid.NewGuid().ToString();
                //this.layoutControlItem2.AppearanceItemCaption.Options.UseTextOptions = true;
                //this.layoutControlItem2.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
                this.lciScheduleType.Control = this.comboBoxEdit1;
                this.lciScheduleType.TextLocation = DevExpress.Utils.Locations.Top;
                this.lciScheduleType.TextSize = new System.Drawing.Size(60, 13);
                if (!string.IsNullOrEmpty(answeroption.ScheduleType.TextPrefix))
                {
                    this.lciScheduleType.Text = answeroption.ScheduleType.TextPrefix;
                }
                else
                {
                    this.lciScheduleType.Text = "Schedule Type:";
                }

                this.lciScheduleType.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.lciScheduleType.MaxSize = new System.Drawing.Size(160, 24);
                this.lciScheduleType.MinSize = new System.Drawing.Size(160, 24);
                this.lciScheduleType.Size = new System.Drawing.Size(160, 24);
                this.lciScheduleType.ShowInCustomizationForm = false;
                this.lciScheduleType.Click += new EventHandler(layoutControlGroupQuestion1_Click);

                this.lciSalesPerson.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.OnlyInCustomization;
                this.lciScheduleType.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.OnlyInCustomization;
                this.emptySpaceItem1.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.OnlyInCustomization;

                this.layoutControlGroupQuestion1.AddItem(this.lciScheduleType);
                this.layoutControlGroupQuestion1.AddItem(this.emptySpaceItem1, this.lciScheduleType, DevExpress.XtraLayout.Utils.InsertType.Right);
                this.layoutControlGroupQuestion1.AddItem(this.lciSalesPerson, this.emptySpaceItem1, DevExpress.XtraLayout.Utils.InsertType.Right);

                // emptySpaceItem1
                this.emptySpaceItem1 = new EmptySpaceItem();
                this.emptySpaceItem1.Name = "emptySpaceItem" + Guid.NewGuid().ToString();
                this.emptySpaceItem1.Size = new System.Drawing.Size(1, 15);
                this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
                this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.emptySpaceItem1.MaxSize = new System.Drawing.Size(0, 15);
                this.emptySpaceItem1.MinSize = new System.Drawing.Size(0, 15);
                this.emptySpaceItem1.ShowInCustomizationForm = false;
                this.emptySpaceItem1.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                //this.layoutControlGroupQuestion1.AddItem(this.emptySpaceItem1);
                #endregion

                #region List of Schedules Available
                // lciListOfSchedule
                this.lciListOfScheduleDropDown = new DevExpress.XtraLayout.LayoutControlItem();
                //lookUpEdit1
                this.lookUpEdit2 = new LookUpEdit();
                this.lookUpEdit2.Name = "lookUpEdit" + Guid.NewGuid().ToString();
                this.lookUpEdit2.Properties.NullText = "";
                this.lookUpEdit2.Properties.DisplayMember = "title";
                this.lookUpEdit2.Properties.ValueMember = "id";
                this.lookUpEdit2.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("title", "List of Bookings"));
                comboBoxEdit1_SelectedIndexChanged(this.comboBoxEdit1, null);
                this.lookUpEdit2.Properties.ShowFooter = true;
                this.lookUpEdit2.Properties.ShowHeader = false;
                this.lookUpEdit2.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;

                this.lookUpEdit2.Tag = new ScheduleData()
                {
                    Name = "ListOfBookingsAvailable",
                    PositionIndex = "IndexPosition" + x,
                    ControlContainer = lciListOfScheduleDropDown,
                    Required = answeroption.ListOfBookingsAvailableRequired,
                    HasValue = answeroption.ScheduleValue != null && !string.IsNullOrEmpty(answeroption.ScheduleValue.ScheduleId) ? true : false
                };
                this.lookUpEdit2.Size = new System.Drawing.Size(155, 20);
                this.lookUpEdit2.StyleController = this.StyleController;
                //load answer values
                if (answeroption.ScheduleType != null)
                {
                    if (answeroption.ScheduleValue != null)
                    {
                        if (!string.IsNullOrEmpty(answeroption.ScheduleValue.ScheduleId))
                        {
                            int schedid = int.Parse(answeroption.ScheduleValue.ScheduleId);

                            lookUpEdit2.EditValue = schedid;
                            //if (answeroption.ScheduleType.ScheduleTypeSelectedValue.ToLower() == "meeting") {
                            //    CreateMeeting.Enabled = true;
                            //}
                        }
                    }
                }
                //this.lookUpEdit2.EditValueChanged += new EventHandler(lookUpEdit2_EditValueChanged);
                this.lookUpEdit2.Click += new EventHandler(layoutControlGroupQuestion1_Click);

                this.comboBoxEdit1.EditValue = answeroption.ScheduleType.ScheduleTypeSelectedValue;

                // layoutControlItem1
                this.lciListOfScheduleDropDown.Name = "layoutControlItem" + Guid.NewGuid().ToString();
                this.lciListOfScheduleDropDown.Control = this.lookUpEdit2;

                if (!string.IsNullOrEmpty(answeroption.ListOfBookingsAvailableLabel))
                {
                    this.lciListOfScheduleDropDown.Text = answeroption.ListOfBookingsAvailableLabel.Trim();
                }
                else
                {
                    this.lciListOfScheduleDropDown.Text = "List of Schedules Available:";
                }
                this.lciListOfScheduleDropDown.TextLocation = DevExpress.Utils.Locations.Top;
                this.lciListOfScheduleDropDown.ShowInCustomizationForm = false;
                this.lciListOfScheduleDropDown.Click += new EventHandler(layoutControlGroupQuestion1_Click);

                this.lciListOfScheduleDropDown.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.OnlyInCustomization;
                this.layoutControlGroupQuestion1.AddItem(this.lciListOfScheduleDropDown);
                //
                // simpleButton1
                //
                this.PreviewBooking = new SimpleButton();
                //this.PreviewBooking.Name = "PreviewDetails_simpleButton" + Guid.NewGuid().ToString();
                this.PreviewBooking.Name = "PreviewBooking";
                this.PreviewBooking.Size = new System.Drawing.Size(130, 22);
                this.PreviewBooking.StyleController = this.StyleController;
                if (!string.IsNullOrEmpty(answeroption.ViewDetailSummaryButtonLabel))
                    this.PreviewBooking.Text = answeroption.ViewDetailSummaryButtonLabel;
                else
                    this.PreviewBooking.Text = "Preview Details";

                this.PreviewBooking.Click += new EventHandler(viewDetailSummary_Click);
                this.PreviewBooking.Enabled = false;

                // lciListOfSchedulePreviewButton
                this.lciListOfSchedulePreviewButton = new LayoutControlItem();
                this.lciListOfSchedulePreviewButton.Name = "layoutControlItem" + Guid.NewGuid().ToString();
                this.lciListOfSchedulePreviewButton.Control = this.PreviewBooking;
                this.lciListOfSchedulePreviewButton.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.lciListOfSchedulePreviewButton.MaxSize = new System.Drawing.Size(100, 24);
                this.lciListOfSchedulePreviewButton.MinSize = new System.Drawing.Size(80, 24);
                this.lciListOfSchedulePreviewButton.Size = new System.Drawing.Size(80, 24);
                this.lciListOfSchedulePreviewButton.TextVisible = false;
                this.lciListOfSchedulePreviewButton.ShowInCustomizationForm = false;
                this.lciListOfSchedulePreviewButton.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                this.layoutControlGroupQuestion1.AddItem(this.lciListOfSchedulePreviewButton);

                //
                // simpleButton1
                //
                this.CreateMeeting = new SimpleButton();
                //this.CreateMeeting.Name = "CreateMeeting_simpleButton" + Guid.NewGuid().ToString();
                this.CreateMeeting.Name = "CreateMeeting";
                this.CreateMeeting.Size = new System.Drawing.Size(130, 22);
                this.CreateMeeting.StyleController = this.StyleController;
                if (!string.IsNullOrEmpty(answeroption.CreateMeetingButtonLabel))
                {
                    if (answeroption.CreateMeetingButtonLabel.Trim().ToLower() == "create meeting")
                    {
                        this.CreateMeeting.Text = "Create/Edit Meeting";
                    }
                    else
                    {
                        this.CreateMeeting.Text = answeroption.CreateMeetingButtonLabel;
                    }
                }
                else
                {
                    this.CreateMeeting.Text = "Create/Edit Meeting";
                }
                this.CreateMeeting.Click += new EventHandler(createMeeting_Click);
                this.CreateMeeting.Enabled = false;

                // layoutControlItem1
                this.lciListOfScheduleCreateEditButton = new LayoutControlItem();
                if (answeroption.ScheduleType != null && answeroption.ScheduleType.ScheduleTypeSelectedValue == "Meeting")
                {
                    //lookUpEdit2.Properties.ReadOnly = true;
                    this.CreateMeeting.Tag = "HasMeeting";
                }
                else
                    this.lciListOfScheduleCreateEditButton.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
                //this.lciListOfScheduleCreateEditButton.Name = "layoutControlItem" + Guid.NewGuid().ToString();
                this.lciListOfScheduleCreateEditButton.Name = "lciListOfScheduleCreateEditButton";
                this.lciListOfScheduleCreateEditButton.Control = this.CreateMeeting;
                this.lciListOfScheduleCreateEditButton.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.lciListOfScheduleCreateEditButton.MaxSize = new System.Drawing.Size(115, 24);
                this.lciListOfScheduleCreateEditButton.MinSize = new System.Drawing.Size(115, 24);
                this.lciListOfScheduleCreateEditButton.Size = new System.Drawing.Size(115, 24);
                this.lciListOfScheduleCreateEditButton.TextVisible = false;
                this.lciListOfScheduleCreateEditButton.ShowInCustomizationForm = false;
                this.lciListOfScheduleCreateEditButton.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                this.layoutControlGroupQuestion1.AddItem(this.lciListOfScheduleCreateEditButton, this.lciListOfSchedulePreviewButton, DevExpress.XtraLayout.Utils.InsertType.Right);
                //
                // simpleButton1
                //
                this.DeleteMeeting = new SimpleButton();
                //this.DeleteMeeting.Name = "DeleteMeeting_simpleButton" + Guid.NewGuid().ToString();
                this.DeleteMeeting.Name = "DeleteMeeting";
                this.DeleteMeeting.Size = new System.Drawing.Size(130, 22);
                this.DeleteMeeting.StyleController = this.StyleController;
                this.DeleteMeeting.Text = "Delete Meeting";
                this.DeleteMeeting.Click += new EventHandler(deleteMeeting_Click);
                this.DeleteMeeting.Enabled = false;

                // lciListOfScheduleDeleteButton
                this.lciListOfScheduleDeleteButton = new LayoutControlItem();
                if (answeroption.ScheduleType != null && answeroption.ScheduleType.ScheduleTypeSelectedValue == "Meeting")
                {
                    this.DeleteMeeting.Tag = "HasMeeting";
                    //lookUpEdit2.Properties.ReadOnly = true;
                    var lueData = lookUpEdit2.Tag as ScheduleData;
                    lueData.IsMeeting = true;
                }
                else
                    this.lciListOfScheduleDeleteButton.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
                this.lciListOfScheduleDeleteButton.Name = "layoutControlItem" + Guid.NewGuid().ToString();
                this.lciListOfScheduleDeleteButton.Control = this.DeleteMeeting;
                this.lciListOfScheduleDeleteButton.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.lciListOfScheduleDeleteButton.MaxSize = new System.Drawing.Size(100, 24);
                this.lciListOfScheduleDeleteButton.MinSize = new System.Drawing.Size(80, 24);
                this.lciListOfScheduleDeleteButton.Size = new System.Drawing.Size(80, 24);
                this.lciListOfScheduleDeleteButton.TextVisible = false;
                this.lciListOfScheduleDeleteButton.ShowInCustomizationForm = false;
                this.lciListOfScheduleDeleteButton.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                this.layoutControlGroupQuestion1.AddItem(this.lciListOfScheduleDeleteButton, this.lciListOfScheduleCreateEditButton, DevExpress.XtraLayout.Utils.InsertType.Right);

                ////load answer values
                //if (answeroption.ScheduleType != null) {
                //    if (answeroption.ScheduleValue != null) {
                //        if (!string.IsNullOrEmpty(answeroption.ScheduleValue.ScheduleId)) {
                //            int schedid = int.Parse(answeroption.ScheduleValue.ScheduleId);

                //            lookUpEdit2.EditValue = schedid;
                //            //if (answeroption.ScheduleType.ScheduleTypeSelectedValue.ToLower() == "meeting") {
                //            //    CreateMeeting.Enabled = true;
                //            //}
                //        }
                //    }
                //}

                // emptySpaceItem1
                this.emptySpaceItem1 = new EmptySpaceItem();
                this.emptySpaceItem1.Name = "emptySpaceItem" + Guid.NewGuid().ToString();
                this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.emptySpaceItem1.MaxSize = new System.Drawing.Size(0, 20);
                this.emptySpaceItem1.MinSize = new System.Drawing.Size(0, 20);
                this.emptySpaceItem1.Size = new System.Drawing.Size(200, 20);
                this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
                this.emptySpaceItem1.ShowInCustomizationForm = false;
                this.emptySpaceItem1.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                this.layoutControlGroupQuestion1.AddItem(this.emptySpaceItem1, this.lciListOfScheduleDeleteButton, DevExpress.XtraLayout.Utils.InsertType.Right);
                #endregion

                #region Customer Attendies

                #region Grid
                simpleLabelItemValidation = new SimpleLabelItem();
                simpleLabelItemValidation.AppearanceItemCaption.BackColor = Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
                simpleLabelItemValidation.Name = Guid.NewGuid().ToString();
                simpleLabelItemValidation.TextAlignMode = TextAlignModeItem.CustomSize;
                simpleLabelItemValidation.TextSize = new Size(212, 20);
                simpleLabelItemValidation.Text = "  Please add at least one contact attendie.";
                simpleLabelItemValidation.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
                this.layoutControlGroupQuestion1.AddItem(simpleLabelItemValidation);

                //create our gridcontrol
                //
                // gridColumn1
                //
                this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
                this.gridColumn1.Caption = "Name";
                this.gridColumn1.FieldName = "Name";
                this.gridColumn1.Name = "gridColumn" + Guid.NewGuid().ToString();
                this.gridColumn1.Visible = true;
                this.gridColumn1.OptionsColumn.AllowEdit = false;
                this.gridColumn1.VisibleIndex = 0;
                this.gridColumn1.Width = 66;
                //
                // gridColumn2
                //
                this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
                this.gridColumn2.Caption = "Address";
                this.gridColumn2.FieldName = "Address";
                this.gridColumn2.Name = "gridColumn" + Guid.NewGuid().ToString();
                this.gridColumn2.Visible = true;
                this.gridColumn2.OptionsColumn.AllowEdit = false;
                this.gridColumn2.VisibleIndex = 1;
                this.gridColumn2.Width = 66;
                //
                // gridColumn3
                //
                //this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
                //this.gridColumn3.Caption = "City";
                //this.gridColumn3.FieldName = "City";
                //this.gridColumn3.Name = "gridColumn" + Guid.NewGuid().ToString();
                //this.gridColumn3.Visible = true;
                //this.gridColumn3.OptionsColumn.AllowEdit = false;
                //this.gridColumn3.VisibleIndex = 2;
                //this.gridColumn3.Width = 66;
                //
                // gridColumn4
                //
                this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
                this.gridColumn4.Caption = "Telephone";
                this.gridColumn4.FieldName = "Telephone";
                this.gridColumn4.Name = "gridColumn" + Guid.NewGuid().ToString();
                this.gridColumn4.Visible = true;
                this.gridColumn4.OptionsColumn.AllowEdit = false;
                this.gridColumn4.VisibleIndex = 3;
                this.gridColumn4.Width = 66;
                //
                // gridColumn5
                //
                this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
                this.gridColumn5.Caption = "Email";
                this.gridColumn5.FieldName = "Email";
                this.gridColumn5.Name = "gridColumn" + Guid.NewGuid().ToString();
                this.gridColumn5.Visible = true;
                this.gridColumn5.OptionsColumn.AllowEdit = false;
                this.gridColumn5.VisibleIndex = 4;
                this.gridColumn5.Width = 70;
                //
                // gridColumn6
                //
                this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
                this.gridColumn6.Caption = "AccountID";
                this.gridColumn6.FieldName = "AccountID";
                this.gridColumn6.Name = "gridColumn" + Guid.NewGuid().ToString();
                this.gridColumn6.Visible = false;
                //
                // gridColumn7
                //
                this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
                this.gridColumn7.Caption = "ContactID";
                this.gridColumn7.FieldName = "ContactID";
                this.gridColumn7.Name = "gridColumn" + Guid.NewGuid().ToString();
                this.gridColumn7.Visible = false;

                //
                // gridView1
                //
                this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
                this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                this.gridColumn1,
                this.gridColumn2,
                //this.gridColumn3,
                this.gridColumn4,
                this.gridColumn5,
                this.gridColumn6,
                this.gridColumn7});
                this.gridView1.GridControl = this.gridControl1;
                this.gridView1.Name = "gridView" + Guid.NewGuid().ToString();
                this.gridView1.OptionsFind.AlwaysVisible = false;
                this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
                this.gridView1.OptionsSelection.MultiSelect = true;
                this.gridView1.OptionsView.ShowGroupPanel = false;
                this.gridView1.OptionsView.ColumnAutoWidth = true;
                this.gridView1.DataSourceChanged += new EventHandler(gridView1_DataSourceChanged);
                //
                // gridControl1
                //
                this.gridControl1 = new DevExpress.XtraGrid.GridControl();
                this.gridControl1.LookAndFeel.UseDefaultLookAndFeel = false;
                this.gridControl1.MainView = this.gridView1;
                this.gridControl1.Name = "gridControl" + Guid.NewGuid().ToString();
                this.gridControl1.Size = new System.Drawing.Size(150, 74);
                this.gridControl1.TabIndex = 11;
                this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                this.gridView1});
                SetCurrentAttendies();
                var schedData = new ScheduleData()
                {
                    Required = answeroption.AttendiesRequired
                };
                if (gridView1.GridControl.DataSource != null)
                {
                    List<ContactAttendie> gvDs = gridView1.GridControl.DataSource as List<ContactAttendie>;
                    if (gvDs != null && gvDs.Count > 0)
                        schedData.HasValue = true;
                }
                this.gridView1.Tag = schedData;
                //
                // lciGridControl
                //
                this.lciGridControl = new LayoutControlItem();
                this.lciGridControl.Control = this.gridControl1;
                this.lciGridControl.Name = "layoutControlItem" + Guid.NewGuid().ToString();
                if (!string.IsNullOrEmpty(answeroption.AttendiesLabel))
                    this.lciGridControl.Text = answeroption.AttendiesLabel;
                else
                    this.lciGridControl.Text = "Attendies:";
                this.lciGridControl.TextLocation = DevExpress.Utils.Locations.Top;
                this.lciGridControl.TextSize = new System.Drawing.Size(108, 13);
                this.lciGridControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.lciGridControl.MaxSize = new System.Drawing.Size(0, 90);
                this.lciGridControl.MinSize = new System.Drawing.Size(0, 90);
                this.lciGridControl.Size = new System.Drawing.Size(200, 90);
                this.lciGridControl.ShowInCustomizationForm = false;
                this.layoutControlGroupQuestion1.AddItem(this.lciGridControl);
                #endregion

                //
                // simpleButton1
                //
                this.simpleButton1 = new SimpleButton();
                this.simpleButton1.Name = "simpleButton" + Guid.NewGuid().ToString();
                this.simpleButton1.Size = new System.Drawing.Size(130, 22);
                this.simpleButton1.StyleController = this.StyleController;
                this.simpleButton1.Enabled = false;
                if (!string.IsNullOrEmpty(answeroption.AddCallerButtonLabel))
                    this.simpleButton1.Text = answeroption.AddCallerButtonLabel;
                else
                    this.simpleButton1.Text = "Add Caller";
                this.simpleButton1.Click += new EventHandler(AddCaller_Click);

                // lciAddCaller
                this.lciAddCaller = new LayoutControlItem();
                this.lciAddCaller.Name = "layoutControlItem" + Guid.NewGuid().ToString();
                this.lciAddCaller.Control = this.simpleButton1;
                this.lciAddCaller.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.lciAddCaller.MaxSize = new System.Drawing.Size(80, 24);
                this.lciAddCaller.MinSize = new System.Drawing.Size(80, 24);
                this.lciAddCaller.Size = new System.Drawing.Size(80, 24);
                this.lciAddCaller.TextVisible = false;
                this.lciAddCaller.ShowInCustomizationForm = false;
                this.lciAddCaller.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                this.layoutControlGroupQuestion1.AddItem(this.lciAddCaller);

                //
                // simpleButton2
                //
                this.simpleButton2 = new SimpleButton();
                this.simpleButton2.Name = "simpleButton" + Guid.NewGuid().ToString();
                this.simpleButton2.Size = new System.Drawing.Size(130, 22);
                this.simpleButton2.StyleController = this.StyleController;
                this.simpleButton2.Enabled = false;
                if (!string.IsNullOrEmpty(answeroption.AddAdditionalAttendieButtonLabel))
                    this.simpleButton2.Text = answeroption.AddAdditionalAttendieButtonLabel;
                else
                    this.simpleButton2.Text = "Add Additional";
                this.simpleButton2.Click += new EventHandler(AddAdditional_Click);

                // layoutControlItem1
                this.lciAddAdditional = new LayoutControlItem();
                this.lciAddAdditional.Name = "layoutControlItem" + Guid.NewGuid().ToString();
                this.lciAddAdditional.Control = this.simpleButton2;
                this.lciAddAdditional.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.lciAddAdditional.MaxSize = new System.Drawing.Size(100, 24);
                this.lciAddAdditional.MinSize = new System.Drawing.Size(80, 24);
                this.lciAddAdditional.Size = new System.Drawing.Size(80, 24);
                this.lciAddAdditional.TextVisible = false;
                this.lciAddAdditional.ShowInCustomizationForm = false;
                this.lciAddAdditional.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                this.layoutControlGroupQuestion1.AddItem(this.lciAddAdditional, this.lciAddCaller, DevExpress.XtraLayout.Utils.InsertType.Right);

                //
                // simpleButton3
                //
                this.simpleButton3 = new SimpleButton();
                this.simpleButton3.Name = "simpleButton" + Guid.NewGuid().ToString();
                this.simpleButton3.Size = new System.Drawing.Size(130, 22);
                this.simpleButton3.StyleController = this.StyleController;
                this.simpleButton3.Enabled = false;
                if (!string.IsNullOrEmpty(answeroption.DeleteAttendieButtonLabel))
                    this.simpleButton3.Text = answeroption.DeleteAttendieButtonLabel;
                else
                    this.simpleButton3.Text = "Delete";
                this.simpleButton3.Click += new EventHandler(DeleteAttendie_Click);

                // layoutControlItem2
                this.lciDeleteCaller = new LayoutControlItem();
                this.lciDeleteCaller.Name = "layoutControlItem" + Guid.NewGuid().ToString();
                this.lciDeleteCaller.Control = this.simpleButton3;
                this.lciDeleteCaller.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.lciDeleteCaller.MaxSize = new System.Drawing.Size(70, 24);
                this.lciDeleteCaller.MinSize = new System.Drawing.Size(70, 24);
                this.lciDeleteCaller.Size = new System.Drawing.Size(70, 24);
                this.lciDeleteCaller.TextVisible = false;
                this.lciDeleteCaller.ShowInCustomizationForm = false;
                this.lciDeleteCaller.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                this.layoutControlGroupQuestion1.AddItem(this.lciDeleteCaller, this.lciAddAdditional, DevExpress.XtraLayout.Utils.InsertType.Right);

                // emptySpaceItem1
                this.emptySpaceItem1 = new EmptySpaceItem();
                this.emptySpaceItem1.Name = "emptySpaceItem" + Guid.NewGuid().ToString();
                this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
                this.emptySpaceItem1.MaxSize = new System.Drawing.Size(0, 20);
                this.emptySpaceItem1.MinSize = new System.Drawing.Size(0, 20);
                this.emptySpaceItem1.Size = new System.Drawing.Size(200, 20);
                this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
                this.emptySpaceItem1.ShowInCustomizationForm = false;
                this.emptySpaceItem1.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                this.layoutControlGroupQuestion1.AddItem(this.emptySpaceItem1, this.lciDeleteCaller, DevExpress.XtraLayout.Utils.InsertType.Right);

                #endregion

                #region Other Choices
                idx = 0;
                //EmptySpaceItem esitem = new EmptySpaceItem();
                //esitem.Size = new Size(100, 20);
                //this.layoutControlGroupQuestion1.AddItem(esitem);
                foreach (OtherChoice oChoice in answeroption.OtherChoices)
                {
                    if (oChoice.Enabled)
                    {
                        //if (!string.IsNullOrEmpty(oChoice.TextPrefix)) {
                        //    // simpleLabelItem1
                        //    this.simpleLabelItem1 = new DevExpress.XtraLayout.SimpleLabelItem();

                        //    this.simpleLabelItem1.Name = "simpleLabelItem" + Guid.NewGuid().ToString();
                        //    //this.simpleLabelItem1.ShowInCustomizationForm = false;
                        //    //this.simpleLabelItem1.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
                        //    this.simpleLabelItem1.Text = oChoice.TextPrefix;
                        //    //newSize = new System.Drawing.Size(100, 20);
                        //    newSize = new System.Drawing.Size(20, 20);
                        //    this.simpleLabelItem1.SizeConstraintsType = SizeConstraintsType.Custom;
                        //    this.simpleLabelItem1.MaxSize = newSize;
                        //    this.simpleLabelItem1.MinSize = newSize;
                        //    this.simpleLabelItem1.Size = newSize;
                        //    this.simpleLabelItem1.AppearanceItemCaption.BackColor = System.Drawing.Color.Transparent;
                        //    this.simpleLabelItem1.ShowInCustomizationForm = false;
                        //    this.simpleLabelItem1.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                        //    this.layoutControlGroupQuestion1.AddItem(this.simpleLabelItem1);
                        //} else {
                        //    this.simpleLabelItem1 = null;
                        //}
                        // layoutControlItem1
                        this.lciOtherChoice = new LayoutControlItem();
                        //add textEdit1 to layout
                        this.memoEdit1 = new MemoEdit();
                        this.memoEdit1.Tag = new ScheduleData()
                        {
                            ParentPositionIndex = "IndexPosition" + x.ToString(),
                            PositionIndex = "IndexPosition" + idx.ToString(),
                            ControlContainer = lciOtherChoice,
                            Required = oChoice.Required,
                            HasValue = !string.IsNullOrWhiteSpace(oChoice.DefaultInputValue) ? true : false,
                            ChoiceOption = oChoice
                        };
                        this.memoEdit1.Name = "textEdit" + Guid.NewGuid().ToString();
                        this.memoEdit1.Properties.ScrollBars = System.Windows.Forms.ScrollBars.None;
                        this.memoEdit1.StyleController = this.StyleController;
                        if (oChoice.DefaultInputValue != null)
                        {
                            this.memoEdit1.Text = oChoice.DefaultInputValue.Trim();
                            oChoice.InputValue = oChoice.DefaultInputValue.Trim();
                        }
                        memoEdit1.TextChanged += new EventHandler(memoEdit1_TextChanged);
                        memoEdit1.Resize += new EventHandler(memoEdit1_Resize);
                        memoEdit1.Click += new EventHandler(layoutControlGroupQuestion1_Click);

                        this.lciOtherChoice.Name = "layoutControlItem" + Guid.NewGuid().ToString();
                        this.lciOtherChoice.Control = this.memoEdit1;

                        if (!string.IsNullOrEmpty(oChoice.TextPrefix))
                        {
                            this.lciOtherChoice.Text = oChoice.TextPrefix;
                            this.lciOtherChoice.TextVisible = true;
                            this.lciOtherChoice.TextLocation = DevExpress.Utils.Locations.Top;
                            this.lciOtherChoice.MaxSize = new Size(0, 41);
                            this.lciOtherChoice.MinSize = new Size(0, 41);
                        }
                        else
                        {
                            this.lciOtherChoice.TextVisible = false;
                            this.lciOtherChoice.MaxSize = new Size(0, 24);
                            this.lciOtherChoice.MinSize = new Size(0, 24);
                        }
                        this.lciOtherChoice.SizeConstraintsType = SizeConstraintsType.Custom;
                        this.lciOtherChoice.Click += new EventHandler(layoutControlGroupQuestion1_Click);
                        this.lciOtherChoice.ShowInCustomizationForm = false;
                        this.layoutControlGroupQuestion1.AddItem(this.lciOtherChoice);
                        idx++;
                    }
                }
                #endregion

            }

            #region Footer
            //string prioText = oSettings.Priority;
            //if (oSettings.CustomerOwnership && oSettings.BVOwnership) {
            //    prioText += "(Cust+BV)";
            //} else if (oSettings.CustomerOwnership) {
            //    prioText += "(Cust)";
            //} else if (oSettings.BVOwnership) {
            //    prioText += "(BV)";
            //}
            //if (oSettings.PlotDoneStatus.Trim().ToLower() == "done") {
            //    prioText += " Done";
            //}

            //// simpleLabelItem1 status
            //this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
            //this.emptySpaceItem1.Name = "simpleLabelItem" + Guid.NewGuid().ToString();
            //this.emptySpaceItem1.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            //this.emptySpaceItem1.AppearanceItemCaption.Options.UseTextOptions = true;
            //this.emptySpaceItem1.ShowInCustomizationForm = false;
            //this.emptySpaceItem1.SizeConstraintsType = SizeConstraintsType.Custom;
            //this.emptySpaceItem1.Text = prioText;
            //this.emptySpaceItem1.TextVisible = true;
            //this.emptySpaceItem1.ShowInCustomizationForm = false;
            //this.emptySpaceItem1.Click += new EventHandler(layoutControlGroupQuestion1_Click);
            //this.layoutControlGroupQuestion1.AddItem(this.emptySpaceItem1);

            //if (!string.IsNullOrEmpty(oSettings.QuestionHelp)) {
            //    this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
            //    this.emptySpaceItem2.Name = "simpleLabelItem" + Guid.NewGuid().ToString();
            //    this.emptySpaceItem2.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            //    this.emptySpaceItem2.AppearanceItemCaption.Options.UseTextOptions = true;
            //    this.emptySpaceItem2.ShowInCustomizationForm = false;
            //    this.emptySpaceItem2.Text = "Help";
            //    this.emptySpaceItem2.OptionsToolTip.ToolTip = oSettings.QuestionHelp.Trim();

            //    //apply tooltip controller from parent
            //    //if (this.ToolTipController != null && this.ToolTipController.DefaultController != null) {
            //    //    this.emptySpaceItem2.OptionsToolTip.ToolTipController = ToolTipController.DefaultController;
            //    //}

            //    this.emptySpaceItem2.TextVisible = true;
            //    this.emptySpaceItem2.Size = new Size(50, 20);
            //    this.emptySpaceItem2.MaxSize = new Size(50, 20);
            //    this.emptySpaceItem2.MinSize = new Size(50, 20);
            //    this.emptySpaceItem2.SizeConstraintsType = SizeConstraintsType.Custom;
            //    this.emptySpaceItem2.ShowInCustomizationForm = false;
            //    this.emptySpaceItem2.Click += new EventHandler(layoutControlGroupQuestion1_Click);
            //    this.emptySpaceItem2.AppearanceItemCaption.TextOptions.HAlignment = HorzAlignment.Far;
            //    this.layoutControlGroupQuestion1.AddItem(this.emptySpaceItem2, this.emptySpaceItem1, DevExpress.XtraLayout.Utils.InsertType.Right);
            //}
            #endregion

            this.layoutControlGroupQuestion1.Click += new EventHandler(layoutControlGroupQuestion1_Click);
            this.layoutControlGroupQuestion1.EndUpdate();
            Image bg = BGImage(this);
            if (bg != null)
            {
                this.layoutControlGroupQuestion1.BackgroundImage = bg;
                this.layoutControlGroupQuestion1.BackgroundImageVisible = true;
            }
            if (this.memoEdit1 != null)
                BackColor = this.memoEdit1.BackColor;

            //lookUpEdit2.EditValue = null;
            //lookUpEdit2.ItemIndex = 0;

            this.ControlGroup = this.layoutControlGroupQuestion1;
            this.ControlGroup.Tag = this;
            isLoaded = true;
        }
 /// <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(PickListConfirmationForm));
     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.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.lblPicklistPrintedDate = new DevExpress.XtraEditors.LabelControl();
     this.lblPicklistPrintedBy = new DevExpress.XtraEditors.LabelControl();
     this.lblPicklistNo = new DevExpress.XtraEditors.LabelControl();
     this.lblIssueStatus = new DevExpress.XtraEditors.LabelControl();
     this.lblIssueType = new DevExpress.XtraEditors.LabelControl();
     this.lblFilledBy = new DevExpress.XtraEditors.LabelControl();
     this.lblApprovedDate = new DevExpress.XtraEditors.LabelControl();
     this.lblOwnership = new DevExpress.XtraEditors.LabelControl();
     this.label1 = new System.Windows.Forms.Label();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.lblMode = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.lblPaymentType = new DevExpress.XtraEditors.LabelControl();
     this.lblInstitutionType = new DevExpress.XtraEditors.LabelControl();
     this.lblLetterNum = new DevExpress.XtraEditors.LabelControl();
     this.lblOrderDate = new DevExpress.XtraEditors.LabelControl();
     this.lblWoreda = new DevExpress.XtraEditors.LabelControl();
     this.lblZone = new DevExpress.XtraEditors.LabelControl();
     this.lblRegion = new DevExpress.XtraEditors.LabelControl();
     this.lkStoreType = new DevExpress.XtraEditors.LookUpEdit();
     this.txtFacilityNameFilter = new DevExpress.XtraEditors.TextEdit();
     this.gridUnConfirmed = new DevExpress.XtraGrid.GridControl();
     this.gridUnconfirmedView = 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.btnReturnToApprovalStep = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancelPickList = new DevExpress.XtraEditors.SimpleButton();
     this.btnPrintAndSavePickList = new DevExpress.XtraEditors.SimpleButton();
     this.txtPickListApprovedBy = new DevExpress.XtraEditors.TextEdit();
     this.txtPickListOrderNumber = new DevExpress.XtraEditors.TextEdit();
     this.txtPickListRequestedBy = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.txtPickListFromStore = new DevExpress.XtraEditors.TextEdit();
     this.gridPickListDetail = new DevExpress.XtraGrid.GridControl();
     this.gridPickListView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn75 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn56 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEdit8 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn61 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.columnPalletNumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colConfirmation = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSKU = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn41 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColUnitPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn72 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemButtonEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.editManuf2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.boxSizeLookup = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.layoutControlItem44 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem18 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem20 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem8 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup6 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup16 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.lcUnconfirmedPicklists = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup11 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.HeaderSection = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup7 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem19 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem22 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem27 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem21 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem23 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup5 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem29 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem28 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem25 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem26 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem45 = 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.progressBarControl = new DevExpress.XtraEditors.ProgressBarControl();
     this.bgWorker = new System.ComponentModel.BackgroundWorker();
     ((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.layoutControl2)).BeginInit();
     this.layoutControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkStoreType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFacilityNameFilter.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridUnConfirmed)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridUnconfirmedView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPickListApprovedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPickListOrderNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPickListRequestedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPickListFromStore.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPickListDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPickListView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.editManuf2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.boxSizeLookup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem44)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcUnconfirmedPicklists)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderSection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem45)).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.progressBarControl.Properties)).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;
     //
     // layoutControl2
     //
     this.layoutControl2.AllowCustomizationMenu = false;
     this.layoutControl2.Controls.Add(this.lblPicklistPrintedDate);
     this.layoutControl2.Controls.Add(this.lblPicklistPrintedBy);
     this.layoutControl2.Controls.Add(this.lblPicklistNo);
     this.layoutControl2.Controls.Add(this.lblIssueStatus);
     this.layoutControl2.Controls.Add(this.lblIssueType);
     this.layoutControl2.Controls.Add(this.lblFilledBy);
     this.layoutControl2.Controls.Add(this.lblApprovedDate);
     this.layoutControl2.Controls.Add(this.lblOwnership);
     this.layoutControl2.Controls.Add(this.label1);
     this.layoutControl2.Controls.Add(this.labelControl13);
     this.layoutControl2.Controls.Add(this.labelControl12);
     this.layoutControl2.Controls.Add(this.lblMode);
     this.layoutControl2.Controls.Add(this.labelControl9);
     this.layoutControl2.Controls.Add(this.lblPaymentType);
     this.layoutControl2.Controls.Add(this.lblInstitutionType);
     this.layoutControl2.Controls.Add(this.lblLetterNum);
     this.layoutControl2.Controls.Add(this.lblOrderDate);
     this.layoutControl2.Controls.Add(this.lblWoreda);
     this.layoutControl2.Controls.Add(this.lblZone);
     this.layoutControl2.Controls.Add(this.lblRegion);
     this.layoutControl2.Controls.Add(this.lkStoreType);
     this.layoutControl2.Controls.Add(this.txtFacilityNameFilter);
     this.layoutControl2.Controls.Add(this.gridUnConfirmed);
     this.layoutControl2.Controls.Add(this.btnReturnToApprovalStep);
     this.layoutControl2.Controls.Add(this.btnCancelPickList);
     this.layoutControl2.Controls.Add(this.btnPrintAndSavePickList);
     this.layoutControl2.Controls.Add(this.txtPickListApprovedBy);
     this.layoutControl2.Controls.Add(this.txtPickListOrderNumber);
     this.layoutControl2.Controls.Add(this.txtPickListRequestedBy);
     this.layoutControl2.Controls.Add(this.simpleButton3);
     this.layoutControl2.Controls.Add(this.txtPickListFromStore);
     this.layoutControl2.Controls.Add(this.gridPickListDetail);
     this.layoutControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl2.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem44,
     this.layoutControlItem10,
     this.layoutControlItem9,
     this.layoutControlItem14,
     this.layoutControlItem16,
     this.layoutControlItem17,
     this.layoutControlItem18,
     this.layoutControlItem20});
     this.layoutControl2.Location = new System.Drawing.Point(0, 0);
     this.layoutControl2.Margin = new System.Windows.Forms.Padding(0);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(498, 206, 250, 350);
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(1123, 496);
     this.layoutControl2.TabIndex = 29;
     this.layoutControl2.Text = "layoutControl2";
     //
     // lblPicklistPrintedDate
     //
     this.lblPicklistPrintedDate.Location = new System.Drawing.Point(827, 111);
     this.lblPicklistPrintedDate.Name = "lblPicklistPrintedDate";
     this.lblPicklistPrintedDate.Size = new System.Drawing.Size(109, 16);
     this.lblPicklistPrintedDate.StyleController = this.layoutControl2;
     this.lblPicklistPrintedDate.TabIndex = 63;
     //
     // lblPicklistPrintedBy
     //
     this.lblPicklistPrintedBy.Location = new System.Drawing.Point(827, 131);
     this.lblPicklistPrintedBy.Name = "lblPicklistPrintedBy";
     this.lblPicklistPrintedBy.Size = new System.Drawing.Size(109, 16);
     this.lblPicklistPrintedBy.StyleController = this.layoutControl2;
     this.lblPicklistPrintedBy.TabIndex = 62;
     //
     // lblPicklistNo
     //
     this.lblPicklistNo.Location = new System.Drawing.Point(398, 57);
     this.lblPicklistNo.Name = "lblPicklistNo";
     this.lblPicklistNo.Size = new System.Drawing.Size(186, 16);
     this.lblPicklistNo.StyleController = this.layoutControl2;
     this.lblPicklistNo.TabIndex = 61;
     //
     // lblIssueStatus
     //
     this.lblIssueStatus.Location = new System.Drawing.Point(999, 111);
     this.lblIssueStatus.Name = "lblIssueStatus";
     this.lblIssueStatus.Size = new System.Drawing.Size(106, 16);
     this.lblIssueStatus.StyleController = this.layoutControl2;
     this.lblIssueStatus.TabIndex = 60;
     //
     // lblIssueType
     //
     this.lblIssueType.Location = new System.Drawing.Point(999, 131);
     this.lblIssueType.Name = "lblIssueType";
     this.lblIssueType.Size = new System.Drawing.Size(106, 16);
     this.lblIssueType.StyleController = this.layoutControl2;
     this.lblIssueType.TabIndex = 59;
     //
     // lblFilledBy
     //
     this.lblFilledBy.Location = new System.Drawing.Point(432, 131);
     this.lblFilledBy.Name = "lblFilledBy";
     this.lblFilledBy.Size = new System.Drawing.Size(91, 16);
     this.lblFilledBy.StyleController = this.layoutControl2;
     this.lblFilledBy.TabIndex = 58;
     //
     // lblApprovedDate
     //
     this.lblApprovedDate.Location = new System.Drawing.Point(634, 111);
     this.lblApprovedDate.Name = "lblApprovedDate";
     this.lblApprovedDate.Size = new System.Drawing.Size(83, 16);
     this.lblApprovedDate.StyleController = this.layoutControl2;
     this.lblApprovedDate.TabIndex = 57;
     //
     // lblOwnership
     //
     this.lblOwnership.Location = new System.Drawing.Point(655, 37);
     this.lblOwnership.Name = "lblOwnership";
     this.lblOwnership.Size = new System.Drawing.Size(181, 16);
     this.lblOwnership.StyleController = this.layoutControl2;
     this.lblOwnership.TabIndex = 56;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(4, 472);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(1115, 20);
     this.label1.TabIndex = 55;
     this.label1.Text = "label1";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(634, 131);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(83, 16);
     this.labelControl13.StyleController = this.layoutControl2;
     this.labelControl13.TabIndex = 54;
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(409, 117);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(178, 25);
     this.labelControl12.StyleController = this.layoutControl2;
     this.labelControl12.TabIndex = 53;
     //
     // lblMode
     //
     this.lblMode.Location = new System.Drawing.Point(398, 37);
     this.lblMode.Name = "lblMode";
     this.lblMode.Size = new System.Drawing.Size(186, 16);
     this.lblMode.StyleController = this.layoutControl2;
     this.lblMode.TabIndex = 52;
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(385, 54);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(211, 24);
     this.labelControl9.StyleController = this.layoutControl2;
     this.labelControl9.TabIndex = 50;
     //
     // lblPaymentType
     //
     this.lblPaymentType.Location = new System.Drawing.Point(908, 57);
     this.lblPaymentType.Name = "lblPaymentType";
     this.lblPaymentType.Size = new System.Drawing.Size(197, 16);
     this.lblPaymentType.StyleController = this.layoutControl2;
     this.lblPaymentType.TabIndex = 49;
     //
     // lblInstitutionType
     //
     this.lblInstitutionType.Location = new System.Drawing.Point(908, 37);
     this.lblInstitutionType.Name = "lblInstitutionType";
     this.lblInstitutionType.Size = new System.Drawing.Size(197, 16);
     this.lblInstitutionType.StyleController = this.layoutControl2;
     this.lblInstitutionType.TabIndex = 48;
     //
     // lblLetterNum
     //
     this.lblLetterNum.Location = new System.Drawing.Point(653, 57);
     this.lblLetterNum.Name = "lblLetterNum";
     this.lblLetterNum.Size = new System.Drawing.Size(183, 16);
     this.lblLetterNum.StyleController = this.layoutControl2;
     this.lblLetterNum.TabIndex = 47;
     //
     // lblOrderDate
     //
     this.lblOrderDate.Location = new System.Drawing.Point(432, 111);
     this.lblOrderDate.Name = "lblOrderDate";
     this.lblOrderDate.Size = new System.Drawing.Size(91, 16);
     this.lblOrderDate.StyleController = this.layoutControl2;
     this.lblOrderDate.TabIndex = 46;
     //
     // lblWoreda
     //
     this.lblWoreda.Location = new System.Drawing.Point(398, 77);
     this.lblWoreda.Name = "lblWoreda";
     this.lblWoreda.Size = new System.Drawing.Size(186, 16);
     this.lblWoreda.StyleController = this.layoutControl2;
     this.lblWoreda.TabIndex = 45;
     //
     // lblZone
     //
     this.lblZone.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.lblZone.Location = new System.Drawing.Point(655, 77);
     this.lblZone.Name = "lblZone";
     this.lblZone.Size = new System.Drawing.Size(181, 16);
     this.lblZone.StyleController = this.layoutControl2;
     this.lblZone.TabIndex = 44;
     //
     // lblRegion
     //
     this.lblRegion.Location = new System.Drawing.Point(909, 77);
     this.lblRegion.Name = "lblRegion";
     this.lblRegion.Size = new System.Drawing.Size(196, 16);
     this.lblRegion.StyleController = this.layoutControl2;
     this.lblRegion.TabIndex = 43;
     //
     // lkStoreType
     //
     this.lkStoreType.Location = new System.Drawing.Point(48, 36);
     this.lkStoreType.Name = "lkStoreType";
     this.lkStoreType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkStoreType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TypeName", "Name")});
     this.lkStoreType.Properties.DisplayMember = "TypeName";
     this.lkStoreType.Properties.ShowFooter = false;
     this.lkStoreType.Properties.ShowHeader = false;
     this.lkStoreType.Properties.ValueMember = "ID";
     this.lkStoreType.Size = new System.Drawing.Size(246, 20);
     this.lkStoreType.StyleController = this.layoutControl2;
     this.lkStoreType.TabIndex = 42;
     this.lkStoreType.EditValueChanged += new System.EventHandler(this.lkStoreType_EditValueChanged);
     //
     // txtFacilityNameFilter
     //
     this.txtFacilityNameFilter.Location = new System.Drawing.Point(48, 60);
     this.txtFacilityNameFilter.Name = "txtFacilityNameFilter";
     this.txtFacilityNameFilter.Size = new System.Drawing.Size(246, 20);
     this.txtFacilityNameFilter.StyleController = this.layoutControl2;
     this.txtFacilityNameFilter.TabIndex = 41;
     this.txtFacilityNameFilter.EditValueChanged += new System.EventHandler(this.txtFacilityNameFilter_EditValueChanged);
     //
     // gridUnConfirmed
     //
     this.gridUnConfirmed.Cursor = System.Windows.Forms.Cursors.Default;
     this.gridUnConfirmed.Location = new System.Drawing.Point(5, 96);
     this.gridUnConfirmed.MainView = this.gridUnconfirmedView;
     this.gridUnConfirmed.Name = "gridUnConfirmed";
     this.gridUnConfirmed.Size = new System.Drawing.Size(301, 369);
     this.gridUnConfirmed.TabIndex = 40;
     this.gridUnConfirmed.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridUnconfirmedView});
     this.gridUnConfirmed.Click += new System.EventHandler(this.gridUnConfirmed_Click);
     //
     // gridUnconfirmedView
     //
     this.gridUnconfirmedView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3});
     this.gridUnconfirmedView.GridControl = this.gridUnConfirmed;
     this.gridUnconfirmedView.GroupCount = 1;
     this.gridUnconfirmedView.Name = "gridUnconfirmedView";
     this.gridUnconfirmedView.OptionsBehavior.Editable = false;
     this.gridUnconfirmedView.OptionsCustomization.AllowColumnMoving = false;
     this.gridUnconfirmedView.OptionsCustomization.AllowColumnResizing = false;
     this.gridUnconfirmedView.OptionsCustomization.AllowSort = false;
     this.gridUnconfirmedView.OptionsMenu.EnableColumnMenu = false;
     this.gridUnconfirmedView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridUnconfirmedView.OptionsSelection.UseIndicatorForSelection = false;
     this.gridUnconfirmedView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridUnconfirmedView.OptionsView.ShowGroupPanel = false;
     this.gridUnconfirmedView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn3, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridUnconfirmedView.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.OnApprovedOrderRowClicked);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Ref No";
     this.gridColumn1.FieldName = "RefNo";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.AllowFocus = false;
     this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn1.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn1.OptionsColumn.AllowMove = false;
     this.gridColumn1.OptionsColumn.AllowShowHide = false;
     this.gridColumn1.OptionsColumn.AllowSize = false;
     this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn1.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn1.OptionsFilter.AllowFilter = false;
     this.gridColumn1.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn1.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn1.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn1.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn1.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Requested By";
     this.gridColumn2.FieldName = "RequestedBy";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsColumn.AllowFocus = false;
     this.gridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.OptionsColumn.AllowMove = false;
     this.gridColumn2.OptionsColumn.AllowShowHide = false;
     this.gridColumn2.OptionsColumn.AllowSize = false;
     this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.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;
     this.gridColumn2.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn2.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 159;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Route";
     this.gridColumn3.FieldName = "RouteName";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.AllowFocus = false;
     this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsColumn.AllowMove = false;
     this.gridColumn3.OptionsColumn.AllowShowHide = false;
     this.gridColumn3.OptionsColumn.AllowSize = false;
     this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn3.OptionsFilter.AllowFilter = false;
     this.gridColumn3.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn3.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // btnReturnToApprovalStep
     //
     this.btnReturnToApprovalStep.Image = global::HCMIS.Desktop.Properties.Resources.Undo;
     this.btnReturnToApprovalStep.Location = new System.Drawing.Point(685, 470);
     this.btnReturnToApprovalStep.Name = "btnReturnToApprovalStep";
     this.btnReturnToApprovalStep.Size = new System.Drawing.Size(142, 22);
     this.btnReturnToApprovalStep.StyleController = this.layoutControl2;
     this.btnReturnToApprovalStep.TabIndex = 38;
     this.btnReturnToApprovalStep.Text = "Return to Approval";
     this.btnReturnToApprovalStep.Click += new System.EventHandler(this.btnReturnToApprovalStep_Click);
     //
     // btnCancelPickList
     //
     this.btnCancelPickList.Image = ((System.Drawing.Image)(resources.GetObject("btnCancelPickList.Image")));
     this.btnCancelPickList.Location = new System.Drawing.Point(977, 470);
     this.btnCancelPickList.Name = "btnCancelPickList";
     this.btnCancelPickList.Size = new System.Drawing.Size(142, 22);
     this.btnCancelPickList.StyleController = this.layoutControl2;
     this.btnCancelPickList.TabIndex = 32;
     this.btnCancelPickList.Text = "Cancel";
     this.btnCancelPickList.Click += new System.EventHandler(this.btnCancelPickList_Click);
     //
     // btnPrintAndSavePickList
     //
     this.btnPrintAndSavePickList.Image = ((System.Drawing.Image)(resources.GetObject("btnPrintAndSavePickList.Image")));
     this.btnPrintAndSavePickList.Location = new System.Drawing.Point(831, 470);
     this.btnPrintAndSavePickList.Name = "btnPrintAndSavePickList";
     this.btnPrintAndSavePickList.Size = new System.Drawing.Size(142, 22);
     this.btnPrintAndSavePickList.StyleController = this.layoutControl2;
     this.btnPrintAndSavePickList.TabIndex = 31;
     this.btnPrintAndSavePickList.Text = "Print and Save";
     this.btnPrintAndSavePickList.Click += new System.EventHandler(this.SavePickListItems);
     //
     // txtPickListApprovedBy
     //
     this.txtPickListApprovedBy.Enabled = false;
     this.txtPickListApprovedBy.Location = new System.Drawing.Point(727, 59);
     this.txtPickListApprovedBy.Name = "txtPickListApprovedBy";
     this.txtPickListApprovedBy.Size = new System.Drawing.Size(152, 20);
     this.txtPickListApprovedBy.StyleController = this.layoutControl2;
     this.txtPickListApprovedBy.TabIndex = 30;
     //
     // txtPickListOrderNumber
     //
     this.txtPickListOrderNumber.Enabled = false;
     this.txtPickListOrderNumber.Location = new System.Drawing.Point(733, 35);
     this.txtPickListOrderNumber.Name = "txtPickListOrderNumber";
     this.txtPickListOrderNumber.Size = new System.Drawing.Size(146, 20);
     this.txtPickListOrderNumber.StyleController = this.layoutControl2;
     this.txtPickListOrderNumber.TabIndex = 28;
     //
     // txtPickListRequestedBy
     //
     this.txtPickListRequestedBy.Enabled = false;
     this.txtPickListRequestedBy.Location = new System.Drawing.Point(320, 35);
     this.txtPickListRequestedBy.Name = "txtPickListRequestedBy";
     this.txtPickListRequestedBy.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.txtPickListRequestedBy.Properties.Appearance.Options.UseFont = true;
     this.txtPickListRequestedBy.Size = new System.Drawing.Size(92, 22);
     this.txtPickListRequestedBy.StyleController = this.layoutControl2;
     this.txtPickListRequestedBy.TabIndex = 5;
     //
     // simpleButton3
     //
     this.simpleButton3.Enabled = false;
     this.simpleButton3.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton3.Image")));
     this.simpleButton3.Location = new System.Drawing.Point(810, 519);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(93, 22);
     this.simpleButton3.StyleController = this.layoutControl2;
     this.simpleButton3.TabIndex = 31;
     this.simpleButton3.Text = "Print";
     this.simpleButton3.Click += new System.EventHandler(this.PrintPicklistItems);
     //
     // txtPickListFromStore
     //
     this.txtPickListFromStore.Enabled = false;
     this.txtPickListFromStore.Location = new System.Drawing.Point(313, 60);
     this.txtPickListFromStore.Name = "txtPickListFromStore";
     this.txtPickListFromStore.Size = new System.Drawing.Size(155, 20);
     this.txtPickListFromStore.StyleController = this.layoutControl2;
     this.txtPickListFromStore.TabIndex = 4;
     //
     // gridPickListDetail
     //
     this.gridPickListDetail.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.gridPickListDetail.Cursor = System.Windows.Forms.Cursors.Default;
     this.gridPickListDetail.Location = new System.Drawing.Point(319, 165);
     this.gridPickListDetail.MainView = this.gridPickListView;
     this.gridPickListDetail.Name = "gridPickListDetail";
     this.gridPickListDetail.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemDateEdit2,
     this.repositoryItemButtonEdit3,
     this.editManuf2,
     this.repositoryItemSpinEdit3,
     this.repositoryItemButtonEdit8,
     this.boxSizeLookup,
     this.repositoryItemTextEdit1,
     this.repositoryItemMemoEdit1});
     this.gridPickListDetail.Size = new System.Drawing.Size(800, 301);
     this.gridPickListDetail.TabIndex = 13;
     this.gridPickListDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridPickListView});
     this.gridPickListDetail.Click += new System.EventHandler(this.gridPickListDetail_Click);
     //
     // gridPickListView
     //
     this.gridPickListView.Appearance.GroupFooter.BackColor = System.Drawing.Color.White;
     this.gridPickListView.Appearance.GroupFooter.BackColor2 = System.Drawing.Color.White;
     this.gridPickListView.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.gridPickListView.Appearance.GroupFooter.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.gridPickListView.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridPickListView.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridPickListView.Appearance.GroupFooter.Options.UseTextOptions = true;
     this.gridPickListView.Appearance.GroupFooter.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridPickListView.AppearancePrint.FilterPanel.BackColor = System.Drawing.Color.White;
     this.gridPickListView.AppearancePrint.FilterPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.gridPickListView.AppearancePrint.FilterPanel.Options.UseBackColor = true;
     this.gridPickListView.AppearancePrint.FilterPanel.Options.UseForeColor = true;
     this.gridPickListView.AppearancePrint.FooterPanel.BackColor = System.Drawing.Color.White;
     this.gridPickListView.AppearancePrint.FooterPanel.Options.UseBackColor = true;
     this.gridPickListView.AppearancePrint.GroupFooter.BackColor = System.Drawing.Color.White;
     this.gridPickListView.AppearancePrint.GroupFooter.Options.UseBackColor = true;
     this.gridPickListView.AppearancePrint.GroupRow.BackColor = System.Drawing.Color.White;
     this.gridPickListView.AppearancePrint.GroupRow.Options.UseBackColor = true;
     this.gridPickListView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn75,
     this.gridColumn24,
     this.gridColumn25,
     this.gridColumn27,
     this.gridColumn26,
     this.gridColumn31,
     this.gridColumn33,
     this.gridColumn56,
     this.gridColumn61,
     this.gridColumn44,
     this.gridColumn45,
     this.columnPalletNumber,
     this.colPrice,
     this.gridColumn51,
     this.colConfirmation,
     this.colSKU,
     this.gridColumn41,
     this.gridColUnitPrice,
     this.gridColumn72});
     this.gridPickListView.GridControl = this.gridPickListDetail;
     this.gridPickListView.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "QtyInSKU", this.colSKU, "{0:#,###}")});
     this.gridPickListView.Name = "gridPickListView";
     this.gridPickListView.OptionsBehavior.AutoExpandAllGroups = true;
     this.gridPickListView.OptionsBehavior.Editable = false;
     this.gridPickListView.OptionsCustomization.AllowColumnMoving = false;
     this.gridPickListView.OptionsCustomization.AllowColumnResizing = false;
     this.gridPickListView.OptionsDetail.AllowExpandEmptyDetails = true;
     this.gridPickListView.OptionsMenu.EnableColumnMenu = false;
     this.gridPickListView.OptionsPrint.ExpandAllDetails = true;
     this.gridPickListView.OptionsView.GroupDrawMode = DevExpress.XtraGrid.Views.Grid.GroupDrawMode.Office2003;
     this.gridPickListView.OptionsView.RowAutoHeight = true;
     this.gridPickListView.OptionsView.ShowFooter = true;
     this.gridPickListView.OptionsView.ShowGroupedColumns = true;
     this.gridPickListView.OptionsView.ShowGroupPanel = false;
     this.gridPickListView.OptionsView.ShowIndicator = false;
     //
     // gridColumn75
     //
     this.gridColumn75.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn75.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn75.Caption = "Unit";
     this.gridColumn75.FieldName = "Unit";
     this.gridColumn75.Name = "gridColumn75";
     this.gridColumn75.OptionsColumn.AllowEdit = false;
     this.gridColumn75.OptionsColumn.AllowFocus = false;
     this.gridColumn75.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn75.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn75.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn75.OptionsColumn.AllowMove = false;
     this.gridColumn75.OptionsColumn.AllowShowHide = false;
     this.gridColumn75.OptionsColumn.AllowSize = false;
     this.gridColumn75.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn75.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn75.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn75.OptionsColumn.TabStop = false;
     this.gridColumn75.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn75.OptionsFilter.AllowFilter = false;
     this.gridColumn75.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn75.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn75.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn75.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn75.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn75.Visible = true;
     this.gridColumn75.VisibleIndex = 2;
     this.gridColumn75.Width = 73;
     //
     // gridColumn24
     //
     this.gridColumn24.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn24.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn24.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn24.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn24.Caption = "Item";
     this.gridColumn24.ColumnEdit = this.repositoryItemMemoEdit1;
     this.gridColumn24.FieldName = "FullItemName";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.OptionsColumn.AllowEdit = false;
     this.gridColumn24.OptionsColumn.AllowFocus = false;
     this.gridColumn24.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn24.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsColumn.AllowMove = false;
     this.gridColumn24.OptionsColumn.AllowShowHide = false;
     this.gridColumn24.OptionsColumn.AllowSize = false;
     this.gridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn24.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn24.OptionsColumn.TabStop = false;
     this.gridColumn24.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn24.OptionsFilter.AllowFilter = false;
     this.gridColumn24.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn24.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 1;
     this.gridColumn24.Width = 194;
     //
     // repositoryItemMemoEdit1
     //
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     //
     // gridColumn25
     //
     this.gridColumn25.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn25.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn25.Caption = "Manufacturer";
     this.gridColumn25.FieldName = "ManufacturerName";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.OptionsColumn.AllowEdit = false;
     this.gridColumn25.OptionsColumn.AllowFocus = false;
     this.gridColumn25.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn25.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsColumn.AllowMove = false;
     this.gridColumn25.OptionsColumn.AllowShowHide = false;
     this.gridColumn25.OptionsColumn.AllowSize = false;
     this.gridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn25.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn25.OptionsColumn.TabStop = false;
     this.gridColumn25.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn25.OptionsFilter.AllowFilter = false;
     this.gridColumn25.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn25.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 4;
     this.gridColumn25.Width = 126;
     //
     // gridColumn27
     //
     this.gridColumn27.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn27.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn27.Caption = "Pack Size";
     this.gridColumn27.FieldName = "BoxSizeDisplay";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.OptionsColumn.AllowEdit = false;
     this.gridColumn27.OptionsColumn.AllowFocus = false;
     this.gridColumn27.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn27.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn27.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn27.OptionsColumn.AllowMove = false;
     this.gridColumn27.OptionsColumn.AllowShowHide = false;
     this.gridColumn27.OptionsColumn.AllowSize = false;
     this.gridColumn27.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn27.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn27.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn27.OptionsColumn.TabStop = false;
     this.gridColumn27.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn27.OptionsFilter.AllowFilter = false;
     this.gridColumn27.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn27.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn27.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn27.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn27.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn27.Width = 98;
     //
     // gridColumn26
     //
     this.gridColumn26.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.gridColumn26.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn26.Caption = "Pack Qty";
     this.gridColumn26.ColumnEdit = this.repositoryItemSpinEdit3;
     this.gridColumn26.DisplayFormat.FormatString = "#,##0";
     this.gridColumn26.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn26.FieldName = "Pack";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.OptionsColumn.AllowEdit = false;
     this.gridColumn26.OptionsColumn.AllowFocus = false;
     this.gridColumn26.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn26.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn26.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn26.OptionsColumn.AllowMove = false;
     this.gridColumn26.OptionsColumn.AllowShowHide = false;
     this.gridColumn26.OptionsColumn.AllowSize = false;
     this.gridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn26.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn26.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn26.OptionsColumn.TabStop = false;
     this.gridColumn26.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn26.OptionsFilter.AllowFilter = false;
     this.gridColumn26.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn26.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn26.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn26.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn26.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn26.Width = 50;
     //
     // repositoryItemSpinEdit3
     //
     this.repositoryItemSpinEdit3.AutoHeight = false;
     this.repositoryItemSpinEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit3.Name = "repositoryItemSpinEdit3";
     //
     // gridColumn31
     //
     this.gridColumn31.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn31.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn31.Caption = "Batch";
     this.gridColumn31.FieldName = "BatchNo";
     this.gridColumn31.Name = "gridColumn31";
     this.gridColumn31.OptionsColumn.AllowEdit = false;
     this.gridColumn31.OptionsColumn.AllowFocus = false;
     this.gridColumn31.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn31.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn31.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn31.OptionsColumn.AllowMove = false;
     this.gridColumn31.OptionsColumn.AllowShowHide = false;
     this.gridColumn31.OptionsColumn.AllowSize = false;
     this.gridColumn31.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn31.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn31.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn31.OptionsColumn.TabStop = false;
     this.gridColumn31.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn31.OptionsFilter.AllowFilter = false;
     this.gridColumn31.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn31.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn31.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn31.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn31.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn31.Visible = true;
     this.gridColumn31.VisibleIndex = 5;
     this.gridColumn31.Width = 64;
     //
     // gridColumn33
     //
     this.gridColumn33.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn33.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn33.Caption = "Expiry Date";
     this.gridColumn33.DisplayFormat.FormatString = "MMM/yyyy";
     this.gridColumn33.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn33.FieldName = "ExpDate";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.OptionsColumn.AllowEdit = false;
     this.gridColumn33.OptionsColumn.AllowFocus = false;
     this.gridColumn33.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn33.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn33.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn33.OptionsColumn.AllowMove = false;
     this.gridColumn33.OptionsColumn.AllowShowHide = false;
     this.gridColumn33.OptionsColumn.AllowSize = false;
     this.gridColumn33.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn33.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn33.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn33.OptionsColumn.TabStop = false;
     this.gridColumn33.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn33.OptionsFilter.AllowFilter = false;
     this.gridColumn33.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn33.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn33.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn33.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn33.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 6;
     this.gridColumn33.Width = 66;
     //
     // gridColumn56
     //
     this.gridColumn56.ColumnEdit = this.repositoryItemButtonEdit8;
     this.gridColumn56.Name = "gridColumn56";
     this.gridColumn56.OptionsColumn.AllowEdit = false;
     this.gridColumn56.OptionsColumn.AllowFocus = false;
     this.gridColumn56.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn56.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn56.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn56.OptionsColumn.AllowMove = false;
     this.gridColumn56.OptionsColumn.AllowShowHide = false;
     this.gridColumn56.OptionsColumn.AllowSize = false;
     this.gridColumn56.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn56.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn56.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn56.OptionsColumn.TabStop = false;
     this.gridColumn56.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn56.OptionsFilter.AllowFilter = false;
     this.gridColumn56.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn56.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn56.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn56.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn56.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn56.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.gridColumn56.Width = 25;
     //
     // repositoryItemButtonEdit8
     //
     this.repositoryItemButtonEdit8.AutoHeight = false;
     this.repositoryItemButtonEdit8.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemButtonEdit8.Name = "repositoryItemButtonEdit8";
     this.repositoryItemButtonEdit8.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumn61
     //
     this.gridColumn61.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn61.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn61.Caption = "Volume";
     this.gridColumn61.FieldName = "Volume";
     this.gridColumn61.Name = "gridColumn61";
     this.gridColumn61.OptionsColumn.AllowEdit = false;
     this.gridColumn61.OptionsColumn.AllowFocus = false;
     this.gridColumn61.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn61.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn61.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn61.OptionsColumn.AllowMove = false;
     this.gridColumn61.OptionsColumn.AllowShowHide = false;
     this.gridColumn61.OptionsColumn.AllowSize = false;
     this.gridColumn61.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn61.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn61.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn61.OptionsColumn.TabStop = false;
     this.gridColumn61.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn61.OptionsFilter.AllowFilter = false;
     this.gridColumn61.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn61.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn61.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn61.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn61.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColumn44
     //
     this.gridColumn44.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn44.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn44.Caption = "Qty Per Pack";
     this.gridColumn44.DisplayFormat.FormatString = "#,##0";
     this.gridColumn44.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn44.FieldName = "QtyPerPack";
     this.gridColumn44.Name = "gridColumn44";
     this.gridColumn44.OptionsColumn.AllowEdit = false;
     this.gridColumn44.OptionsColumn.AllowFocus = false;
     this.gridColumn44.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn44.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn44.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn44.OptionsColumn.AllowMove = false;
     this.gridColumn44.OptionsColumn.AllowShowHide = false;
     this.gridColumn44.OptionsColumn.AllowSize = false;
     this.gridColumn44.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn44.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn44.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn44.OptionsColumn.TabStop = false;
     this.gridColumn44.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn44.OptionsFilter.AllowFilter = false;
     this.gridColumn44.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn44.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn44.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn44.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn44.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn44.Width = 106;
     //
     // gridColumn45
     //
     this.gridColumn45.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn45.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn45.Caption = "Qty in BU";
     this.gridColumn45.DisplayFormat.FormatString = "#,##0";
     this.gridColumn45.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn45.FieldName = "QtyInBU";
     this.gridColumn45.GroupFormat.FormatString = "#,###";
     this.gridColumn45.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn45.Name = "gridColumn45";
     this.gridColumn45.OptionsColumn.AllowEdit = false;
     this.gridColumn45.OptionsColumn.AllowFocus = false;
     this.gridColumn45.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn45.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn45.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn45.OptionsColumn.AllowMove = false;
     this.gridColumn45.OptionsColumn.AllowShowHide = false;
     this.gridColumn45.OptionsColumn.AllowSize = false;
     this.gridColumn45.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn45.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn45.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn45.OptionsColumn.TabStop = false;
     this.gridColumn45.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn45.OptionsFilter.AllowFilter = false;
     this.gridColumn45.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn45.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn45.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn45.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn45.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn45.Width = 49;
     //
     // columnPalletNumber
     //
     this.columnPalletNumber.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.columnPalletNumber.AppearanceCell.Options.UseBackColor = true;
     this.columnPalletNumber.Caption = "Location";
     this.columnPalletNumber.FieldName = "PalletLocation";
     this.columnPalletNumber.Name = "columnPalletNumber";
     this.columnPalletNumber.OptionsColumn.AllowEdit = false;
     this.columnPalletNumber.OptionsColumn.AllowFocus = false;
     this.columnPalletNumber.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.columnPalletNumber.OptionsColumn.AllowIncrementalSearch = false;
     this.columnPalletNumber.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.columnPalletNumber.OptionsColumn.AllowMove = false;
     this.columnPalletNumber.OptionsColumn.AllowShowHide = false;
     this.columnPalletNumber.OptionsColumn.AllowSize = false;
     this.columnPalletNumber.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.columnPalletNumber.OptionsColumn.ShowInCustomizationForm = false;
     this.columnPalletNumber.OptionsColumn.ShowInExpressionEditor = false;
     this.columnPalletNumber.OptionsColumn.TabStop = false;
     this.columnPalletNumber.OptionsFilter.AllowAutoFilter = false;
     this.columnPalletNumber.OptionsFilter.AllowFilter = false;
     this.columnPalletNumber.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.columnPalletNumber.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.columnPalletNumber.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.columnPalletNumber.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.columnPalletNumber.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.columnPalletNumber.Visible = true;
     this.columnPalletNumber.VisibleIndex = 3;
     this.columnPalletNumber.Width = 100;
     //
     // colPrice
     //
     this.colPrice.Caption = "Price";
     this.colPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colPrice.FieldName = "CalculatedCost";
     this.colPrice.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colPrice.Name = "colPrice";
     this.colPrice.OptionsColumn.AllowEdit = false;
     this.colPrice.OptionsColumn.AllowFocus = false;
     this.colPrice.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colPrice.OptionsColumn.AllowIncrementalSearch = false;
     this.colPrice.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colPrice.OptionsColumn.AllowMove = false;
     this.colPrice.OptionsColumn.AllowShowHide = false;
     this.colPrice.OptionsColumn.AllowSize = false;
     this.colPrice.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colPrice.OptionsColumn.ShowInCustomizationForm = false;
     this.colPrice.OptionsColumn.ShowInExpressionEditor = false;
     this.colPrice.OptionsColumn.TabStop = false;
     this.colPrice.OptionsFilter.AllowAutoFilter = false;
     this.colPrice.OptionsFilter.AllowFilter = false;
     this.colPrice.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colPrice.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colPrice.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colPrice.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colPrice.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.colPrice.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Cost", "{0:c2}")});
     this.colPrice.Visible = true;
     this.colPrice.VisibleIndex = 9;
     this.colPrice.Width = 63;
     //
     // gridColumn51
     //
     this.gridColumn51.Caption = "Pallet No";
     this.gridColumn51.FieldName = "PalletNo";
     this.gridColumn51.Name = "gridColumn51";
     this.gridColumn51.OptionsColumn.AllowEdit = false;
     this.gridColumn51.OptionsColumn.AllowFocus = false;
     this.gridColumn51.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn51.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn51.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn51.OptionsColumn.AllowMove = false;
     this.gridColumn51.OptionsColumn.AllowShowHide = false;
     this.gridColumn51.OptionsColumn.AllowSize = false;
     this.gridColumn51.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn51.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn51.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn51.OptionsColumn.TabStop = false;
     this.gridColumn51.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn51.OptionsFilter.AllowFilter = false;
     this.gridColumn51.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn51.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn51.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn51.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn51.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn51.Width = 50;
     //
     // colConfirmation
     //
     this.colConfirmation.Caption = "Confirmation";
     this.colConfirmation.Name = "colConfirmation";
     this.colConfirmation.OptionsColumn.AllowEdit = false;
     this.colConfirmation.OptionsColumn.AllowFocus = false;
     this.colConfirmation.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colConfirmation.OptionsColumn.AllowIncrementalSearch = false;
     this.colConfirmation.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colConfirmation.OptionsColumn.AllowMove = false;
     this.colConfirmation.OptionsColumn.AllowShowHide = false;
     this.colConfirmation.OptionsColumn.AllowSize = false;
     this.colConfirmation.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colConfirmation.OptionsColumn.ShowInCustomizationForm = false;
     this.colConfirmation.OptionsColumn.ShowInExpressionEditor = false;
     this.colConfirmation.OptionsColumn.TabStop = false;
     this.colConfirmation.OptionsFilter.AllowAutoFilter = false;
     this.colConfirmation.OptionsFilter.AllowFilter = false;
     this.colConfirmation.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colConfirmation.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colConfirmation.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colConfirmation.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colConfirmation.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     //
     // colSKU
     //
     this.colSKU.Caption = "Qty";
     this.colSKU.DisplayFormat.FormatString = "#,###.##";
     this.colSKU.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colSKU.FieldName = "QtyInSKU";
     this.colSKU.Name = "colSKU";
     this.colSKU.OptionsColumn.AllowEdit = false;
     this.colSKU.OptionsColumn.AllowFocus = false;
     this.colSKU.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colSKU.OptionsColumn.AllowIncrementalSearch = false;
     this.colSKU.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colSKU.OptionsColumn.AllowMove = false;
     this.colSKU.OptionsColumn.AllowShowHide = false;
     this.colSKU.OptionsColumn.AllowSize = false;
     this.colSKU.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colSKU.OptionsColumn.ShowInCustomizationForm = false;
     this.colSKU.OptionsColumn.ShowInExpressionEditor = false;
     this.colSKU.OptionsColumn.TabStop = false;
     this.colSKU.OptionsFilter.AllowAutoFilter = false;
     this.colSKU.OptionsFilter.AllowFilter = false;
     this.colSKU.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colSKU.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colSKU.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colSKU.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colSKU.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.colSKU.Visible = true;
     this.colSKU.VisibleIndex = 7;
     this.colSKU.Width = 63;
     //
     // gridColumn41
     //
     this.gridColumn41.Caption = "Units";
     this.gridColumn41.DisplayFormat.FormatString = "#,###";
     this.gridColumn41.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn41.FieldName = "UnitsInSKU";
     this.gridColumn41.Name = "gridColumn41";
     this.gridColumn41.OptionsColumn.AllowEdit = false;
     this.gridColumn41.OptionsColumn.AllowFocus = false;
     this.gridColumn41.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn41.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn41.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn41.OptionsColumn.AllowMove = false;
     this.gridColumn41.OptionsColumn.AllowShowHide = false;
     this.gridColumn41.OptionsColumn.AllowSize = false;
     this.gridColumn41.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn41.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn41.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn41.OptionsColumn.TabStop = false;
     this.gridColumn41.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn41.OptionsFilter.AllowFilter = false;
     this.gridColumn41.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn41.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn41.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn41.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn41.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColUnitPrice
     //
     this.gridColUnitPrice.Caption = "Unit Price";
     this.gridColUnitPrice.DisplayFormat.FormatString = "#,###.#0";
     this.gridColUnitPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColUnitPrice.FieldName = "UnitPrice";
     this.gridColUnitPrice.Name = "gridColUnitPrice";
     this.gridColUnitPrice.OptionsColumn.AllowEdit = false;
     this.gridColUnitPrice.OptionsColumn.AllowFocus = false;
     this.gridColUnitPrice.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColUnitPrice.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColUnitPrice.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColUnitPrice.OptionsColumn.AllowMove = false;
     this.gridColUnitPrice.OptionsColumn.AllowShowHide = false;
     this.gridColUnitPrice.OptionsColumn.AllowSize = false;
     this.gridColUnitPrice.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColUnitPrice.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColUnitPrice.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColUnitPrice.OptionsColumn.TabStop = false;
     this.gridColUnitPrice.OptionsFilter.AllowAutoFilter = false;
     this.gridColUnitPrice.OptionsFilter.AllowFilter = false;
     this.gridColUnitPrice.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColUnitPrice.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColUnitPrice.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColUnitPrice.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColUnitPrice.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColUnitPrice.Visible = true;
     this.gridColUnitPrice.VisibleIndex = 8;
     this.gridColUnitPrice.Width = 63;
     //
     // gridColumn72
     //
     this.gridColumn72.Caption = "No";
     this.gridColumn72.FieldName = "LineNum";
     this.gridColumn72.Name = "gridColumn72";
     this.gridColumn72.OptionsColumn.AllowEdit = false;
     this.gridColumn72.OptionsColumn.AllowFocus = false;
     this.gridColumn72.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn72.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn72.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn72.OptionsColumn.AllowMove = false;
     this.gridColumn72.OptionsColumn.AllowShowHide = false;
     this.gridColumn72.OptionsColumn.AllowSize = false;
     this.gridColumn72.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn72.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn72.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn72.OptionsColumn.TabStop = false;
     this.gridColumn72.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn72.OptionsFilter.AllowFilter = false;
     this.gridColumn72.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn72.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn72.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn72.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn72.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn72.Visible = true;
     this.gridColumn72.VisibleIndex = 0;
     this.gridColumn72.Width = 30;
     //
     // repositoryItemDateEdit2
     //
     this.repositoryItemDateEdit2.AutoHeight = false;
     this.repositoryItemDateEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit2.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemDateEdit2.EditFormat.FormatString = "mm-DD-YYYY";
     this.repositoryItemDateEdit2.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit2.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.DisplayText;
     this.repositoryItemDateEdit2.Name = "repositoryItemDateEdit2";
     //
     // repositoryItemButtonEdit3
     //
     this.repositoryItemButtonEdit3.AutoHeight = false;
     this.repositoryItemButtonEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemButtonEdit3.Name = "repositoryItemButtonEdit3";
     this.repositoryItemButtonEdit3.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // editManuf2
     //
     this.editManuf2.AutoHeight = false;
     this.editManuf2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph)});
     this.editManuf2.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.editManuf2.DisplayMember = "Name";
     this.editManuf2.Name = "editManuf2";
     this.editManuf2.NullText = "";
     this.editManuf2.SearchMode = DevExpress.XtraEditors.Controls.SearchMode.OnlyInPopup;
     this.editManuf2.ShowHeader = false;
     this.editManuf2.ValueMember = "ID";
     //
     // boxSizeLookup
     //
     this.boxSizeLookup.AutoHeight = false;
     this.boxSizeLookup.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.boxSizeLookup.DisplayMember = "Name";
     this.boxSizeLookup.Name = "boxSizeLookup";
     this.boxSizeLookup.ValueMember = "ID";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.Appearance.Options.UseTextOptions = true;
     this.repositoryItemTextEdit1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
     this.repositoryItemTextEdit1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.repositoryItemTextEdit1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // layoutControlItem44
     //
     this.layoutControlItem44.Control = this.simpleButton3;
     this.layoutControlItem44.CustomizationFormText = "layoutControlItem44";
     this.layoutControlItem44.Location = new System.Drawing.Point(806, 515);
     this.layoutControlItem44.Name = "layoutControlItem44";
     this.layoutControlItem44.Size = new System.Drawing.Size(97, 26);
     this.layoutControlItem44.Text = "layoutControlItem44";
     this.layoutControlItem44.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem44.TextToControlDistance = 0;
     this.layoutControlItem44.TextVisible = false;
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.Control = this.txtPickListRequestedBy;
     this.layoutControlItem10.CustomizationFormText = "Requested By";
     this.layoutControlItem10.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(138, 26);
     this.layoutControlItem10.Text = "Facility:";
     this.layoutControlItem10.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem10.TextSize = new System.Drawing.Size(37, 13);
     this.layoutControlItem10.TextToControlDistance = 5;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.txtPickListFromStore;
     this.layoutControlItem9.CustomizationFormText = "From Store";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 25);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(194, 24);
     this.layoutControlItem9.Text = "Mode:";
     this.layoutControlItem9.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem9.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem9.TextToControlDistance = 5;
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.Control = this.txtPickListOrderNumber;
     this.layoutControlItem14.CustomizationFormText = "Order Number";
     this.layoutControlItem14.Location = new System.Drawing.Point(378, 0);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(227, 24);
     this.layoutControlItem14.Text = "Order Number:";
     this.layoutControlItem14.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem14.TextSize = new System.Drawing.Size(72, 13);
     this.layoutControlItem14.TextToControlDistance = 5;
     //
     // layoutControlItem16
     //
     this.layoutControlItem16.Control = this.txtPickListApprovedBy;
     this.layoutControlItem16.CustomizationFormText = "Approved By";
     this.layoutControlItem16.Location = new System.Drawing.Point(378, 24);
     this.layoutControlItem16.Name = "layoutControlItem16";
     this.layoutControlItem16.Size = new System.Drawing.Size(227, 24);
     this.layoutControlItem16.Text = "Approved By:";
     this.layoutControlItem16.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem16.TextSize = new System.Drawing.Size(66, 13);
     this.layoutControlItem16.TextToControlDistance = 5;
     //
     // layoutControlItem17
     //
     this.layoutControlItem17.Control = this.labelControl9;
     this.layoutControlItem17.CustomizationFormText = "Facility:";
     this.layoutControlItem17.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem17.MaxSize = new System.Drawing.Size(0, 28);
     this.layoutControlItem17.MinSize = new System.Drawing.Size(46, 28);
     this.layoutControlItem17.Name = "layoutControlItem17";
     this.layoutControlItem17.Size = new System.Drawing.Size(257, 28);
     this.layoutControlItem17.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem17.Text = "Facility:";
     this.layoutControlItem17.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem17.TextSize = new System.Drawing.Size(37, 13);
     this.layoutControlItem17.TextToControlDistance = 5;
     //
     // layoutControlItem18
     //
     this.layoutControlItem18.Control = this.label1;
     this.layoutControlItem18.CustomizationFormText = "layoutControlItem18";
     this.layoutControlItem18.Location = new System.Drawing.Point(0, 468);
     this.layoutControlItem18.Name = "layoutControlItem18";
     this.layoutControlItem18.Size = new System.Drawing.Size(1119, 24);
     this.layoutControlItem18.Text = "layoutControlItem18";
     this.layoutControlItem18.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem18.TextToControlDistance = 0;
     this.layoutControlItem18.TextVisible = false;
     //
     // layoutControlItem20
     //
     this.layoutControlItem20.Control = this.labelControl12;
     this.layoutControlItem20.CustomizationFormText = "Order Number:";
     this.layoutControlItem20.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem20.MaxSize = new System.Drawing.Size(0, 29);
     this.layoutControlItem20.MinSize = new System.Drawing.Size(77, 29);
     this.layoutControlItem20.Name = "layoutControlItem20";
     this.layoutControlItem20.Size = new System.Drawing.Size(255, 29);
     this.layoutControlItem20.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem20.Text = "Order Number:";
     this.layoutControlItem20.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem20.TextSize = new System.Drawing.Size(72, 13);
     this.layoutControlItem20.TextToControlDistance = 1;
     //
     // 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.emptySpaceItem8,
     this.layoutControlGroup6,
     this.layoutControlItem6,
     this.layoutControlItem7,
     this.layoutControlItem45});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "Root";
     this.layoutControlGroup2.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutControlGroup2.Size = new System.Drawing.Size(1123, 496);
     this.layoutControlGroup2.Text = "Root";
     this.layoutControlGroup2.TextVisible = false;
     //
     // emptySpaceItem8
     //
     this.emptySpaceItem8.AllowHotTrack = false;
     this.emptySpaceItem8.CustomizationFormText = "emptySpaceItem8";
     this.emptySpaceItem8.Location = new System.Drawing.Point(0, 466);
     this.emptySpaceItem8.Name = "emptySpaceItem8";
     this.emptySpaceItem8.Size = new System.Drawing.Size(681, 26);
     this.emptySpaceItem8.Text = "emptySpaceItem8";
     this.emptySpaceItem8.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup6
     //
     this.layoutControlGroup6.CustomizationFormText = "Pick List";
     this.layoutControlGroup6.GroupBordersVisible = false;
     this.layoutControlGroup6.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem11,
     this.layoutControlGroup16,
     this.HeaderSection,
     this.emptySpaceItem1});
     this.layoutControlGroup6.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup6.Name = "layoutControlGroup6";
     this.layoutControlGroup6.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup6.Size = new System.Drawing.Size(1119, 466);
     this.layoutControlGroup6.Text = "Pick List";
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.gridPickListDetail;
     this.layoutControlItem11.CustomizationFormText = "layoutControlItem11";
     this.layoutControlItem11.Location = new System.Drawing.Point(315, 161);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(804, 305);
     this.layoutControlItem11.Text = "layoutControlItem11";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem11.TextToControlDistance = 0;
     this.layoutControlItem11.TextVisible = false;
     //
     // layoutControlGroup16
     //
     this.layoutControlGroup16.CustomizationFormText = "Approved Orders";
     this.layoutControlGroup16.DefaultLayoutType = DevExpress.XtraLayout.Utils.LayoutType.Horizontal;
     this.layoutControlGroup16.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.lcUnconfirmedPicklists,
     this.layoutControlGroup11});
     this.layoutControlGroup16.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup16.Name = "layoutControlGroup16";
     this.layoutControlGroup16.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup16.Size = new System.Drawing.Size(307, 466);
     this.layoutControlGroup16.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup16.Text = "Approved Orders";
     this.layoutControlGroup16.TextLocation = DevExpress.Utils.Locations.Left;
     this.layoutControlGroup16.TextVisible = false;
     //
     // lcUnconfirmedPicklists
     //
     this.lcUnconfirmedPicklists.Control = this.gridUnConfirmed;
     this.lcUnconfirmedPicklists.CustomizationFormText = "Printed (Unconfirmed PickLists)";
     this.lcUnconfirmedPicklists.Location = new System.Drawing.Point(0, 91);
     this.lcUnconfirmedPicklists.MaxSize = new System.Drawing.Size(305, 0);
     this.lcUnconfirmedPicklists.MinSize = new System.Drawing.Size(305, 24);
     this.lcUnconfirmedPicklists.Name = "lcUnconfirmedPicklists";
     this.lcUnconfirmedPicklists.Size = new System.Drawing.Size(305, 373);
     this.lcUnconfirmedPicklists.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.lcUnconfirmedPicklists.Text = "Printed (Unconfirmed Pick Lists)";
     this.lcUnconfirmedPicklists.TextLocation = DevExpress.Utils.Locations.Top;
     this.lcUnconfirmedPicklists.TextSize = new System.Drawing.Size(0, 0);
     this.lcUnconfirmedPicklists.TextToControlDistance = 0;
     this.lcUnconfirmedPicklists.TextVisible = false;
     //
     // layoutControlGroup11
     //
     this.layoutControlGroup11.CustomizationFormText = "Filter";
     this.layoutControlGroup11.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2});
     this.layoutControlGroup11.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup11.Name = "layoutControlGroup11";
     this.layoutControlGroup11.Size = new System.Drawing.Size(305, 91);
     this.layoutControlGroup11.Text = "Filter";
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.lkStoreType;
     this.layoutControlItem1.CustomizationFormText = "Mode";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.MaxSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem1.MinSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem1.Text = "Mode:";
     this.layoutControlItem1.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem1.TextToControlDistance = 1;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.txtFacilityNameFilter;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(281, 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 = 3;
     //
     // HeaderSection
     //
     this.HeaderSection.AppearanceGroup.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.HeaderSection.AppearanceGroup.Options.UseFont = true;
     this.HeaderSection.CustomizationFormText = "Selection Details";
     this.HeaderSection.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup7,
     this.layoutControlGroup4,
     this.layoutControlGroup1,
     this.layoutControlGroup5,
     this.layoutControlGroup3});
     this.HeaderSection.Location = new System.Drawing.Point(315, 0);
     this.HeaderSection.Name = "HeaderSection";
     this.HeaderSection.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.HeaderSection.Size = new System.Drawing.Size(804, 161);
     this.HeaderSection.Text = " ";
     //
     // layoutControlGroup7
     //
     this.layoutControlGroup7.CustomizationFormText = "layoutControlGroup7";
     this.layoutControlGroup7.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem19,
     this.layoutControlItem22,
     this.layoutControlItem15,
     this.layoutControlItem3,
     this.layoutControlItem5,
     this.layoutControlItem4,
     this.layoutControlItem12,
     this.layoutControlItem27,
     this.layoutControlItem13});
     this.layoutControlGroup7.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup7.Name = "layoutControlGroup7";
     this.layoutControlGroup7.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup7.Size = new System.Drawing.Size(790, 74);
     this.layoutControlGroup7.Text = "layoutControlGroup7";
     this.layoutControlGroup7.TextVisible = false;
     //
     // layoutControlItem19
     //
     this.layoutControlItem19.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem19.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem19.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem19.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem19.Control = this.lblMode;
     this.layoutControlItem19.CustomizationFormText = "Mode:";
     this.layoutControlItem19.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem19.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem19.MinSize = new System.Drawing.Size(46, 20);
     this.layoutControlItem19.Name = "layoutControlItem19";
     this.layoutControlItem19.Size = new System.Drawing.Size(255, 20);
     this.layoutControlItem19.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem19.Text = "Mode:";
     this.layoutControlItem19.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem19.TextSize = new System.Drawing.Size(34, 13);
     this.layoutControlItem19.TextToControlDistance = 31;
     //
     // layoutControlItem22
     //
     this.layoutControlItem22.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem22.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem22.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem22.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem22.Control = this.lblOwnership;
     this.layoutControlItem22.CustomizationFormText = "Ownership:";
     this.layoutControlItem22.Location = new System.Drawing.Point(255, 0);
     this.layoutControlItem22.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem22.MinSize = new System.Drawing.Size(64, 20);
     this.layoutControlItem22.Name = "layoutControlItem22";
     this.layoutControlItem22.Size = new System.Drawing.Size(252, 20);
     this.layoutControlItem22.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem22.Text = "Ownership:";
     this.layoutControlItem22.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem22.TextSize = new System.Drawing.Size(62, 13);
     this.layoutControlItem22.TextToControlDistance = 5;
     //
     // layoutControlItem15
     //
     this.layoutControlItem15.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem15.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem15.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem15.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem15.Control = this.lblPaymentType;
     this.layoutControlItem15.CustomizationFormText = "Payment Type:";
     this.layoutControlItem15.Location = new System.Drawing.Point(507, 20);
     this.layoutControlItem15.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem15.MinSize = new System.Drawing.Size(82, 20);
     this.layoutControlItem15.Name = "layoutControlItem15";
     this.layoutControlItem15.Size = new System.Drawing.Size(269, 20);
     this.layoutControlItem15.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem15.Text = "Payment:";
     this.layoutControlItem15.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem15.TextSize = new System.Drawing.Size(54, 13);
     this.layoutControlItem15.TextToControlDistance = 14;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem3.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem3.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem3.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem3.Control = this.lblRegion;
     this.layoutControlItem3.CustomizationFormText = "Region:";
     this.layoutControlItem3.Location = new System.Drawing.Point(507, 40);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(46, 20);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(269, 20);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Region:";
     this.layoutControlItem3.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(42, 13);
     this.layoutControlItem3.TextToControlDistance = 27;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem5.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem5.Control = this.lblWoreda;
     this.layoutControlItem5.CustomizationFormText = "Woreda:";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 40);
     this.layoutControlItem5.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem5.MinSize = new System.Drawing.Size(64, 20);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(255, 20);
     this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem5.Text = "Woreda:";
     this.layoutControlItem5.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(47, 13);
     this.layoutControlItem5.TextToControlDistance = 18;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem4.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem4.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem4.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem4.Control = this.lblZone;
     this.layoutControlItem4.CustomizationFormText = "Zone:";
     this.layoutControlItem4.Location = new System.Drawing.Point(255, 40);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(82, 20);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(252, 20);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Zone:";
     this.layoutControlItem4.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem4.TextToControlDistance = 36;
     //
     // 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.lblLetterNum;
     this.layoutControlItem12.CustomizationFormText = "Letter Number:";
     this.layoutControlItem12.Location = new System.Drawing.Point(255, 20);
     this.layoutControlItem12.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem12.MinSize = new System.Drawing.Size(82, 20);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Size = new System.Drawing.Size(252, 20);
     this.layoutControlItem12.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem12.Text = "Letter No:";
     this.layoutControlItem12.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem12.TextSize = new System.Drawing.Size(55, 13);
     this.layoutControlItem12.TextToControlDistance = 10;
     //
     // 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.lblPicklistNo;
     this.layoutControlItem27.CustomizationFormText = "Picklist No.:";
     this.layoutControlItem27.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem27.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem27.Name = "layoutControlItem27";
     this.layoutControlItem27.Size = new System.Drawing.Size(255, 20);
     this.layoutControlItem27.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem27.Text = "Picklist No:";
     this.layoutControlItem27.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem27.TextSize = new System.Drawing.Size(60, 13);
     this.layoutControlItem27.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.lblInstitutionType;
     this.layoutControlItem13.CustomizationFormText = "Type:";
     this.layoutControlItem13.Location = new System.Drawing.Point(507, 0);
     this.layoutControlItem13.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem13.MinSize = new System.Drawing.Size(82, 20);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(269, 20);
     this.layoutControlItem13.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem13.Text = "Inst. Type:";
     this.layoutControlItem13.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem13.TextSize = new System.Drawing.Size(60, 13);
     this.layoutControlItem13.TextToControlDistance = 8;
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "layoutControlGroup4";
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem21,
     this.layoutControlItem8});
     this.layoutControlGroup4.Location = new System.Drawing.Point(208, 74);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup4.Size = new System.Drawing.Size(194, 54);
     this.layoutControlGroup4.Text = "layoutControlGroup4";
     this.layoutControlGroup4.TextVisible = false;
     //
     // layoutControlItem21
     //
     this.layoutControlItem21.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem21.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem21.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem21.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem21.Control = this.labelControl13;
     this.layoutControlItem21.CustomizationFormText = "Approved By:";
     this.layoutControlItem21.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem21.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem21.MinSize = new System.Drawing.Size(86, 20);
     this.layoutControlItem21.Name = "layoutControlItem21";
     this.layoutControlItem21.Size = new System.Drawing.Size(180, 20);
     this.layoutControlItem21.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem21.Text = "Approved By:";
     this.layoutControlItem21.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem21.TextSize = new System.Drawing.Size(75, 13);
     this.layoutControlItem21.TextToControlDistance = 18;
     //
     // 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.lblApprovedDate;
     this.layoutControlItem8.CustomizationFormText = "Approved Date:";
     this.layoutControlItem8.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem8.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem8.MinSize = new System.Drawing.Size(86, 20);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(180, 20);
     this.layoutControlItem8.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem8.Text = "Approved Date:";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(88, 13);
     this.layoutControlItem8.TextToControlDistance = 5;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem23,
     this.layoutControlItem24});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 74);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup1.Size = new System.Drawing.Size(208, 54);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // 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.lblFilledBy;
     this.layoutControlItem23.CustomizationFormText = "Order Filled By:";
     this.layoutControlItem23.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem23.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem23.MinSize = new System.Drawing.Size(83, 20);
     this.layoutControlItem23.Name = "layoutControlItem23";
     this.layoutControlItem23.Size = new System.Drawing.Size(194, 20);
     this.layoutControlItem23.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem23.Text = "Requested By:";
     this.layoutControlItem23.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem23.TextSize = new System.Drawing.Size(81, 13);
     this.layoutControlItem23.TextToControlDistance = 18;
     //
     // 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.lblOrderDate;
     this.layoutControlItem24.CustomizationFormText = "Order 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(83, 20);
     this.layoutControlItem24.Name = "layoutControlItem24";
     this.layoutControlItem24.Size = new System.Drawing.Size(194, 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;
     //
     // layoutControlGroup5
     //
     this.layoutControlGroup5.CustomizationFormText = "layoutControlGroup5";
     this.layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem29,
     this.layoutControlItem28});
     this.layoutControlGroup5.Location = new System.Drawing.Point(402, 74);
     this.layoutControlGroup5.Name = "layoutControlGroup5";
     this.layoutControlGroup5.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup5.Size = new System.Drawing.Size(219, 54);
     this.layoutControlGroup5.Text = " ";
     this.layoutControlGroup5.TextVisible = false;
     //
     // layoutControlItem29
     //
     this.layoutControlItem29.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem29.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem29.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem29.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem29.Control = this.lblPicklistPrintedDate;
     this.layoutControlItem29.CustomizationFormText = "Picklist Printed Date:";
     this.layoutControlItem29.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem29.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem29.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem29.Name = "layoutControlItem29";
     this.layoutControlItem29.Size = new System.Drawing.Size(205, 20);
     this.layoutControlItem29.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem29.Text = "Picklisted Date:";
     this.layoutControlItem29.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem29.TextLocation = DevExpress.Utils.Locations.Default;
     this.layoutControlItem29.TextSize = new System.Drawing.Size(87, 13);
     this.layoutControlItem29.TextToControlDistance = 5;
     //
     // 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.lblPicklistPrintedBy;
     this.layoutControlItem28.CustomizationFormText = "Picklist Printed By:";
     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(205, 20);
     this.layoutControlItem28.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem28.Text = "Picklisted By:";
     this.layoutControlItem28.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem28.TextSize = new System.Drawing.Size(74, 13);
     this.layoutControlItem28.TextToControlDistance = 18;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem25,
     this.layoutControlItem26});
     this.layoutControlGroup3.Location = new System.Drawing.Point(621, 74);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup3.Size = new System.Drawing.Size(169, 54);
     this.layoutControlGroup3.Text = "layoutControlGroup3";
     this.layoutControlGroup3.TextVisible = false;
     //
     // layoutControlItem25
     //
     this.layoutControlItem25.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem25.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem25.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem25.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem25.Control = this.lblIssueType;
     this.layoutControlItem25.CustomizationFormText = "Issue Type:";
     this.layoutControlItem25.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem25.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem25.Name = "layoutControlItem25";
     this.layoutControlItem25.Size = new System.Drawing.Size(155, 20);
     this.layoutControlItem25.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem25.Text = "Type:";
     this.layoutControlItem25.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem25.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem25.TextToControlDistance = 14;
     //
     // layoutControlItem26
     //
     this.layoutControlItem26.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem26.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem26.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem26.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem26.Control = this.lblIssueStatus;
     this.layoutControlItem26.CustomizationFormText = "Issue Status:";
     this.layoutControlItem26.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem26.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem26.Name = "layoutControlItem26";
     this.layoutControlItem26.Size = new System.Drawing.Size(155, 20);
     this.layoutControlItem26.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem26.Text = "Status:";
     this.layoutControlItem26.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem26.TextSize = new System.Drawing.Size(40, 13);
     this.layoutControlItem26.TextToControlDistance = 5;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(307, 0);
     this.emptySpaceItem1.MaxSize = new System.Drawing.Size(8, 0);
     this.emptySpaceItem1.MinSize = new System.Drawing.Size(8, 10);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(8, 466);
     this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnPrintAndSavePickList;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(827, 466);
     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;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btnCancelPickList;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(973, 466);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.Text = "layoutControlItem7";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible = false;
     //
     // layoutControlItem45
     //
     this.layoutControlItem45.Control = this.btnReturnToApprovalStep;
     this.layoutControlItem45.CustomizationFormText = "layoutControlItem45";
     this.layoutControlItem45.Location = new System.Drawing.Point(681, 466);
     this.layoutControlItem45.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem45.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem45.Name = "layoutControlItem45";
     this.layoutControlItem45.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem45.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem45.Text = "layoutControlItem45";
     this.layoutControlItem45.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem45.TextToControlDistance = 0;
     this.layoutControlItem45.TextVisible = false;
     //
     // 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.Component = this.gridPickListDetail;
     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;
     //
     // progressBarControl
     //
     this.progressBarControl.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.progressBarControl.Location = new System.Drawing.Point(313, 275);
     this.progressBarControl.MaximumSize = new System.Drawing.Size(496, 25);
     this.progressBarControl.MinimumSize = new System.Drawing.Size(496, 25);
     this.progressBarControl.Name = "progressBarControl";
     this.progressBarControl.Properties.PercentView = false;
     this.progressBarControl.Properties.ShowTitle = true;
     this.progressBarControl.Size = new System.Drawing.Size(496, 25);
     this.progressBarControl.TabIndex = 32;
     this.progressBarControl.Visible = false;
     //
     // bgWorker
     //
     this.bgWorker.WorkerReportsProgress = true;
     this.bgWorker.WorkerSupportsCancellation = true;
     this.bgWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgWorker_DoWork);
     this.bgWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.bgWorker_ProgressChanged);
     this.bgWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgWorker_RunWorkerCompleted);
     //
     // PickListConfirmationForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1123, 496);
     this.Controls.Add(this.progressBarControl);
     this.Controls.Add(this.layoutControl2);
     this.Name = "PickListConfirmationForm";
     this.Text = "Pick List";
     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.layoutControl2)).EndInit();
     this.layoutControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkStoreType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFacilityNameFilter.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridUnConfirmed)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridUnconfirmedView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPickListApprovedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPickListOrderNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPickListRequestedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPickListFromStore.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPickListDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPickListView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.editManuf2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.boxSizeLookup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem44)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcUnconfirmedPicklists)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderSection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem45)).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.progressBarControl.Properties)).EndInit();
     this.ResumeLayout(false);
 }
        private void CreateDetail(Type EntityType, String Name = null, object Value = null)
        {
            #region ==================================== Labels + textboxs ====================================
            splitContainerControl.Panel2.Controls.Clear();
            var EntityProperties = EntityType.GetProperties();
            int index = 0;
            for (int i = 0; i < EntityProperties.Count(); i++)
            {
                var Pro = EntityProperties[i];
                var DisplayName = Pro.GetName();
                if (Pro.PropertyType.IsGenericType || Pro.Name.Substring(0, 2) == "FK") { }
                else
                {
                    var DataBindingsType = "Text";
                    var label = new LabelControl();
                    label.Location = new Point(20, 50 + 30 * index + 3);
                    label.Text = DisplayName;
                    label.Font = new Font(label.Font, CurrentMDI.IsKey(Pro.Name) ? FontStyle.Underline | FontStyle.Bold : FontStyle.Regular);
                    BaseEdit textbox = new TextEdit();
                    if(EntityType.IsForeignKey(Pro.Name))
                    {
                        var ForeignInfo = Pro.GetForeignKeyTargetName();
                        var TableName = ForeignInfo.Substring(0, ForeignInfo.IndexOf("_"));
                        var KeyName = ForeignInfo.Substring(ForeignInfo.IndexOf("_") + 1);
                        var x = Global.GetType(TableName);
                        var aList = x.Equals(typeof(DataContext.Menu)) ? GetMenuList() :
                                   (x.Equals(typeof(Quyen)) ? GetQuyenList() : Table.GetList(x, null, null, false));
                        if (aList != null)
                        {
                            var Ri = new LookUpEdit();
                            Ri.Properties.NullText = "Không có giá trị";
                            Ri.Properties.DataSource = aList;
                            Ri.Properties.ValueMember = KeyName;
                            Ri.Properties.BestFitMode = BestFitMode.BestFitResizePopup;
                            Ri.BindingContextChanged += new EventHandler(delegate(object sender, EventArgs e)
                            {
                                var Lookup = (sender as LookUpEdit);
                                Lookup.Properties.PopulateColumns();
                                Lookup.Properties.BestFit();
                                Lookup.Properties.AllowNullInput = DefaultBoolean.True;
                                if (Lookup.Properties.Columns.Count == 0) return;
                                var ci = 0;
                                foreach (var Column in x.GetProperties())
                                {
                                    if (Column.PropertyType.IsGenericType)
                                    {
                                        Lookup.Properties.Columns[ci].Visible = false;
                                    }
                                    else
                                    {
                                        Lookup.Properties.Columns[ci].Caption = Column.GetName();
                                        if (Column.PropertyType == typeof(DateTime))
                                        {
                                            if (Column.Name.Substring(0, 3) == "Gio")
                                                Lookup.Properties.Columns[ci].FormatString = "HH:mm tt";
                                            else
                                                Lookup.Properties.Columns[ci].FormatString = "dd/MM/yyy";
                                        }
                                    }
                                    ci++;
                                }
                            });
                            textbox = Ri;
                            DataBindingsType = "EditValue";
                        }
                    }
                    else if (Pro.PropertyType == typeof(DateTime))
                    {
                        var rDate = new DateEdit();
                        var rTime = new TimeEdit();

                        rDate.Properties.MinValue = new DateTime(1753, 1, 1); // SQL min value
                        if (Pro.Name.Substring(0, 3) == "Gio")
                            textbox = rTime;
                        else
                            textbox = rDate;

                        DataBindingsType = "EditValue";

                    }
                    else if (Pro.PropertyType == typeof(bool))
                    {
                        textbox = new CheckEdit();
                        DataBindingsType = "EditValue";
                    }
                    else if (Pro.PropertyType == typeof(int) || Pro.PropertyType == typeof(decimal) || Pro.PropertyType == typeof(double))
                    {
                        textbox = new CalcEdit();
                        DataBindingsType = "EditValue";
                    }
                    textbox.Location = new Point(120, 50 + 30 * index);
                    textbox.Width = 200;
                    textbox.TabIndex = index;
                    textbox.DataBindings.Add(DataBindingsType, gridView.DataSource, Pro.Name);
                    textbox.Properties.ReadOnly = true;
                    textbox.Name = Pro.Name;
                    splitContainerControl.Panel2.Controls.AddRange(new Control[] { label, textbox });
                    index++;
                }
            }
            #endregion

            #region ==================================== Buttons ====================================
            int bWidth = 60;
            int bX = 0;
            var btnEdit = new SimpleButton()
            {
                Text = "Chỉnh sửa",
                Location = new Point(5 + 5 * bX + bWidth * bX, 50 + 30 * index),
                Width = bWidth,
                Enabled = CurrentMDI.EnabledModify() && CurrentMDI.EnabledEdit() && gridView.SelectedRowsCount > 0
            };
            var btnCancelEdit = new SimpleButton()
            {
                Text = "Dừng sửa",
                Location = new Point(5 + 5 * bX + bWidth * bX, 50 + 30 * index),
                Width = 60,
                Visible = false
            };
            bX++;
            var btnUpdate = new SimpleButton()
            {
                Text = "Cập nhật",
                Location = new Point(5 + 5*bX + bWidth * bX, 50 + 30 * index),
                Width = 60,
                Enabled = false
            };
            bX++;
            var btnCreateNew = new SimpleButton()
            {
                Text = "Tạo mới",
                Location = new Point(5 + 5 * bX + bWidth * bX, 50 + 30 * index),
                Width = 60,
                Enabled = CurrentMDI.EnabledModify()
            };
            var btnCancelNew = new SimpleButton()
            {
                Text = "Dừng thêm",
                Location = new Point(5 + 5 * bX + bWidth * bX, 50 + 30 * index),
                Width = 60,
                Visible = false
            };
            bX++;
            var btnAddNew = new SimpleButton()
            {
                Text = "Thêm mới",
                Location = new Point(5 + 5 * bX + bWidth * bX, 50 + 30 * index),
                Width = 60,
                Enabled = false
            };
            bX++;
            var btnDelete = new SimpleButton()
            {
                Text = "Xoá",
                Location = new Point(5 + 5 * bX + bWidth * bX, 50 + 30 * index),
                Width = 60,
                Enabled = CurrentMDI.EnabledModify() && gridView.SelectedRowsCount > 0
            };
            index++;
            #endregion

            #region ==================================== Functions ====================================
            var Element = EntityType.CreateNew();

            Func<string, Control> GetControlByName = delegate(string ControlName)
            {
                foreach(Control c in splitContainerControl.Panel2.Controls)
                    if(c.Name == ControlName)
                        return c;

                return null;
            };

            Func<Exception, bool> ValidateEntity = delegate(Exception e)
            {
                dxErrorProvider.ClearErrors();
                bool isOk = false;
                if (e is SqlException)
                {
                    var dbEx = e as SqlException;
                    foreach (SqlError validationError in dbEx.Errors)
                    {
                        if (validationError.Message.IndexOf("]") > 0)
                        {
                            var PropertyName = validationError.Message.Substring(validationError.Message.IndexOf("[") + 1, validationError.Message.IndexOf("]")-1);
                            var ErrorMessage = validationError.Message.Substring(validationError.Message.IndexOf("]") + 1);
                            if (PropertyName.Equals("_Msg"))
                            {
                                MessageBox.Show(ErrorMessage);
                                isOk = true;
                            }
                            else
                            {
                                dxErrorProvider.SetError(GetControlByName(PropertyName), ErrorMessage, ErrorType.Default);
                            }
                        }

                    }
                }
                else
                {
                    ShowError(e);
                }
                return isOk;
            };

            Action<bool> SetReadOnly = delegate(bool IsReadOnly)
            {
                foreach (Control control in splitContainerControl.Panel2.Controls)
                {
                    if (control is BaseEdit)
                    {
                        (control as BaseEdit).Properties.ReadOnly = IsReadOnly;
                        if (CurrentMDI.IsKey(control.Name) && !IsReadOnly && !btnAddNew.Enabled)
                        {
                            (control as BaseEdit).Properties.ReadOnly = true;
                        }
                        if (control.Tag != null)
                        {
                            (control.Tag as Control).Enabled = !IsReadOnly;
                        }
                        if (control.Name == Name)
                        {
                            (control as BaseEdit).Properties.ReadOnly = true;
                        }

                        if (control is LookUpEdit && (control as BaseEdit).Properties.ReadOnly == false)
                        {
                            if (EntityType.IsFKContained(control.Name))
                            {
                                var A = EntityType.Name;
                                var MDI = (MasterDetailInfo)(control as LookUpEdit).Properties.DataSource.GetType().GenericTypeArguments[0].CreateNew();
                                var V = (GetControlByName(CurrentMDI.GetKeyName()) as BaseEdit).EditValue;
                                var aList = Table.GetList(MDI.GetType(), A, V, false);
                                (control as LookUpEdit).Properties.DataSource = aList;
                            }
                        }
                    }
                }
            };

            Action DefaultButtonDisplay = delegate()
            {
                btnEdit.Enabled = CurrentMDI.EnabledEdit() && gridView.SelectedRowsCount > 0;
                btnEdit.Visible = true;
                btnCancelEdit.Visible = false;
                btnUpdate.Enabled = false;
                btnCreateNew.Enabled = btnCreateNew.Visible = true;
                btnCancelNew.Visible = false;
                btnAddNew.Enabled = false;
                btnDelete.Enabled = gridView.SelectedRowsCount > 0;
            };

            Func<MasterDetailInfo> GetCurrentRecord = delegate()
            {
                var AElement = EntityType.CreateNew();
                foreach (Control control in splitContainerControl.Panel2.Controls)
                {
                    if (control is BaseEdit)
                    {
                        AElement.SetPropertyValue(control.Name, (control as BaseEdit).EditValue);
                    }
                }
                return (AElement as MasterDetailInfo);
            };

            #endregion

            #region ==================================== Button Events ====================================
            btnEdit.Click += new EventHandler(delegate(object sender, EventArgs e)
                {
                    foreach (Control control in splitContainerControl.Panel2.Controls)
                    {
                        if (control is BaseEdit)
                        {
                            Element.SetPropertyValue(control.Name, (control as BaseEdit).EditValue);
                        }
                    }
                    DefaultButtonDisplay();
                    btnCancelEdit.Visible = btnUpdate.Enabled = true;
                    btnEdit.Visible = btnCreateNew.Enabled = btnDelete.Enabled = false;
                    SetReadOnly(false);
                    DataGridView.Enabled = false;
                });

            btnCancelEdit.Click += new EventHandler(delegate(object sender, EventArgs e)
            {
                foreach (Control control in splitContainerControl.Panel2.Controls)
                {
                    if (control is BaseEdit)
                    {
                        (control as BaseEdit).EditValue = Element.GetPropertyValue(control.Name);
                    }
                }
                DefaultButtonDisplay();
                SetReadOnly(true);
                DataGridView.Enabled = true;
                dxErrorProvider.ClearErrors();

            });

            btnUpdate.Click += new EventHandler(delegate(object sender, EventArgs e)
            {
                var NewElement = GetCurrentRecord();
                bool isOk = false;
                try
                {
                    Table.Update(NewElement);
                }
                catch (Exception ex)
                {
                    isOk = ValidateEntity(ex);
                }
                finally
                {
                    if (isOk)
                    {
                        dxErrorProvider.ClearErrors();
                        DefaultButtonDisplay();
                        SetReadOnly(true);
                        DataGridView.Enabled = true;
                    }
                }
            });

            btnCreateNew.Click += new EventHandler(delegate(object sender, EventArgs e)
            {
                gridView.AddNewRow();
                if (!string.IsNullOrEmpty(Name))
                {
                    var txt = (GetControlByName(Name) as BaseEdit);
                    txt.EditValue = Value;
                    txt.BindingManager.EndCurrentEdit();
                }
                DefaultButtonDisplay();
                btnCancelNew.Visible = btnAddNew.Enabled = true;
                btnCreateNew.Visible = btnEdit.Enabled = btnDelete.Enabled = false;
                SetReadOnly(false);
                DataGridView.Enabled = false;
            });

            btnCancelNew.Click += new EventHandler(delegate(object sender, EventArgs e){
                gridView.DeleteSelectedRows();
                DefaultButtonDisplay();
                SetReadOnly(true);
                DataGridView.Enabled = true;
                dxErrorProvider.ClearErrors();
            });

            btnAddNew.Click += new EventHandler(delegate(object sender, EventArgs e)
            {
                var NewElement = GetCurrentRecord();
                bool isOk = true;
                try
                {
                    Table.Insert(NewElement);
                }
                catch (Exception ex)
                {
                    isOk = ValidateEntity(ex);
                }
                finally
                {
                    if (isOk)
                    {
                        dxErrorProvider.ClearErrors();
                        DefaultButtonDisplay();
                        SetReadOnly(true);
                        DataGridView.Enabled = true;
                    }
                }
            });

            btnDelete.Click += new EventHandler(delegate(object sender, EventArgs e)
            {
                var AElement = GetCurrentRecord();
                try
                {
                    gridView.DeleteSelectedRows();
                    Table.Delete(AElement);
                }
                catch (System.Exception ex)
                {
                    ValidateEntity(ex);
                }
            });
            #endregion

            splitContainerControl.Panel2.Controls.AddRange(new Control[] { btnEdit, btnCancelEdit, btnUpdate, btnCreateNew, btnCancelNew, btnAddNew, btnDelete });

            #region ==================================== Relation ====================================
            var Count = CurrentMDI.GetRelationCount();
            bX = 0;
            bWidth = 160;
            for (int i = 0; i < Count; i++)
            {
                var MDI = (MasterDetailInfo)CurrentMDI.GetRelationType(i).CreateNew();
                var aName = MDI.GetType().Name;
                var aButton = new SimpleButton()
                {
                    Name = "btnRelation_"+ aName,
                    Text = MDI.GetName(),
                    Location = new Point(5 + 5 * bX + bWidth * bX, 50 + 30 * index),
                    Width = bWidth,
                    Enabled = DSQuyen.Where(m => m.Quyen > 1 && m.Menu.Contains(aName)).Count() > 0 || Username == "admin"
                };
                aButton.Click += new EventHandler(delegate(object sender, EventArgs e)
                {
                    var TableName = CurrentMDI.GetType().Name;
                    var ColumnName = MDI.GetForeignKeyColumn(TableName);

                    var KeyValue = GetCurrentRecord().GetKeyValue();
                    UpdateGridView(MDI, ColumnName, KeyValue);
                    //gridView.Columns[0].FilterInfo = new ColumnFilterInfo(gridView.Columns[ColumnName], KeyValue);
                });
                splitContainerControl.Panel2.Controls.Add(aButton);
                index = bX > 0 ? index + 1 : index;
                bX = bX > 0 ? 0 : bX + 1;
            }
            #endregion
        }
Example #54
0
 private void SetDocuments(Act pModel)
 {
     var groups = Factory.Manager<DocumentGroupManager>().GetByOffice(CurrentInfo.OfficeID);
     var documents = Factory.Manager<DocumentManager>().GetByOffice(CurrentInfo.OfficeID);
     var list = new List<ActDocument>();
     if (pModel != null)
     {
         list = Factory.Manager<ActDocumentManager>().GetForAct(pModel.ID);
         var addList = new List<Document>();
         foreach (var item in list.FindAll(l=>documents.All(d=>d.DocumentID!=l.DocumentID)))
         {
             addList.Add(new Document
                 {
                     DocumentID = item.DocumentID,
                     DocumentName = item.DocumentName,
                     DocumentGroupID = item.DocumentGroupID,
                     OrdNum = item.DocumentOrdNum,
                     Hidden = false,
                     ValueSetID = item.ValueSetID
                 });
             if (groups.All(g => g.ID != item.DocumentGroupID))
             {
                 groups.Add(new DocumentGroup
                     {
                         DocumentGroupID = item.DocumentGroupID,
                         GroupName = item.GroupName,
                         OrdNum = item.GroupOrdNum,
                         Hidden = false
                     });
             }
         }
         if (addList.Count > 0)
             documents.AddRange(addList);
     }
     layoutDocuments.BeginUpdate();
     try
     {
         foreach (var grp in groups.OrderBy(g => g.OrdNum))
         {
             var layoutGroup = layoutDocuments.Root.AddGroup(grp.GroupName);
             layoutGroup.Tag = grp.ID;
             foreach (var document in documents.Where(d => d.DocumentGroupID == grp.ID).OrderBy(d=>d.OrdNum))
             {
                 var item = layoutGroup.AddItem(document.DocumentName);
                 item.TextLocation = Locations.Left;
                 item.Tag = document.ID;
                 var ddl = new LookUpEdit();
                 ddl.Properties.ValueMember = "ID";
                 ddl.Properties.DisplayMember = "DocValue";
                 ddl.Properties.NullText = Resources.nullText;
                 ddl.Properties.Columns.Add(new LookUpColumnInfo
                     {
                         FieldName = "DocValue"
                     });
                 ddl.Properties.ShowHeader = false;
                 ddl.Properties.ShowFooter = false;
                 ddl.Properties.DataSource =
                     Factory.Manager<DocumentValueManager>().GetBySet(document.ValueSetID);
                 item.Control = ddl;
                 var value = list.Find(l => l.DocumentID == document.ID);
                 if (value != null)
                     ddl.EditValue = value.DocumentValueID;
             }
         }
     }
     finally
     {
         layoutDocuments.EndUpdate();
     }
 }
Example #55
0
        private void LoadDataAndShow()
        {
            try
            {
                tableName = this.UserName.ToString();
                tblInfo = DBEngine.execReturnDataTable(string.Format("select * from tblDataSetting where TableName = '{0}'", this.UserName));
                if (tblInfo != null && tblInfo.Rows.Count > 0)
                {
                    //Load Primary keys
                    if (!tblInfo.Rows[0]["TableEditorName"].ToString().Equals(string.Empty))
                        this.UserName = tblInfo.Rows[0]["TableEditorName"].ToString().Split('|')[0];
                    //m_dtPrimaryKeys = DBEngine.execReturnDataTable("sp_TableEditor_GetPrimaryKeys", "@Tablename", this.UserName.ToString());
                    strViewName = tblInfo.Rows[0]["ViewName"].ToString();
                    if (tblInfo.Rows[0]["IsShowLayout"] != DBNull.Value)
                        IsShowLayout = Convert.ToBoolean(tblInfo.Rows[0]["IsShowLayout"]);
                    else
                        IsShowLayout = false;

                    if (tblInfo.Rows[0]["AllowAdd"] != DBNull.Value)
                        isAllowAdd = Convert.ToBoolean(tblInfo.Rows[0]["AllowAdd"]);
                    else
                        IsAdded = false;
                    if (tblInfo.Rows[0]["ReadOnly"] != DBNull.Value)
                        isReadOnly = Convert.ToBoolean(tblInfo.Rows[0]["ReadOnly"]);
                    if (tblInfo.Rows[0]["IsProcedure"] != DBNull.Value)
                        IsProcedure = Convert.ToBoolean(tblInfo.Rows[0]["IsProcedure"]);
                    if (tblInfo.Rows[0]["IsProcessForm"] != DBNull.Value)
                        IsProcessForm = Convert.ToBoolean(tblInfo.Rows[0]["IsProcessForm"]);
                    strColumnReadOnly = tblInfo.Rows[0]["ReadOnlyColumns"].ToString().Split(',');
                    strColumnFormatFont = tblInfo.Rows[0]["FormatFontColumns"].ToString().Split(',');
                    strColumnPaint = tblInfo.Rows[0]["PaintColumns"].ToString().Split(',');
                    strPaintRows = tblInfo.Rows[0]["PaintRows"].ToString().Split(',');
                    strColumnHide = tblInfo.Rows[0][ColumnHide].ToString().Split(',');
                    strColumnFixed = tblInfo.Rows[0][FixedColumns].ToString().Split(',');
                    strGroupColumns = tblInfo.Rows[0][GroupColumns].ToString().Split(',');
                    strColumnOrderBy = tblInfo.Rows[0][ColumnOrderBy].ToString().Split(',');
                    strColumnCombobox = tblInfo.Rows[0]["ComboboxColumns"].ToString().Split('|');
                    m_dtColumnsName = DBEngine.execReturnDataTable("sp_TableEditor_Columns", "@Tablename", strViewName);
                    m_dtColumnsName.PrimaryKey = new DataColumn[] { m_dtColumnsName.Columns[NAME] };
                    if (IsProcedure)
                    {
                        int height = 0;
                        tableName = tblInfo.Rows[0]["TableEditorName"].ToString();
                        // đọc các tham số truyền vào
                        dtParameter = DBEngine.execReturnDataTable("sp_Export_GetParameter",
                     "@ProcedureName", strViewName,
                     "@LanguageID", UIMessage.languageID);
                        grbFilter.Controls.Clear();
                        if ((dtParameter != null) && (dtParameter.Rows.Count > 0))
                        {
                            hideContainerLeft.Visible = true;
                            cellLocation = new string[3, dtParameter.Rows.Count];// frist used for Name, second used for Location and third used for Value
                            int index = 0;
                            //generate filter condition
                            foreach (DataRow dr in dtParameter.Rows)
                            {
                                //cut lose @LoginID
                                if (dr[P_NAME].ToString().ToLower().Equals(CommonConst.A_LoginID.ToLower()))
                                    continue;
                                height += 25;
                                // set lable
                                Label lbl = new Label() { Name = LBL_PREFIX + dr[P_NAME], Text = dr[Message_P].ToString() };
                                cellLocation[0, index] = lbl.Text;
                                cellLocation[1, index] = dr[CellLocation].ToString();
                                cellLocation[2, index++] = dr[P_NAME].ToString();
                                grbFilter.Controls.Add(lbl);
                                lbl.Location = new Point(10, height);
                                // set input control
                                switch (dr[DataType].ToString().ToLower())
                                {
                                    case "dropdownlist":
                                        {
                                            if (dr[P_NAME].ToString().ToLower() == CommonConst.A_EmployeeID.ToLower())
                                            {
                                                ShowEmployeeList(new Point(110, height), dr[P_NAME].ToString());
                                                break;
                                            }
                                            // create combobox for this once
                                            LookUpEdit cbx = new LookUpEdit() { Name = CBX_PREFIX + dr[P_NAME] };
                                            // set data source
                                            AddDataSource(ref cbx, DBEngine.execReturnDataTable(dr[Query].ToString(), CommonConst.A_LoginID, UserID));
                                            // if the control is month or year list, so set theo current month and year
                                            if (cbx.Name.ToLower().Contains("month"))
                                            {
                                                dtInitValue = DBEngine.execReturnDataTable("select * from tblCurrentWorkingMonth");
                                                cbx.EditValue = dtInitValue.Rows[0]["Month"];
                                            }
                                            if (cbx.Name.ToLower().Contains("year"))
                                            {
                                                dtInitValue = DBEngine.execReturnDataTable("select * from tblCurrentWorkingMonth");
                                                cbx.EditValue = dtInitValue.Rows[0]["Year"];
                                            }
                                            if (cbx.Name.ToLower().Contains("currency"))
                                            {
                                                cbx.EditValue = "VND";
                                            }
                                            grbFilter.Controls.Add(cbx);
                                            cbx.Location = new Point(110, height);
                                            cbx.Width = 200;
                                            cbx.BringToFront();
                                            break;
                                        }
                                    case "number":
                                    case "int":
                                    case "smallint":
                                    case "tinyint":
                                    case "money":
                                        {
                                            // Create textbox and set read number only
                                            TextBox txt = new TextBox() { Name = TXT_PREFIX + dr[P_NAME], Location = new Point(110, height), Width = 200 };
                                            txt.BringToFront();
                                            //set read number only
                                            txt.KeyPress += new KeyPressEventHandler(txt_KeyPress);
                                            grbFilter.Controls.Add(txt);
                                            break;
                                        }
                                    case "datetime":
                                    case "smalldatetime":
                                        {
                                            // Create datetimepicker
                                            DateEdit dtp = new DateEdit() { Name = DTP_PREFIX + dr[P_NAME], Location = new Point(110, height), Width = 200 };
                                            dtp.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
                                            dtp.Properties.LookAndFeel.SkinName = "Blue";
                                            dtp.Properties.Mask.EditMask = "dd/MM/yyyy";
                                            dtp.Properties.Mask.UseMaskAsDisplayFormat = true;
                                            grbFilter.Controls.Add(dtp);
                                            break;
                                        }
                                    case "boolean":
                                    case "bit":
                                        {
                                            // Create datetimepicker
                                            CheckEdit ckb = new CheckEdit() { Name = CKB_PREFIX + dr[P_NAME], Location = new Point(110, height) };
                                            ckb.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
                                            ckb.Properties.LookAndFeel.SkinName = "Blue";
                                            grbFilter.Controls.Add(ckb);
                                            break;
                                        }
                                    default:
                                        {
                                            // Create textbox and set read number only
                                            TextBox txt = new TextBox() { Name = TXT_PREFIX + dr[P_NAME], Location = new Point(110, height), Width = 200 };
                                            txt.BringToFront();
                                            grbFilter.Controls.Add(txt);
                                            // textbox here
                                            break;
                                        }
                                }

                            }
                            grbFilter.Height = 25+ height;
                        }
                        else
                            hideContainerLeft.Visible = false;
                        // thực thi câu truy vấn với tham số mặc định
                        if (!IsProcessForm)
                            m_dtTableData = LoadProduceData();
                        else
                        {
                            pnlFWCommand.Visible = false;

                        }
                    }
                    else
                    {
                        hideContainerLeft.Visible = false;
                        m_dtTableData = DBEngine.execReturnDataTable(MakeLoadAllDataQuery(strViewName));
                    }
                    m_dtColumnsName_Org = DBEngine.execReturnDataTable("sp_TableEditor_Columns", "@Tablename", this.UserName.ToString());

                }
                else
                {
                    hideContainerLeft.Visible = false;
                    //Load Primary keys
                    m_dtColumnsName = DBEngine.execReturnDataTable("sp_TableEditor_Columns", "@Tablename", this.UserName.ToString());
                    m_dtColumnsName_Org = m_dtColumnsName.Copy();
                    m_dtTableData = DBEngine.execReturnDataTable(MakeLoadAllDataQuery(this.UserName.ToString()));
                }
                if (!IsProcessForm)
                {
                    BuildVisibleColumnsProc();
                    grdTableEditor.DataSource = m_dtTableData;
                    dt_OldValue = m_dtTableData.Copy();
                    RegisterEvents();
                    grvTableEditor.BestFitColumns();
                }
                Control.ControlCollection ctrls = splitContainer1.Panel2.Controls;
                UIMessage.LoadLableName(ref ctrls);
            }
            catch (Exception ex)
            {
                HPA.Common.Helper.ShowException(ex, ex.Message, "Load and show data");
            }
            if (!IsProcessForm)
            {
                m_dtTableData.DefaultView.RowFilter = strFilter;
            }
        }
Example #56
0
 private void AddDataSource(ref LookUpEdit le, DataTable dt)
 {
     le.Properties.Columns.Clear();
     le.Properties.DataSource = dt;
     const Int32 width = 125;
     int i = 0;
     foreach (DataColumn dc in dt.Columns)
     {
         if (++i > 2)
             break;
         LookUpColumnInfo luColumnInfo = new LookUpColumnInfo(dc.Caption, width);
         le.Properties.Columns.Add(luColumnInfo);
     }
     if (dt.Columns.Count >= 2)
     {
         le.Properties.ValueMember = dt.Columns[0].Caption;
         le.Properties.DisplayMember = dt.Columns[1].Caption;
         // get the first rows
         le.EditValue = dt.Rows[0][0].ToString();
     }
     else
     {
         le.Properties.ValueMember = dt.Columns[0].Caption;
         le.Properties.DisplayMember = dt.Columns[0].Caption;
         // get the first rows
         le.EditValue = dt.Rows[0][0].ToString();//DataBindings.Add("EditValue", dt,dt.Columns[0].Caption);
     }
 }
 private void InitializeComponent()
 {
     this.LookUpEditFrom = new DevExpress.XtraEditors.LookUpEdit();
     this.DateTimeControl = new ProtocolVN.Framework.Win.Trial.BasicControl();
     ((System.ComponentModel.ISupportInitialize)(this.LookUpEditFrom.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // LookUpEditFrom
     //
     this.LookUpEditFrom.Dock = System.Windows.Forms.DockStyle.Left;
     this.LookUpEditFrom.EnterMoveNextControl = true;
     this.LookUpEditFrom.Location = new System.Drawing.Point(0, 0);
     this.LookUpEditFrom.Name = "LookUpEditFrom";
     this.LookUpEditFrom.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.LookUpEditFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LookUpEditFrom.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Value", "Value")});
     this.LookUpEditFrom.Properties.DisplayMember = "Value";
     this.LookUpEditFrom.Properties.DropDownRows = 9;
     this.LookUpEditFrom.Properties.NullText = "";
     this.LookUpEditFrom.Properties.SearchMode = DevExpress.XtraEditors.Controls.SearchMode.AutoComplete;
     this.LookUpEditFrom.Properties.ShowFooter = false;
     this.LookUpEditFrom.Properties.ShowHeader = false;
     this.LookUpEditFrom.Properties.ShowLines = false;
     this.LookUpEditFrom.Properties.ValueMember = "Key";
     this.LookUpEditFrom.Size = new System.Drawing.Size(72, 20);
     this.LookUpEditFrom.TabIndex = 0;
     this.LookUpEditFrom.EditValueChanged += new System.EventHandler(this.LookUpEditFrom_EditValueChanged);
     //
     // DateTimeControl
     //
     this.DateTimeControl.DateFrom = new System.DateTime(2011, 2, 24, 9, 35, 38, 592);
     this.DateTimeControl.DateTo = new System.DateTime(2011, 2, 24, 9, 35, 38, 592);
     this.DateTimeControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.DateTimeControl.Location = new System.Drawing.Point(72, 0);
     this.DateTimeControl.Name = "DateTimeControl";
     this.DateTimeControl.Size = new System.Drawing.Size(257, 20);
     this.DateTimeControl.TabIndex = 1;
     //
     // PLDateSelection
     //
     this.Controls.Add(this.DateTimeControl);
     this.Controls.Add(this.LookUpEditFrom);
     this.Name = "PLDateSelection";
     this.Size = new System.Drawing.Size(329, 20);
     this.Load += new System.EventHandler(this.PLDateSelection_Load);
     ((System.ComponentModel.ISupportInitialize)(this.LookUpEditFrom.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 private void SetupCombo(LookUpEdit combo)
 {
     combo.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Value"));
     combo.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Key"));
     combo.Properties.Columns["Key"].Visible = false;
     combo.Properties.DisplayMember = "Value";
     combo.Properties.ValueMember = "Key";
     combo.Properties.ShowHeader = false;
     combo.Properties.ShowFooter = false;
 }
Example #59
0
        //起始位置11、11 |128、8;size 337:21|
        //垂直增加33  
        private void frmSBTZ_Load(object sender, EventArgs e)
        {
            List<DicType> dicTypeList = new List<DicType>();
            if (sdxl != null)
            {
                gtList = Client.ClientHelper.PlatformSqlMap.GetListByWhere<sd_gt>("where LineCode='" + sdxl.LineCode + "'");
            }
            foreach (sd_gt sdgt in gtList)
            {
                dicTypeList.Add(new DicType(sdgt.gtCode, sdgt.gtCode));
            }
            //lable一个字符站12个宽度
            this.xtraTabControl1.TabPages.Clear();
            this.splitContainerControl1.Panel2.Controls.Clear();
            //lable起始位置
            int startlblw = 11;
            int startlblh = 11;
            //textbox起始位置
            int starttextw = 180;
            int starttexth = 8;
            int addh = 33;
            int pageNumber = 1;
            int nrows = 30;
            IList<sd_tsqyzlsx> sbsxList = Client.ClientHelper.PlatformSqlMap.GetListByWhere<sd_tsqyzlsx>("where zldm='" + tsqyzl.zldm + "' and isuse='是' order by convert(int,norder)");
            int[] widthArr = new int[sbsxList.Count / nrows + 1];
            for (int i = 0; i < widthArr.Length; i++)
            {
                widthArr[i] = GetMaxLblWidth(i, sbsxList);
            }
            if (widthArr[0] == 0)
                widthArr[0] = 48;
            if (pageNumber == 1)
            {
                XtraPage = new DevExpress.XtraTab.XtraTabPage();
                XtraPage.Name = "xtrpage" + pageNumber;
                XtraPage.Text = string.Format("特殊区域属性");
                this.xtraTabControl1.TabPages.Add(XtraPage);

                DevExpress.XtraEditors.LabelControl lblstart = new DevExpress.XtraEditors.LabelControl();
                lblstart.Name = "lblStart";
                lblstart.Text = "起始杆塔";
                lblstart.Location = new Point(startlblw, startlblh);

                DevExpress.XtraEditors.LookUpEdit lkueStart = new LookUpEdit();
                lkueStart.Name = "lkueStart";
                SetComboBoxData(lkueStart, "Value", "Key", "请选择", "起始杆塔", dicTypeList);

                lkueStart.Location = new Point(widthArr[pageNumber - 1] + 40, starttexth);
                lkueStart.DataBindings.Add("EditValue", rowData, "gtbegin");

                XtraPage.Controls.Add(lblstart);
                XtraPage.Controls.Add(lkueStart);
                startlblh += 33;
                starttexth += 33;
                

                DevExpress.XtraEditors.LabelControl lblend = new DevExpress.XtraEditors.LabelControl();
                lblend.Name = "lblend";
                lblend.Text = "终止杆塔";
                lblend.Location = new Point(startlblw, startlblh);

                DevExpress.XtraEditors.LookUpEdit lkueEnd = new LookUpEdit();
                lkueEnd.Name = "lkueend";
                SetComboBoxData(lkueEnd, "Value", "Key", "请选择", "终止杆塔", dicTypeList);
                lkueEnd.Location = new Point(widthArr[pageNumber - 1] + 40, starttexth);
                lkueEnd.DataBindings.Add("EditValue", rowData, "gtend");

                XtraPage.Controls.Add(lblend);
                XtraPage.Controls.Add(lkueEnd);
                startlblh += 33;
                starttexth += 33;
                
            }

                if (sbsxList.Count > 0)
                {
                    
                    int i = 3;
                    foreach (sd_tsqyzlsx sbsx in sbsxList)
                    {
                        if (i > nrows || XtraPage == null)
                        {
                            pageNumber++;
                            XtraPage = new DevExpress.XtraTab.XtraTabPage();
                            XtraPage.Name = "xtrpage" + pageNumber;
                            XtraPage.Text = string.Format("特殊区域第{0}页", pageNumber);
                            this.xtraTabControl1.TabPages.Add(XtraPage);
                            XtraPage.AutoScroll = true;
                            //XtraPage.SizeChanged += new EventHandler(XtraPage_SizeChanged);
                        }

                        if (i > nrows)
                        {
                            i = 1;
                            startlblw = 11;
                            startlblh = 11;
                            starttextw = 180;
                            starttexth = 8;
                        }
                        
                        DevExpress.XtraEditors.LabelControl lbl = new DevExpress.XtraEditors.LabelControl();
                        lbl.Name = lbl + sbsx.sxcol;
                        lbl.Text = sbsx.sxname.Trim();
                        lbl.Location = new Point(startlblw, startlblh);

                        Control txtEdit = createControl(sbsx);
                        txtEdit.Name = sbsx.sxcol;
                        //txtEdit.DataBindings.Add("EditValue", rowData, sbsx.sxcol);
                        txtEdit.Size = new Size(337, 21);
                        //txtEdit.Location = new Point(starttextw, starttexth);
                        txtEdit.Location = new Point(widthArr[pageNumber - 1] + 40, starttexth);
                        
                        XtraPage.Controls.Add(lbl);
                        XtraPage.Controls.Add(txtEdit);
                        XtraPage.AutoScrollMinSize = new Size(txtEdit.Right + 10, txtEdit.Bottom + 10);
                        startlblh += 33;
                        starttexth += 33;
                        i++;
                    }
                    

                }
                XtraPage = new DevExpress.XtraTab.XtraTabPage();
                XtraPage.Name = "xtrPagePicture";
                XtraPage.Text = "特殊区域照片";
                this.xtraTabControl1.TabPages.Add(XtraPage);
                GroupBox grpbox = new GroupBox();
                grpbox.Location = new Point(0, 0);
                grpbox.Text = "照片";
                grpbox.Name = "grppicture";
                //grpbox.Dock = DockStyle.Top;
                grpbox.Dock = DockStyle.Fill;
                grpbox.Size = new Size(565, 386);
                XtraPage.Controls.Add(grpbox);

                pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
                pictureEdit1.Dock = DockStyle.Fill;
                pictureEdit1.Name = "pictureEdit1";
                grpbox.Controls.Add(pictureEdit1);
                pictureEdit1.EditValueChanged += new EventHandler(pictureEdit1_EditValueChanged);


                DevExpress.XtraEditors.SimpleButton btnOk = new DevExpress.XtraEditors.SimpleButton();
                btnOk.Name = "btnOk";
                btnOk.Text = "确定";
                btnOk.Location = new Point(357, 9);
                btnOk.Click += new EventHandler(btnOk_Click);
                btnOk.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
                DevExpress.XtraEditors.SimpleButton btnCancel = new DevExpress.XtraEditors.SimpleButton();
                btnCancel.Name = "btnCancel";
                btnCancel.Text = "取消";
                btnCancel.Location = new Point(461, 9);
                btnCancel.Click += new EventHandler(btnCancel_Click);
                btnCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
                this.splitContainerControl1.Panel2.Controls.Add(btnOk);
                this.splitContainerControl1.Panel2.Controls.Add(btnCancel);
            setImage();

        }
Example #60
-1
        private void XRep02_ParametersRequestBeforeShow(object sender, DevExpress.XtraReports.Parameters.ParametersRequestEventArgs e)
        {
            foreach (ParameterInfo info in e.ParametersInformation)
            {
                if (info.Parameter.Name == "pramPERSONID")
                {
                    DataSources.dsBookStoreQueriesTableAdapters.studentTableAdapter adp = new DataSources.dsBookStoreQueriesTableAdapters.studentTableAdapter();
                    adp.FillByasase_code_Detail1(dsBookStoreQueries1.student, Program.asase_code);

                    LookUpEdit LUE = new LookUpEdit();
                    LUE.Properties.DataSource = dsBookStoreQueries1.student;
                    LUE.Properties.DisplayMember = "stu_name";
                    LUE.Properties.ValueMember = "stu_code";
                    LUE.Properties.Columns.Add(new LookUpColumnInfo("stu_name", 0, "الاسماء"));
                    LUE.Properties.BestFit();
                    LUE.Properties.NullText = string.Empty;
                    LUE.Properties.TextEditStyle = TextEditStyles.Standard;
                    //LUE.Properties.NullText = "<اختر فرعيه>";
                    info.Editor = LUE;
                    info.Parameter.Value = DBNull.Value;
                    continue;
                }

            }
        }