Beispiel #1
0
        private void setSerialPortComboboxConnectType(DevExpress.XtraEditors.ComboBoxEdit _control, string _default_key = null)
        {
            KnDevexpressFunc.ComboBoxAddItem(_control, "0", "시리얼");

            if (null != _default_key)
            {
                KnDevexpressFunc.ComboBoxSetSelectByKey(_control, _default_key);
            }
        }
        private void cboAfterBigArea_SelectedIndexChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.ComboBoxEdit cbo = sender as DevExpress.XtraEditors.ComboBoxEdit;
            string         afterBigAreaCode         = CommonHandler.GetComboBoxSelectedValue(cbo) as string;
            List <AreaDto> areaDtoList = (from x in _afterSmallAreaDtoList where x.UpperAreaCode == afterBigAreaCode select x).ToList <AreaDto>();

            areaDtoList.Insert(0, new AreaDto("", "全部", "", "04"));
            CommonHandler.SetComboBoxEditItems(cboAfterSmallArea, areaDtoList, "AreaName", "AreaCode");
        }
Beispiel #3
0
 static internal void LoadCBB(DevExpress.XtraEditors.ComboBoxEdit cbKQ, string col, DataTable dtKQ)
 {
     foreach (DataRow row in dtKQ.Rows)
     {
         if (dcts.GetStr(row[col]).Length > 0)
         {
             cbKQ.Properties.Items.Add(dcts.GetStr(row[col]));
         }
     }
 }
Beispiel #4
0
        public static void AddEnumValues <T>(this DevExpress.XtraEditors.ComboBoxEdit cbEdit) where T : new()
        {
            cbEdit.Properties.Items.Clear();
            var values = EnumUtil.GetEnumListDescription <T>();

            foreach (var item in values)
            {
                cbEdit.Properties.Items.Add(item);
            }
        }
 private void AddControls(Control container, DevExpress.XtraEditors.ComboBoxEdit cb)
 {
     foreach (object obj in container.Controls)
     {
         cb.Properties.Items.Add(obj);
         if (obj is Control)
         {
             this.AddControls(obj as Control, cb);
         }
     }
 }
Beispiel #6
0
        // Hàm kiểm tra chuỗi nhập vào có nằm trong list phần tử của ComboBoxEdit (DevExpress) chưa:
        public bool CheckNotInComboBox(DevExpress.XtraEditors.ComboBoxEdit DevComboBox)
        {
            foreach (string mem in DevComboBox.Properties.Items)
            {
                if ((string)mem == DevComboBox.Text)
                {
                    return(false);
                }
            }

            return(true);
        }
Beispiel #7
0
 /// <summary>
 /// Obtém o item selecionado ou pega o primeiro elementro que encontra na caixa de combinacao
 /// </summary>
 /// <typeparam name="T"></typeparam>Tipo
 /// <param name="cbEdit"></param>Caixa de combinação
 /// <returns></returns>O item selecionado
 public static T GetSelectedItem <T>(this DevExpress.XtraEditors.ComboBoxEdit cbEdit) where T : new()
 {
     try
     {
         T item = (T)cbEdit.SelectedItem;
         return(item != null ? item : new T());
     }
     catch
     {
         return(new T());
     }
 }
Beispiel #8
0
        public static void SetSelectItem <T>(this DevExpress.XtraEditors.ComboBoxEdit cbEdit, T t) where T : new()
        {
            var itens = cbEdit.GetItens <T>();

            foreach (T item in itens)
            {
                if (item.ToString() == t.ToString())
                {
                    cbEdit.SelectedItem = item;
                }
            }
        }
Beispiel #9
0
        public static void AddEnumValues(this DevExpress.XtraEditors.ComboBoxEdit cbEdit, Type type)
        {
            cbEdit.Properties.Items.Clear();
            //typeof(Object)
            //cbEdit.Properties.Items.AddRange(Enum.GetValues(type));
            var values = Enum.GetValues(type);

            foreach (var item in values)
            {
                cbEdit.Properties.Items.Add(item);
            }
        }
Beispiel #10
0
 public static void InitialCombox(DevExpress.XtraEditors.ComboBoxEdit combox, IEnumerable <object> Elememets, int DefalutSelectedIndex = 0)
 {
     combox.Properties.Items.Clear();
     foreach (var item in Elememets)
     {
         combox.Properties.Items.Add(item);
     }
     if (combox.Properties.Items.Count > 0)
     {
         combox.SelectedIndex = DefalutSelectedIndex;
     }
 }
Beispiel #11
0
        /// <summary>
        ///填充Combox
        /// </summary>
        /// <param name="GroupName"></param>
        /// <param name="cmbbox"></param>
        public void FillDevComboBox(string GroupName, DevExpress.XtraEditors.ComboBoxEdit cmbbox)
        {
            DataSet dst = GetParaItems(GroupName);

            if (dst.Tables[0].Rows.Count > 0)
            {
                cmbbox.Properties.Items.Clear();
                foreach (DataRow row in dst.Tables[0].Rows)
                {
                    cmbbox.Properties.Items.Add(row["GROUPLISTITEM"].ToString());
                }
            }
        }
Beispiel #12
0
        /// <summary>
        /// Add um item na caixa de combinação
        /// </summary>
        /// <typeparam name="T"></typeparam>Tipo
        /// <param name="cbEdit"></param>Caixa de Combinação
        /// <param name="lista"></param>Lista a ser inserida
        /// <param name="overRide"></param> false dados do combo serao substituidos true serão adicionados
        public static void AddItem <T>(this DevExpress.XtraEditors.ComboBoxEdit cbEdit, T t, bool overRide = true) where T : new()
        {
            if (t != null)
            {
                if (overRide)
                {
                    cbEdit.Properties.Items.Clear();
                }

                cbEdit.Properties.Items.Add(t);
                cbEdit.SelectedItem = t;
            }
        }
Beispiel #13
0
        // ----------------------------------------------------------
        //
        private void setDlgComboboxOpenApiTypeItems(DevExpress.XtraEditors.ComboBoxEdit _control, string _default_key = null)
        {
            for (int i = 0; i < OpenApiBase.OPEN_API_TYPE_LIST.Length; i++)
            {
                OpenApiBase.OPEN_API_TYPE sel_type = OpenApiBase.OPEN_API_TYPE_LIST[i];

                KnDevexpressFunc.ComboBoxAddItem(_control, ((int)sel_type).ToString(), OpenApiBase.obtainDeliveryCompanyTypeName(sel_type));
            }

            if (null != _default_key)
            {
                KnDevexpressFunc.ComboBoxSetSelectByKey(_control, _default_key);
            }
        }
Beispiel #14
0
 public void ComboBoxEdit_SetSelectedIndex(DevExpress.XtraEditors.ComboBoxEdit control, int index)
 {
     if (control.InvokeRequired)
     {
         control.Invoke(new Action(() =>
         {
             control.SelectedIndex = index;
         }));
     }
     else
     {
         control.SelectedIndex = index;
     }
 }
Beispiel #15
0
 private void SetComboboxIndex(DevExpress.XtraEditors.ComboBoxEdit control, string selectvalue)
 {
     if (control.Properties.Items != null && control.Properties.Items.Count > 0)
     {
         DevExpress.XtraEditors.Controls.ComboBoxItemCollection cbSelectItems = control.Properties.Items;
         for (int i = 0; i < cbSelectItems.Count; i++)
         {
             if (cbSelectItems[i].ToString() == selectvalue)
             {
                 control.SelectedIndex = i;
             }
         }
     }
 }
Beispiel #16
0
 private void BindAllListBox(Hashtable mHt)
 {
     foreach (DictionaryEntry de in mHt)
     {
         DevExpress.XtraEditors.ComboBoxEdit mcoBox = de.Key as DevExpress.XtraEditors.ComboBoxEdit;
         XmlNodeList mNodes = de.Value as XmlNodeList;
         mcoBox.Properties.Items.Clear();
         foreach (XmlNode nd in mNodes)
         {
             mcoBox.Properties.Items.Add(nd.Attributes["value"].Value);
         }
         mcoBox.SelectedIndex = 0;
     }
 }
Beispiel #17
0
        /// <summary>
        /// Add uma lista na caixa de combinação e inicia com um item selecionado
        /// </summary>
        /// <typeparam name="T"></typeparam>Tipo
        /// <param name="cbEdit"></param>Caixa de Combinação
        /// <param name="lista"></param>Lista a ser inserida
        /// <param name="overRide"></param> false dados do combo serao substituidos true serão adicionados
        public static void AddList <T>(this DevExpress.XtraEditors.ComboBoxEdit cbEdit, List <T> lista, bool overRide = true) where T : new()
        {
            if (overRide)
            {
                cbEdit.Properties.Items.Clear();
            }

            cbEdit.Properties.Items.AddRange(lista);

            if (overRide && lista.Count > 0)
            {
                cbEdit.SelectedItem = lista[0];
            }
        }
Beispiel #18
0
        private void setSerialPortComboboxBaudItems(DevExpress.XtraEditors.ComboBoxEdit _control, string _default_key = null)
        {
            KnDevexpressFunc.ComboBoxAddItem(_control, "4800", "4,800");
            KnDevexpressFunc.ComboBoxAddItem(_control, "9600", "9,600");
            KnDevexpressFunc.ComboBoxAddItem(_control, "19200", "19,200");
            KnDevexpressFunc.ComboBoxAddItem(_control, "38400", "38,400");
            KnDevexpressFunc.ComboBoxAddItem(_control, "57600", "57,600");
            KnDevexpressFunc.ComboBoxAddItem(_control, "115200", "115,200");
            KnDevexpressFunc.ComboBoxAddItem(_control, "128000", "128,000");

            if (null != _default_key)
            {
                KnDevexpressFunc.ComboBoxSetSelectByKey(_control, _default_key);
            }
        }
Beispiel #19
0
        static internal void LoadCBB(DevExpress.XtraEditors.ComboBoxEdit cbKQ, string col, string sql)
        {
            DataTable dt = new DataTable();

            cmd = new OleDbCommand(sql, cnn);
            dr  = cmd.ExecuteReader();
            while (dr.Read())
            {
                if (dcts.GetStr(dr[col]).Length > 0)
                {
                    cbKQ.Properties.Items.Add(dcts.GetStr(dr[col]));
                }
            }
            dr.Close();
        }
 private void InitializeComponent()
 {
     this.cmbEditDriverBelt = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl1     = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEditDriverBelt.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // cmbEditDriverBelt
     //
     this.cmbEditDriverBelt.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbEditDriverBelt.EditValue = "不限";
     this.cmbEditDriverBelt.Location  = new System.Drawing.Point(100, 3);
     this.cmbEditDriverBelt.Name      = "cmbEditDriverBelt";
     this.cmbEditDriverBelt.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.cmbEditDriverBelt.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbEditDriverBelt.Properties.Items.AddRange(new object[] {
         "不限",
         "未识别",
         "未系",
         "已系"
     });
     this.cmbEditDriverBelt.Properties.LookAndFeel.SkinName = "DevExpress Dark Style";
     this.cmbEditDriverBelt.Properties.NullText             = "[EditValue is null]";
     this.cmbEditDriverBelt.Properties.PopupFormMinSize     = new System.Drawing.Size(190, 20);
     this.cmbEditDriverBelt.Properties.TextEditStyle        = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbEditDriverBelt.Size     = new System.Drawing.Size(96, 20);
     this.cmbEditDriverBelt.TabIndex = 126;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(2, 7);
     this.labelControl1.Name     = "labelControl1";
     this.labelControl1.Size     = new System.Drawing.Size(58, 14);
     this.labelControl1.TabIndex = 125;
     this.labelControl1.Text     = "安全带(主)";
     //
     // ucSearchPara_Behavior
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.Controls.Add(this.cmbEditDriverBelt);
     this.Controls.Add(this.labelControl1);
     this.Name = "ucSearchPara_Behavior";
     ((System.ComponentModel.ISupportInitialize)(this.cmbEditDriverBelt.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #21
0
        static public void ComboBoxSetSelectByValue(DevExpress.XtraEditors.ComboBoxEdit _ctrl, object _value, bool _use_default = true)
        {
            foreach (TsDevExpressComboItem item in _ctrl.Properties.Items)
            {
                if (item.m_value.ToString() == _value.ToString())
                {
                    _ctrl.SelectedItem = item;
                    return;
                }
            }

            if (_ctrl.Properties.Items.Count > 0 && _use_default)
            {
                _ctrl.SelectedItem = _ctrl.Properties.Items[0];
            }
        }
Beispiel #22
0
        private void cmbWeekendMonday_Validating(object sender, CancelEventArgs e)
        {
            if (sender != null && sender is DevExpress.XtraEditors.ComboBoxEdit)
            {
                DevExpress.XtraEditors.ComboBoxEdit control = (DevExpress.XtraEditors.ComboBoxEdit)sender;

                if (control.SelectedIndex < 0)
                {
                    ErrorProvider.SetError(control, "Please select value.");
                }
                else
                {
                    ErrorProvider.SetError(control, string.Empty);
                }
            }
        }
Beispiel #23
0
        /// <summary>
        /// Obtém o item selecionado
        /// </summary>
        /// <typeparam name="T"></typeparam>Tipo
        /// <param name="cbEdit"></param>Caixa de combinação
        /// <returns></returns>O item selecionado
        public static List <T> GetItens <T>(this DevExpress.XtraEditors.ComboBoxEdit cbEdit) where T : new()
        {
            var lista = new List <T>();
            var count = cbEdit.Properties.Items.Count;

            for (int i = 0; i < count; i++)
            {
                cbEdit.SelectedIndex = i;
                if (cbEdit.SelectedItem != null)
                {
                    T item = (T)cbEdit.SelectedItem;
                    lista.Add(item);
                }
            }
            return(lista);
        }
Beispiel #24
0
        public LocalizedItem(DevExpress.XtraEditors.ComboBoxEdit combo, string[] resourceIds)
        {
            this.resourceIds = new string[resourceIds.Length];
            for (int index = 0; index < resourceIds.Length; index++)
            {
                this.resourceIds[index] = resourceIds[index];
            }
            this.obj           = (object)combo;
            this.type          = ItemType.ComboBoxEdit;
            this.defaultValues = new string[resourceIds.Length];

            for (int index = 0; index < resourceIds.Length; index++)
            {
                this.defaultValues[index] = combo.Properties.Items[index].ToString();
            }
        }
Beispiel #25
0
        static public bool ComboBoxSetSelectByKey(DevExpress.XtraEditors.ComboBoxEdit _ctrl, object _key, bool _use_default = true)
        {
            foreach (TsDevExpressComboItem item in _ctrl.Properties.Items)
            {
                if (item.m_key.ToString() == _key.ToString())
                {
                    _ctrl.SelectedItem = item;
                    return(true);
                }
            }

            if (_ctrl.Properties.Items.Count > 0 && _use_default)
            {
                _ctrl.SelectedItem = _ctrl.Properties.Items[0];
            }
            return(false);
        }
Beispiel #26
0
 private void ComboBoxEdit2_SelectedIndexChanged(object sender, EventArgs e)
 {
     #region 單三相表邏輯
     DevExpress.XtraEditors.ComboBoxEdit comboBox = (DevExpress.XtraEditors.ComboBoxEdit)sender;
     int Index = Convert.ToInt32(comboBox.Tag);
     comboBoxEdits3[Index].Enabled = true;
     comboBoxEdits4[Index].Enabled = true;
     if (comboBox.Text == "三相")
     {
         if (comboBoxEdits[Index].Text == "PA60")
         {
             comboBoxEdits4[Index].Enabled       = false;
             comboBoxEdits4[Index].SelectedIndex = -1;
             comboBoxEdits3[Index].Enabled       = true;
         }
         else
         {
             comboBoxEdits4[Index].Enabled       = false;
             comboBoxEdits4[Index].SelectedIndex = -1;
             comboBoxEdits3[Index].SelectedIndex = 0;
             comboBoxEdits3[Index].Enabled       = false;
         }
     }
     else
     {
         if (comboBoxEdits[Index].Text == "PA310")
         {
             comboBoxEdits4[Index].Enabled       = false;
             comboBoxEdits4[Index].SelectedIndex = 0;
             comboBoxEdits3[Index].SelectedIndex = 0;
             comboBoxEdits3[Index].Enabled       = false;
         }
         else if (comboBoxEdits[Index].Text == "PA60")
         {
             comboBoxEdits3[Index].Enabled = true;
             comboBoxEdits4[Index].Enabled = true;
         }
         else
         {
             comboBoxEdits4[Index].Enabled       = true;
             comboBoxEdits3[Index].SelectedIndex = 0;
             comboBoxEdits3[Index].Enabled       = false;
         }
     }
     #endregion
 }
 private void InitializeComponent()
 {
     this.labelControl3        = new DevExpress.XtraEditors.LabelControl();
     this.cmbBoxEditResultType = new DevExpress.XtraEditors.ComboBoxEdit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBoxEditResultType.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(2, 6);
     this.labelControl3.Name     = "labelControl3";
     this.labelControl3.Size     = new System.Drawing.Size(24, 14);
     this.labelControl3.TabIndex = 109;
     this.labelControl3.Text     = "类型";
     //
     // cmbBoxEditResultType
     //
     this.cmbBoxEditResultType.EditValue = "不限";
     this.cmbBoxEditResultType.Location  = new System.Drawing.Point(55, 3);
     this.cmbBoxEditResultType.Name      = "cmbBoxEditResultType";
     this.cmbBoxEditResultType.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.cmbBoxEditResultType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbBoxEditResultType.Properties.Items.AddRange(new object[] {
         "不限",
         "有牌",
         "无牌",
         "未识别",
         "图片错误"
     });
     this.cmbBoxEditResultType.Properties.LookAndFeel.SkinName = "DevExpress Dark Style";
     this.cmbBoxEditResultType.Properties.TextEditStyle        = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbBoxEditResultType.Size     = new System.Drawing.Size(141, 20);
     this.cmbBoxEditResultType.TabIndex = 108;
     //
     // ucSearchPara_ResultType
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.Controls.Add(this.labelControl3);
     this.Controls.Add(this.cmbBoxEditResultType);
     this.Name = "ucSearchPara_ResultType";
     ((System.ComponentModel.ISupportInitialize)(this.cmbBoxEditResultType.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #28
0
        private string banca6GUI; // = TipoBilanco.IsProvinciale ? Properties.Settings.Default.Banca3Nome : Properties.Settings.Default.Banca3NomeRegionale;



        public DevDesktopComboConto(DevExpress.XtraEditors.ComboBoxEdit underlyingList, string banca1, string banca2, string banca3, string banca4, string banca5, string banca6)
        {
            //banca1GUI = TipoBilanco.IsProvinciale ? Properties.Settings.Default.Banca1Nome : Properties.Settings.Default.Banca1NomeRegionale;
            //banca2GUI = TipoBilanco.IsProvinciale ? Properties.Settings.Default.Banca2Nome : Properties.Settings.Default.Banca2NomeRegionale;
            //banca3GUI = TipoBilanco.IsProvinciale ? Properties.Settings.Default.Banca3Nome : Properties.Settings.Default.Banca3NomeRegionale;

            banca1GUI = banca1;
            banca2GUI = banca2;
            banca3GUI = banca3;

            banca4GUI = banca4;
            banca5GUI = banca5;
            banca6GUI = banca6;


            this.underlyingList = underlyingList;
            underlyingList.Properties.Sorted = true;


            //underlyingList.Properties.Items.Clear();
            //underlyingList.Properties.Items.Add(banca1GUI);
            //underlyingList.Properties.Items.Add(banca2GUI);
            //underlyingList.Properties.Items.Add(banca3GUI);
            //underlyingList.Properties.Items.Add("Cassa");
            //underlyingList.Properties.Items.Add("Accantonamento");
            //underlyingList.Properties.Items.Add("Contropartita");


            underlyingList.Properties.Items.Add("(Seleziona una contropartita)");
            underlyingList.Properties.Items.Add(banca1GUI);
            underlyingList.Properties.Items.Add(banca2GUI);
            underlyingList.Properties.Items.Add(banca3GUI);
            underlyingList.Properties.Items.Add(banca4GUI);
            underlyingList.Properties.Items.Add(banca5GUI);
            underlyingList.Properties.Items.Add(banca6GUI);
            underlyingList.Properties.Items.Add("Cassa");
            underlyingList.Properties.Items.Add("Altre contropartite");
            //underlyingList.Properties.Items.Add(AbstractBilancio.AREA_BILANCIO_ATTIVITA);
            //underlyingList.Properties.Items.Add(AbstractBilancio.AREA_BILANCIO_PASSIVITA);
            //underlyingList.Properties.Items.Add(AbstractBilancio.AREA_BILANCIO_ENTRATE);
            //underlyingList.Properties.Items.Add(AbstractBilancio.AREA_BILANCIO_SPESE);


            // underlyingList.Text = banca1GUI;
        }
Beispiel #29
0
        /// <summary>
        /// ComboBoxEdit加载品种
        /// </summary>
        /// <param name="cbo">控件</param>
        public void ComboBoxEditBindPZ(DevExpress.XtraEditors.ComboBoxEdit cbo)
        {
            cbo.Text = "";
            cbo.Properties.Items.Clear();
            DataTable dt = bll_TQB_STD_MAIN.GetPZList().Tables[0];

            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_PROD_KIND"].ToString());
                }
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
Beispiel #30
0
        /// <summary>
        /// ComboBoxEdit加载钢种
        /// </summary>
        /// <param name="cbo">控件</param>
        public void ComboBoxEditBindGZ(string PM, DevExpress.XtraEditors.ComboBoxEdit cbo)
        {
            cbo.Text = "";
            cbo.Properties.Items.Clear();
            DataTable dt = bll_TQB_STD_MAIN.GetGZListByPM(PM).Tables[0];

            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_STL_GRD"].ToString());
                }
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.datasource = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.password = new DevExpress.XtraEditors.TextEdit();
     this.dbsource = new DevExpress.XtraEditors.TextEdit();
     this.username = new DevExpress.XtraEditors.TextEdit();
     this.dbtype = new DevExpress.XtraEditors.ComboBoxEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.datasource.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.password.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dbsource.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.username.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dbtype.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.datasource);
     this.layoutControl1.Controls.Add(this.simpleButton1);
     this.layoutControl1.Controls.Add(this.password);
     this.layoutControl1.Controls.Add(this.dbsource);
     this.layoutControl1.Controls.Add(this.username);
     this.layoutControl1.Controls.Add(this.dbtype);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(735, 389);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // datasource
     //
     this.datasource.Location = new System.Drawing.Point(307, 152);
     this.datasource.Name = "datasource";
     this.datasource.Size = new System.Drawing.Size(254, 36);
     this.datasource.StyleController = this.layoutControl1;
     this.datasource.TabIndex = 9;
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(444, 341);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(117, 36);
     this.simpleButton1.StyleController = this.layoutControl1;
     this.simpleButton1.TabIndex = 8;
     this.simpleButton1.Text = "确定";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // password
     //
     this.password.Location = new System.Drawing.Point(307, 232);
     this.password.Name = "password";
     this.password.Size = new System.Drawing.Size(254, 36);
     this.password.StyleController = this.layoutControl1;
     this.password.TabIndex = 7;
     //
     // dbsource
     //
     this.dbsource.Location = new System.Drawing.Point(307, 112);
     this.dbsource.Name = "dbsource";
     this.dbsource.Size = new System.Drawing.Size(254, 36);
     this.dbsource.StyleController = this.layoutControl1;
     this.dbsource.TabIndex = 6;
     //
     // username
     //
     this.username.Location = new System.Drawing.Point(307, 192);
     this.username.Name = "username";
     this.username.Size = new System.Drawing.Size(254, 36);
     this.username.StyleController = this.layoutControl1;
     this.username.TabIndex = 5;
     //
     // dbtype
     //
     this.dbtype.Location = new System.Drawing.Point(307, 72);
     this.dbtype.Name = "dbtype";
     this.dbtype.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dbtype.Properties.Items.AddRange(new object[] {
     "MSSQL",
     "ORACLE",
     "MYSQL"});
     this.dbtype.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.dbtype.Size = new System.Drawing.Size(254, 36);
     this.dbtype.StyleController = this.layoutControl1;
     this.dbtype.TabIndex = 4;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.emptySpaceItem1,
     this.emptySpaceItem2,
     this.emptySpaceItem3,
     this.emptySpaceItem4,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5,
     this.emptySpaceItem5,
     this.layoutControlItem6});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Size = new System.Drawing.Size(735, 389);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.dbtype;
     this.layoutControlItem1.CustomizationFormText = "数据库类型";
     this.layoutControlItem1.Location = new System.Drawing.Point(172, 60);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(381, 40);
     this.layoutControlItem1.Text = "数据库类型";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(120, 29);
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(172, 260);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(381, 69);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(172, 0);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(381, 60);
     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(0, 0);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(172, 369);
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem4
     //
     this.emptySpaceItem4.AllowHotTrack = false;
     this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4";
     this.emptySpaceItem4.Location = new System.Drawing.Point(553, 0);
     this.emptySpaceItem4.Name = "emptySpaceItem4";
     this.emptySpaceItem4.Size = new System.Drawing.Size(162, 369);
     this.emptySpaceItem4.Text = "emptySpaceItem4";
     this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.username;
     this.layoutControlItem2.CustomizationFormText = "用户名";
     this.layoutControlItem2.Location = new System.Drawing.Point(172, 180);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(381, 40);
     this.layoutControlItem2.Text = "用户名";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(120, 29);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.dbsource;
     this.layoutControlItem3.CustomizationFormText = "数据源";
     this.layoutControlItem3.Location = new System.Drawing.Point(172, 100);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(381, 40);
     this.layoutControlItem3.Text = "数据源";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(120, 29);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.password;
     this.layoutControlItem4.CustomizationFormText = "密码";
     this.layoutControlItem4.Location = new System.Drawing.Point(172, 220);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(381, 40);
     this.layoutControlItem4.Text = "密码";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(120, 29);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.simpleButton1;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(432, 329);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(121, 40);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // emptySpaceItem5
     //
     this.emptySpaceItem5.AllowHotTrack = false;
     this.emptySpaceItem5.CustomizationFormText = "emptySpaceItem5";
     this.emptySpaceItem5.Location = new System.Drawing.Point(172, 329);
     this.emptySpaceItem5.Name = "emptySpaceItem5";
     this.emptySpaceItem5.Size = new System.Drawing.Size(260, 40);
     this.emptySpaceItem5.Text = "emptySpaceItem5";
     this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.datasource;
     this.layoutControlItem6.CustomizationFormText = "数据库";
     this.layoutControlItem6.Location = new System.Drawing.Point(172, 140);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(381, 40);
     this.layoutControlItem6.Text = "数据库";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(120, 29);
     //
     // Login
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(735, 389);
     this.Controls.Add(this.layoutControl1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Login";
     this.Text = "登陆";
     this.Load += new System.EventHandler(this.Login_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.datasource.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.password.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dbsource.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.username.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dbtype.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.OK = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.cancel = new DevExpress.XtraBars.BarButtonItem();
            this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.showTareBarButtonItem = new DevExpress.XtraBars.BarCheckItem();
            this.showNomenclatureBarButtonItem = new DevExpress.XtraBars.BarCheckItem();
            this.openPalletButton = new DevExpress.XtraBars.BarButtonItem();
            this.NomenclatureInfoButtonsBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.PlansBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.panelControl = new DevExpress.XtraEditors.PanelControl();
            this.date = new DevExpress.XtraEditors.DateEdit();
            this.Car = new DevExpress.XtraEditors.LabelControl();
            this.Carrier = new DevExpress.XtraEditors.LabelControl();
            this.Driver = new DevExpress.XtraEditors.LabelControl();
            this.Contractor = new DevExpress.XtraEditors.LabelControl();
            this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.State = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
            this.label = new DevExpress.XtraEditors.LabelControl();
            this.NomenclatureInfo = new DevExpress.XtraGrid.GridControl();
            this.nomenclatureView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
            this.Info = new DevExpress.XtraEditors.LabelControl();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.tabControl = new DevExpress.XtraTab.XtraTabControl();
            this.waresTabPage = new DevExpress.XtraTab.XtraTabPage();
            this.plansTabPage = new DevExpress.XtraTab.XtraTabPage();
            this.Plans = new DevExpress.XtraGrid.GridControl();
            this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.barCheckItem1 = new DevExpress.XtraBars.BarCheckItem();
            this.barCheckItem2 = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
            this.createAcceptanceButtonItem = new DevExpress.XtraBars.BarButtonItem();
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
            this.panelControl.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.date.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.date.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tabControl)).BeginInit();
            this.tabControl.SuspendLayout();
            this.waresTabPage.SuspendLayout();
            this.plansTabPage.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Plans)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
            this.SuspendLayout();
            //
            // ribbonStatusBar
            //
            this.ribbonStatusBar.ItemLinks.Add(this.OK);
            this.ribbonStatusBar.ItemLinks.Add(this.barButtonItem2);
            this.ribbonStatusBar.ItemLinks.Add(this.cancel);
            this.ribbonStatusBar.Location = new System.Drawing.Point(0, 572);
            this.ribbonStatusBar.Name = "ribbonStatusBar";
            this.ribbonStatusBar.Ribbon = this.ribbon;
            this.ribbonStatusBar.Size = new System.Drawing.Size(884, 31);
            //
            // OK
            //
            this.OK.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.OK.Caption = "OK";
            this.OK.Id = 0;
            this.OK.ImageIndex = 0;
            this.OK.Name = "OK";
            this.OK.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OK_ItemClick);
            //
            // barButtonItem2
            //
            this.barButtonItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem2.Caption = "��������";
            this.barButtonItem2.Id = 1;
            this.barButtonItem2.Name = "barButtonItem2";
            this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Write_ItemClick);
            //
            // cancel
            //
            this.cancel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.cancel.Caption = "³����";
            this.cancel.Id = 2;
            this.cancel.ImageIndex = 1;
            this.cancel.Name = "cancel";
            this.cancel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.cancel_ItemClick);
            //
            // ribbon
            //
            this.ribbon.ApplicationButtonText = null;
            this.ribbon.ExpandCollapseItem.Id = 0;
            this.ribbon.ExpandCollapseItem.Name = "";
            this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbon.ExpandCollapseItem,
            this.OK,
            this.barButtonItem2,
            this.cancel,
            this.showTareBarButtonItem,
            this.showNomenclatureBarButtonItem,
            this.openPalletButton});
            this.ribbon.Location = new System.Drawing.Point(0, 0);
            this.ribbon.MaxItemId = 22;
            this.ribbon.Name = "ribbon";
            this.ribbon.Size = new System.Drawing.Size(884, 49);
            this.ribbon.StatusBar = this.PlansBar;
            this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
            //
            // showTareBarButtonItem
            //
            this.showTareBarButtonItem.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.showTareBarButtonItem.Caption = "����";
            this.showTareBarButtonItem.Id = 18;
            this.showTareBarButtonItem.Name = "showTareBarButtonItem";
            this.showTareBarButtonItem.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.showTareBarButtonItem_CheckedChanged);
            //
            // showNomenclatureBarButtonItem
            //
            this.showNomenclatureBarButtonItem.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.showNomenclatureBarButtonItem.Caption = "������������";
            this.showNomenclatureBarButtonItem.Id = 20;
            this.showNomenclatureBarButtonItem.Name = "showNomenclatureBarButtonItem";
            this.showNomenclatureBarButtonItem.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.showNomenclatureBarButtonItem_CheckedChanged);
            //
            // openPalletButton
            //
            this.openPalletButton.Caption = "�������� ������";
            this.openPalletButton.Id = 21;
            this.openPalletButton.Name = "openPalletButton";
            this.openPalletButton.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.openPalletButton_ItemClick);
            //
            // NomenclatureInfoButtonsBar
            //
            this.NomenclatureInfoButtonsBar.Dock = System.Windows.Forms.DockStyle.Top;
            this.NomenclatureInfoButtonsBar.ItemLinks.Add(this.showNomenclatureBarButtonItem);
            this.NomenclatureInfoButtonsBar.ItemLinks.Add(this.showTareBarButtonItem);
            this.NomenclatureInfoButtonsBar.ItemLinks.Add(this.openPalletButton);
            this.NomenclatureInfoButtonsBar.Location = new System.Drawing.Point(0, 0);
            this.NomenclatureInfoButtonsBar.Name = "NomenclatureInfoButtonsBar";
            this.NomenclatureInfoButtonsBar.Ribbon = this.ribbon;
            this.NomenclatureInfoButtonsBar.Size = new System.Drawing.Size(878, 27);
            //
            // PlansBar
            //
            this.PlansBar.Dock = System.Windows.Forms.DockStyle.Top;
            this.PlansBar.Location = new System.Drawing.Point(0, 0);
            this.PlansBar.Name = "PlansBar";
            this.PlansBar.Ribbon = this.ribbon;
            this.PlansBar.Size = new System.Drawing.Size(878, 27);
            //
            // panelControl
            //
            this.panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl.Controls.Add(this.date);
            this.panelControl.Controls.Add(this.Car);
            this.panelControl.Controls.Add(this.Carrier);
            this.panelControl.Controls.Add(this.Driver);
            this.panelControl.Controls.Add(this.Contractor);
            this.panelControl.Controls.Add(this.labelControl7);
            this.panelControl.Controls.Add(this.labelControl6);
            this.panelControl.Controls.Add(this.labelControl5);
            this.panelControl.Controls.Add(this.labelControl4);
            this.panelControl.Controls.Add(this.State);
            this.panelControl.Controls.Add(this.labelControl3);
            this.panelControl.Controls.Add(this.label);
            this.panelControl.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelControl.Location = new System.Drawing.Point(0, 49);
            this.panelControl.Name = "panelControl";
            this.panelControl.Size = new System.Drawing.Size(884, 94);
            this.panelControl.TabIndex = 2;
            //
            // date
            //
            this.date.EditValue = null;
            this.date.Location = new System.Drawing.Point(366, 8);
            this.date.MenuManager = this.ribbon;
            this.date.Name = "date";
            this.date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.date.Size = new System.Drawing.Size(100, 20);
            this.date.TabIndex = 17;
            //
            // Car
            //
            this.Car.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.Car.Location = new System.Drawing.Point(366, 72);
            this.Car.Name = "Car";
            this.Car.Size = new System.Drawing.Size(21, 13);
            this.Car.TabIndex = 16;
            this.Car.Text = "{0}";
            //
            // Carrier
            //
            this.Carrier.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.Carrier.Location = new System.Drawing.Point(366, 53);
            this.Carrier.Name = "Carrier";
            this.Carrier.Size = new System.Drawing.Size(21, 13);
            this.Carrier.TabIndex = 15;
            this.Carrier.Text = "{0}";
            //
            // Driver
            //
            this.Driver.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.Driver.Location = new System.Drawing.Point(99, 72);
            this.Driver.Name = "Driver";
            this.Driver.Size = new System.Drawing.Size(21, 13);
            this.Driver.TabIndex = 14;
            this.Driver.Text = "{0}";
            //
            // Contractor
            //
            this.Contractor.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.Contractor.Location = new System.Drawing.Point(99, 53);
            this.Contractor.Name = "Contractor";
            this.Contractor.Size = new System.Drawing.Size(21, 13);
            this.Contractor.TabIndex = 13;
            this.Contractor.Text = "{0}";
            //
            // labelControl7
            //
            this.labelControl7.Location = new System.Drawing.Point(261, 72);
            this.labelControl7.Name = "labelControl7";
            this.labelControl7.Size = new System.Drawing.Size(40, 13);
            this.labelControl7.TabIndex = 12;
            this.labelControl7.Text = "������";
            //
            // labelControl6
            //
            this.labelControl6.Location = new System.Drawing.Point(10, 72);
            this.labelControl6.Name = "labelControl6";
            this.labelControl6.Size = new System.Drawing.Size(28, 13);
            this.labelControl6.TabIndex = 10;
            this.labelControl6.Text = "����";
            //
            // labelControl5
            //
            this.labelControl5.Location = new System.Drawing.Point(261, 53);
            this.labelControl5.Name = "labelControl5";
            this.labelControl5.Size = new System.Drawing.Size(57, 13);
            this.labelControl5.TabIndex = 8;
            this.labelControl5.Text = "���������";
            //
            // labelControl4
            //
            this.labelControl4.Location = new System.Drawing.Point(10, 53);
            this.labelControl4.Name = "labelControl4";
            this.labelControl4.Size = new System.Drawing.Size(60, 13);
            this.labelControl4.TabIndex = 6;
            this.labelControl4.Text = "����������";
            //
            // State
            //
            this.State.Location = new System.Drawing.Point(99, 8);
            this.State.MenuManager = this.ribbon;
            this.State.Name = "State";
            this.State.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.State.Size = new System.Drawing.Size(156, 20);
            this.State.TabIndex = 0;
            //
            // labelControl3
            //
            this.labelControl3.Location = new System.Drawing.Point(10, 11);
            this.labelControl3.Name = "labelControl3";
            this.labelControl3.Size = new System.Drawing.Size(82, 13);
            this.labelControl3.TabIndex = 4;
            this.labelControl3.Text = "���� ���������";
            //
            // label
            //
            this.label.Location = new System.Drawing.Point(272, 11);
            this.label.Name = "label";
            this.label.Size = new System.Drawing.Size(83, 13);
            this.label.TabIndex = 2;
            this.label.Text = "���� ���������";
            //
            // NomenclatureInfo
            //
            this.NomenclatureInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.NomenclatureInfo.Location = new System.Drawing.Point(0, 27);
            this.NomenclatureInfo.MainView = this.nomenclatureView;
            this.NomenclatureInfo.MenuManager = this.ribbon;
            this.NomenclatureInfo.Name = "NomenclatureInfo";
            this.NomenclatureInfo.Size = new System.Drawing.Size(878, 354);
            this.NomenclatureInfo.TabIndex = 1;
            this.NomenclatureInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.nomenclatureView});
            //
            // nomenclatureView
            //
            this.nomenclatureView.GridControl = this.NomenclatureInfo;
            this.nomenclatureView.Name = "nomenclatureView";
            this.nomenclatureView.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.nomenclatureView_RowStyle);
            //
            // panelControl1
            //
            this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl1.Controls.Add(this.pictureEdit1);
            this.panelControl1.Controls.Add(this.Info);
            this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelControl1.Location = new System.Drawing.Point(0, 552);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(884, 20);
            this.panelControl1.TabIndex = 0;
            //
            // pictureEdit1
            //
            this.pictureEdit1.Dock = System.Windows.Forms.DockStyle.Left;
            this.pictureEdit1.EditValue = global::FMCG.Properties.Resources._1317825614_information_balloon;
            this.pictureEdit1.Location = new System.Drawing.Point(0, 0);
            this.pictureEdit1.MenuManager = this.ribbon;
            this.pictureEdit1.Name = "pictureEdit1";
            this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
            this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.pictureEdit1.Size = new System.Drawing.Size(20, 20);
            this.pictureEdit1.TabIndex = 3;
            this.pictureEdit1.ToolTip = "��� ������� ��������� �������� �� ���� ���������� �����������";
            this.pictureEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
            this.pictureEdit1.ToolTipTitle = "������:";
            //
            // Info
            //
            this.Info.Appearance.ForeColor = System.Drawing.Color.Gray;
            this.Info.Location = new System.Drawing.Point(24, 3);
            this.Info.Name = "Info";
            this.Info.Size = new System.Drawing.Size(12, 13);
            this.Info.TabIndex = 1;
            this.Info.Text = "...";
            //
            // barButtonItem1
            //
            this.barButtonItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem1.Caption = "OK";
            this.barButtonItem1.Id = 0;
            this.barButtonItem1.ImageIndex = 0;
            this.barButtonItem1.Name = "barButtonItem1";
            //
            // barButtonItem3
            //
            this.barButtonItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem3.Caption = "��������";
            this.barButtonItem3.Id = 1;
            this.barButtonItem3.Name = "barButtonItem3";
            //
            // barButtonItem4
            //
            this.barButtonItem4.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem4.Caption = "³����";
            this.barButtonItem4.Id = 2;
            this.barButtonItem4.ImageIndex = 1;
            this.barButtonItem4.Name = "barButtonItem4";
            //
            // tabControl
            //
            this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl.Location = new System.Drawing.Point(0, 143);
            this.tabControl.Name = "tabControl";
            this.tabControl.SelectedTabPage = this.waresTabPage;
            this.tabControl.Size = new System.Drawing.Size(884, 409);
            this.tabControl.TabIndex = 9;
            this.tabControl.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.waresTabPage,
            this.plansTabPage});
            //
            // waresTabPage
            //
            this.waresTabPage.Controls.Add(this.NomenclatureInfo);
            this.waresTabPage.Controls.Add(this.NomenclatureInfoButtonsBar);
            this.waresTabPage.Name = "waresTabPage";
            this.waresTabPage.Size = new System.Drawing.Size(878, 381);
            this.waresTabPage.Text = "������������";
            //
            // plansTabPage
            //
            this.plansTabPage.Controls.Add(this.Plans);
            this.plansTabPage.Controls.Add(this.PlansBar);
            this.plansTabPage.Name = "plansTabPage";
            this.plansTabPage.Size = new System.Drawing.Size(878, 381);
            this.plansTabPage.Text = "������ ���������";
            //
            // Plans
            //
            this.Plans.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Plans.Location = new System.Drawing.Point(0, 27);
            this.Plans.MainView = this.gridView3;
            this.Plans.MenuManager = this.ribbon;
            this.Plans.Name = "Plans";
            this.Plans.Size = new System.Drawing.Size(878, 354);
            this.Plans.TabIndex = 7;
            this.Plans.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView3});
            //
            // gridView3
            //
            this.gridView3.GridControl = this.Plans;
            this.gridView3.Name = "gridView3";
            //
            // barCheckItem1
            //
            this.barCheckItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barCheckItem1.Caption = "������������";
            this.barCheckItem1.Id = 20;
            this.barCheckItem1.Name = "barCheckItem1";
            //
            // barCheckItem2
            //
            this.barCheckItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barCheckItem2.Caption = "����";
            this.barCheckItem2.Id = 18;
            this.barCheckItem2.Name = "barCheckItem2";
            //
            // barButtonItem5
            //
            this.barButtonItem5.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem5.Caption = "OK";
            this.barButtonItem5.Id = 0;
            this.barButtonItem5.ImageIndex = 0;
            this.barButtonItem5.Name = "barButtonItem5";
            //
            // barButtonItem6
            //
            this.barButtonItem6.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem6.Caption = "��������";
            this.barButtonItem6.Id = 1;
            this.barButtonItem6.Name = "barButtonItem6";
            //
            // barButtonItem7
            //
            this.barButtonItem7.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem7.Caption = "³����";
            this.barButtonItem7.Id = 2;
            this.barButtonItem7.ImageIndex = 1;
            this.barButtonItem7.Name = "barButtonItem7";
            //
            // barButtonItem8
            //
            this.barButtonItem8.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem8.Caption = "OK";
            this.barButtonItem8.Id = 0;
            this.barButtonItem8.ImageIndex = 0;
            this.barButtonItem8.Name = "barButtonItem8";
            //
            // barButtonItem9
            //
            this.barButtonItem9.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem9.Caption = "��������";
            this.barButtonItem9.Id = 1;
            this.barButtonItem9.Name = "barButtonItem9";
            //
            // barButtonItem10
            //
            this.barButtonItem10.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem10.Caption = "³����";
            this.barButtonItem10.Id = 2;
            this.barButtonItem10.ImageIndex = 1;
            this.barButtonItem10.Name = "barButtonItem10";
            //
            // createAcceptanceButtonItem
            //
            this.createAcceptanceButtonItem.Caption = "�������� \"��������� ������\"";
            this.createAcceptanceButtonItem.Id = 18;
            this.createAcceptanceButtonItem.Name = "createAcceptanceButtonItem";
            //
            // AcceptanceOfGoodsItemForm
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(884, 603);
            this.Controls.Add(this.tabControl);
            this.Controls.Add(this.panelControl1);
            this.Controls.Add(this.panelControl);
            this.Controls.Add(this.ribbonStatusBar);
            this.Controls.Add(this.ribbon);
            this.KeyPreview = true;
            this.Name = "AcceptanceOfGoodsItemForm";
            this.Ribbon = this.ribbon;
            this.StatusBar = this.ribbonStatusBar;
            this.Text = "Item form";

            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Itemform_KeyDown);
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
            this.panelControl.ResumeLayout(false);
            this.panelControl.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.date.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.date.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            this.panelControl1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tabControl)).EndInit();
            this.tabControl.ResumeLayout(false);
            this.waresTabPage.ResumeLayout(false);
            this.plansTabPage.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.Plans)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).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(frmXuatNhapTon));
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiXem = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSua = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatExcel = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.txtKhoHang = new DevExpress.XtraEditors.GridLookUpEdit();
     this.kHOHANGBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsKho = new Do_An_Quan_Ly_Kho.Kho.DS.dsKho();
     this.txtKhoHang_View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMa_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Kho1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDia_Chi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEmail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDien_Thoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colFax = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDi_Dong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThu_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGhi_Chu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.dtDen = new DevExpress.XtraEditors.DateEdit();
     this.dtTu = new DevExpress.XtraEditors.DateEdit();
     this.cbChonNgay = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.xuatNhapTonTheoNgayBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsXuatNhapTon = new Do_An_Quan_Ly_Kho.XuatNhapTon.DataSet.dsXuatNhapTon();
     this.gbList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMa_Hang_Hoa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDon_Vi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMa_Kho_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Luong_Dau_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.rptMayTinh = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colSo_Luong_Nhap_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Luong_Xuat_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Luong_Cuoi_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Dau_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Nhap_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Xuat_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Cuoi_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNhom_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Nhom_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.kHO_HANGTableAdapter = new Do_An_Quan_Ly_Kho.Kho.DS.dsKhoTableAdapters.KHO_HANGTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kHOHANGBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsKho)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang_View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xuatNhapTonTheoNgayBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsXuatNhapTon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     this.SuspendLayout();
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     this.img.Images.SetKeyName(54, "document-excel-icon.png");
     this.img.Images.SetKeyName(55, "Excel-icon (1).png");
     this.img.Images.SetKeyName(56, "Excel-icon (2).png");
     this.img.Images.SetKeyName(57, "Excel-icon.png");
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiXem,
     this.bbiSua,
     this.bbiXoa,
     this.bbiDong,
     this.bbiXuatExcel});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 13;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(49, 160);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem, true),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, false, this.bbiSua, false),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, false, this.bbiXoa, false),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiXuatExcel, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong)});
     this.bar2.OptionsBar.AllowDelete = true;
     this.bar2.OptionsBar.DrawSizeGrip = true;
     this.bar2.Text = "Main menu";
     //
     // bbiXem
     //
     this.bbiXem.Caption = "Xem";
     this.bbiXem.Id = 0;
     this.bbiXem.ImageIndex = 35;
     this.bbiXem.Name = "bbiXem";
     this.bbiXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXem_ItemClick);
     //
     // bbiSua
     //
     this.bbiSua.Caption = "Sửa";
     this.bbiSua.Id = 1;
     this.bbiSua.ImageIndex = 29;
     this.bbiSua.Name = "bbiSua";
     this.bbiSua.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiSua.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiXoa
     //
     this.bbiXoa.Caption = "Xóa";
     this.bbiXoa.Id = 2;
     this.bbiXoa.ImageIndex = 16;
     this.bbiXoa.Name = "bbiXoa";
     this.bbiXoa.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXoa.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiXuatExcel
     //
     this.bbiXuatExcel.Caption = "Xuất Excel";
     this.bbiXuatExcel.Id = 12;
     this.bbiXuatExcel.ImageIndex = 55;
     this.bbiXuatExcel.Name = "bbiXuatExcel";
     this.bbiXuatExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatExcel_ItemClick);
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 6;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1102, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 416);
     this.barDockControlBottom.Size = new System.Drawing.Size(1102, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 392);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1102, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 392);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.txtKhoHang);
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.dtDen);
     this.layoutControl1.Controls.Add(this.dtTu);
     this.layoutControl1.Controls.Add(this.cbChonNgay);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 24);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControl1.TabIndex = 4;
     this.layoutControl1.Text = "layoutControl1";
     //
     // txtKhoHang
     //
     this.txtKhoHang.EditValue = "";
     this.txtKhoHang.Location = new System.Drawing.Point(55, 2);
     this.txtKhoHang.MenuManager = this.bm;
     this.txtKhoHang.Name = "txtKhoHang";
     this.txtKhoHang.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
     this.txtKhoHang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtKhoHang.Properties.DataSource = this.kHOHANGBindingSource;
     this.txtKhoHang.Properties.DisplayMember = "Ten_Kho";
     this.txtKhoHang.Properties.NullText = "";
     this.txtKhoHang.Properties.NullValuePrompt = "(Kho Hàng)";
     this.txtKhoHang.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtKhoHang.Properties.ValueMember = "Ma_Kho";
     this.txtKhoHang.Properties.View = this.txtKhoHang_View;
     this.txtKhoHang.Size = new System.Drawing.Size(121, 20);
     this.txtKhoHang.StyleController = this.layoutControl1;
     this.txtKhoHang.TabIndex = 9;
     this.txtKhoHang.EditValueChanged += new System.EventHandler(this.txtKhoHang_EditValueChanged);
     //
     // kHOHANGBindingSource
     //
     this.kHOHANGBindingSource.DataMember = "KHO_HANG";
     this.kHOHANGBindingSource.DataSource = this.dsKho;
     //
     // dsKho
     //
     this.dsKho.DataSetName = "dsKho";
     this.dsKho.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // txtKhoHang_View
     //
     this.txtKhoHang_View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMa_Kho,
     this.colTen_Kho1,
     this.colDia_Chi,
     this.colEmail,
     this.colDien_Thoai,
     this.colFax,
     this.colDi_Dong,
     this.colThu_Kho,
     this.colGhi_Chu});
     this.txtKhoHang_View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.txtKhoHang_View.Name = "txtKhoHang_View";
     this.txtKhoHang_View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.txtKhoHang_View.OptionsView.ShowAutoFilterRow = true;
     this.txtKhoHang_View.OptionsView.ShowGroupPanel = false;
     //
     // colMa_Kho
     //
     this.colMa_Kho.Caption = "Mã Kho";
     this.colMa_Kho.FieldName = "Ma_Kho";
     this.colMa_Kho.Name = "colMa_Kho";
     this.colMa_Kho.OptionsColumn.ReadOnly = true;
     this.colMa_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Kho.Visible = true;
     this.colMa_Kho.VisibleIndex = 0;
     //
     // colTen_Kho1
     //
     this.colTen_Kho1.Caption = "Tên Kho";
     this.colTen_Kho1.FieldName = "Ten_Kho";
     this.colTen_Kho1.Name = "colTen_Kho1";
     this.colTen_Kho1.OptionsColumn.ReadOnly = true;
     this.colTen_Kho1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Kho1.Visible = true;
     this.colTen_Kho1.VisibleIndex = 1;
     //
     // colDia_Chi
     //
     this.colDia_Chi.Caption = "Địa Chỉ";
     this.colDia_Chi.FieldName = "Dia_Chi";
     this.colDia_Chi.Name = "colDia_Chi";
     this.colDia_Chi.OptionsColumn.ReadOnly = true;
     this.colDia_Chi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDia_Chi.Visible = true;
     this.colDia_Chi.VisibleIndex = 2;
     //
     // colEmail
     //
     this.colEmail.Caption = "Email";
     this.colEmail.FieldName = "Email";
     this.colEmail.Name = "colEmail";
     this.colEmail.OptionsColumn.ReadOnly = true;
     this.colEmail.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colEmail.Visible = true;
     this.colEmail.VisibleIndex = 3;
     //
     // colDien_Thoai
     //
     this.colDien_Thoai.Caption = "Điện Thoại";
     this.colDien_Thoai.FieldName = "Dien_Thoai";
     this.colDien_Thoai.Name = "colDien_Thoai";
     this.colDien_Thoai.OptionsColumn.ReadOnly = true;
     this.colDien_Thoai.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDien_Thoai.Visible = true;
     this.colDien_Thoai.VisibleIndex = 4;
     //
     // colFax
     //
     this.colFax.Caption = "Fax";
     this.colFax.FieldName = "Fax";
     this.colFax.Name = "colFax";
     this.colFax.OptionsColumn.ReadOnly = true;
     this.colFax.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colFax.Visible = true;
     this.colFax.VisibleIndex = 5;
     //
     // colDi_Dong
     //
     this.colDi_Dong.Caption = "Di Động";
     this.colDi_Dong.FieldName = "Di_Dong";
     this.colDi_Dong.Name = "colDi_Dong";
     this.colDi_Dong.OptionsColumn.ReadOnly = true;
     this.colDi_Dong.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDi_Dong.Visible = true;
     this.colDi_Dong.VisibleIndex = 6;
     //
     // colThu_Kho
     //
     this.colThu_Kho.Caption = "Thủ Kho";
     this.colThu_Kho.FieldName = "Thu_Kho";
     this.colThu_Kho.Name = "colThu_Kho";
     this.colThu_Kho.OptionsColumn.ReadOnly = true;
     this.colThu_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThu_Kho.Visible = true;
     this.colThu_Kho.VisibleIndex = 7;
     //
     // colGhi_Chu
     //
     this.colGhi_Chu.Caption = "Ghi Chú";
     this.colGhi_Chu.FieldName = "Ghi_Chu";
     this.colGhi_Chu.Name = "colGhi_Chu";
     this.colGhi_Chu.OptionsColumn.ReadOnly = true;
     this.colGhi_Chu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colGhi_Chu.Visible = true;
     this.colGhi_Chu.VisibleIndex = 8;
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(613, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(487, 20);
     this.layoutControl2.TabIndex = 8;
     this.layoutControl2.Text = "layoutControl2";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(487, 20);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // dtDen
     //
     this.dtDen.EditValue = null;
     this.dtDen.Location = new System.Drawing.Point(523, 2);
     this.dtDen.MenuManager = this.bm;
     this.dtDen.Name = "dtDen";
     this.dtDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtDen.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtDen.Size = new System.Drawing.Size(86, 20);
     this.dtDen.StyleController = this.layoutControl1;
     this.dtDen.TabIndex = 7;
     //
     // dtTu
     //
     this.dtTu.EditValue = null;
     this.dtTu.Location = new System.Drawing.Point(383, 2);
     this.dtTu.MenuManager = this.bm;
     this.dtTu.Name = "dtTu";
     this.dtTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtTu.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtTu.Size = new System.Drawing.Size(83, 20);
     this.dtTu.StyleController = this.layoutControl1;
     this.dtTu.TabIndex = 6;
     //
     // cbChonNgay
     //
     this.cbChonNgay.Location = new System.Drawing.Point(235, 2);
     this.cbChonNgay.MenuManager = this.bm;
     this.cbChonNgay.Name = "cbChonNgay";
     this.cbChonNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbChonNgay.Properties.Items.AddRange(new object[] {
     "Tháng 1",
     "Tháng 2",
     "Tháng 3",
     "Tháng 4",
     "Tháng 5",
     "Tháng 6",
     "Tháng 7",
     "Tháng 8",
     "Tháng 9",
     "Tháng 10",
     "Tháng 11",
     "Tháng 12"});
     this.cbChonNgay.Size = new System.Drawing.Size(91, 20);
     this.cbChonNgay.StyleController = this.layoutControl1;
     this.cbChonNgay.TabIndex = 5;
     this.cbChonNgay.SelectedIndexChanged += new System.EventHandler(this.cbChonNgay_SelectedIndexChanged);
     //
     // gcList
     //
     this.gcList.Cursor = System.Windows.Forms.Cursors.Default;
     this.gcList.DataSource = this.xuatNhapTonTheoNgayBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 26);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rptMayTinh});
     this.gcList.Size = new System.Drawing.Size(1098, 364);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // xuatNhapTonTheoNgayBindingSource
     //
     this.xuatNhapTonTheoNgayBindingSource.DataMember = "Xuat_Nhap_Ton_Theo_Ngay";
     this.xuatNhapTonTheoNgayBindingSource.DataSource = this.dsXuatNhapTon;
     //
     // dsXuatNhapTon
     //
     this.dsXuatNhapTon.DataSetName = "dsXuatNhapTon";
     this.dsXuatNhapTon.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList
     //
     this.gbList.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.gbList.Appearance.GroupRow.ForeColor = System.Drawing.Color.Red;
     this.gbList.Appearance.GroupRow.Options.UseFont = true;
     this.gbList.Appearance.GroupRow.Options.UseForeColor = true;
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMa_Hang_Hoa,
     this.colTen_Hang,
     this.colDon_Vi,
     this.colMa_Kho_Hang,
     this.colTen_Kho,
     this.colSo_Luong_Dau_Ky,
     this.colSo_Luong_Nhap_Trong_Ky,
     this.colSo_Luong_Xuat_Trong_Ky,
     this.colSo_Luong_Cuoi_Ky,
     this.colThanh_Tien_Dau_Ky,
     this.colThanh_Tien_Nhap_Trong_Ky,
     this.colThanh_Tien_Xuat_Trong_Ky,
     this.colThanh_Tien_Cuoi_Ky,
     this.colNhom_Hang,
     this.colTen_Nhom_Hang});
     this.gbList.GridControl = this.gcList;
     this.gbList.GroupCount = 1;
     this.gbList.GroupPanelText = "Kéo cột và thả vào đây để nhóm dữ liệu";
     this.gbList.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Dau_Ky", this.colSo_Luong_Dau_Ky, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Nhap_Trong_Ky", this.colSo_Luong_Nhap_Trong_Ky, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Xuat_Trong_Ky", this.colSo_Luong_Xuat_Trong_Ky, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Cuoi_Ky", this.colSo_Luong_Cuoi_Ky, "{0:##,##0.###}")});
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsBehavior.AutoExpandAllGroups = true;
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.ColumnHeaderAutoHeight = DevExpress.Utils.DefaultBoolean.True;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colTen_Nhom_Hang, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     //
     // colMa_Hang_Hoa
     //
     this.colMa_Hang_Hoa.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Hang_Hoa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Hang_Hoa.Caption = "Mã Hàng Hóa";
     this.colMa_Hang_Hoa.FieldName = "Ma_Hang_Hoa";
     this.colMa_Hang_Hoa.Name = "colMa_Hang_Hoa";
     this.colMa_Hang_Hoa.OptionsColumn.ReadOnly = true;
     this.colMa_Hang_Hoa.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Hang_Hoa.Visible = true;
     this.colMa_Hang_Hoa.VisibleIndex = 0;
     this.colMa_Hang_Hoa.Width = 89;
     //
     // colTen_Hang
     //
     this.colTen_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Hang.Caption = "Tên Hàng";
     this.colTen_Hang.FieldName = "Ten_Hang";
     this.colTen_Hang.Name = "colTen_Hang";
     this.colTen_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Hang.Visible = true;
     this.colTen_Hang.VisibleIndex = 1;
     //
     // colDon_Vi
     //
     this.colDon_Vi.AppearanceHeader.Options.UseTextOptions = true;
     this.colDon_Vi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDon_Vi.Caption = "Đơn Vị";
     this.colDon_Vi.FieldName = "Don_Vi";
     this.colDon_Vi.Name = "colDon_Vi";
     this.colDon_Vi.OptionsColumn.ReadOnly = true;
     this.colDon_Vi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDon_Vi.Visible = true;
     this.colDon_Vi.VisibleIndex = 2;
     //
     // colMa_Kho_Hang
     //
     this.colMa_Kho_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Kho_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Kho_Hang.FieldName = "Ma_Kho_Hang";
     this.colMa_Kho_Hang.Name = "colMa_Kho_Hang";
     this.colMa_Kho_Hang.OptionsColumn.ReadOnly = true;
     this.colMa_Kho_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colTen_Kho
     //
     this.colTen_Kho.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Kho.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Kho.Caption = "Kho Hàng";
     this.colTen_Kho.FieldName = "Ten_Kho";
     this.colTen_Kho.Name = "colTen_Kho";
     this.colTen_Kho.OptionsColumn.ReadOnly = true;
     this.colTen_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Kho.Visible = true;
     this.colTen_Kho.VisibleIndex = 3;
     //
     // colSo_Luong_Dau_Ky
     //
     this.colSo_Luong_Dau_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Dau_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Dau_Ky.Caption = "Đầu Kỳ / Số Lượng";
     this.colSo_Luong_Dau_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Dau_Ky.FieldName = "So_Luong_Dau_Ky";
     this.colSo_Luong_Dau_Ky.Name = "colSo_Luong_Dau_Ky";
     this.colSo_Luong_Dau_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Dau_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Dau_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Dau_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Dau_Ky.Visible = true;
     this.colSo_Luong_Dau_Ky.VisibleIndex = 4;
     this.colSo_Luong_Dau_Ky.Width = 109;
     //
     // rptMayTinh
     //
     this.rptMayTinh.AutoHeight = false;
     this.rptMayTinh.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinh.DisplayFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.EditFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.Name = "rptMayTinh";
     //
     // colSo_Luong_Nhap_Trong_Ky
     //
     this.colSo_Luong_Nhap_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Nhap_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Nhap_Trong_Ky.Caption = "Trong Kỳ / Số Lượng Nhập";
     this.colSo_Luong_Nhap_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Nhap_Trong_Ky.FieldName = "So_Luong_Nhap_Trong_Ky";
     this.colSo_Luong_Nhap_Trong_Ky.Name = "colSo_Luong_Nhap_Trong_Ky";
     this.colSo_Luong_Nhap_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Nhap_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Nhap_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Nhap_Trong_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Nhap_Trong_Ky.Visible = true;
     this.colSo_Luong_Nhap_Trong_Ky.VisibleIndex = 5;
     this.colSo_Luong_Nhap_Trong_Ky.Width = 149;
     //
     // colSo_Luong_Xuat_Trong_Ky
     //
     this.colSo_Luong_Xuat_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Xuat_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Xuat_Trong_Ky.Caption = "Trong Kỳ / Số Lượng Xuât";
     this.colSo_Luong_Xuat_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Xuat_Trong_Ky.FieldName = "So_Luong_Xuat_Trong_Ky";
     this.colSo_Luong_Xuat_Trong_Ky.Name = "colSo_Luong_Xuat_Trong_Ky";
     this.colSo_Luong_Xuat_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Xuat_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Xuat_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Xuat_Trong_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Xuat_Trong_Ky.Visible = true;
     this.colSo_Luong_Xuat_Trong_Ky.VisibleIndex = 6;
     this.colSo_Luong_Xuat_Trong_Ky.Width = 146;
     //
     // colSo_Luong_Cuoi_Ky
     //
     this.colSo_Luong_Cuoi_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Cuoi_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Cuoi_Ky.Caption = "Cuối Kỳ / Số Lượng";
     this.colSo_Luong_Cuoi_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Cuoi_Ky.FieldName = "So_Luong_Cuoi_Ky";
     this.colSo_Luong_Cuoi_Ky.Name = "colSo_Luong_Cuoi_Ky";
     this.colSo_Luong_Cuoi_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Cuoi_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Cuoi_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Cuoi_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Cuoi_Ky.Visible = true;
     this.colSo_Luong_Cuoi_Ky.VisibleIndex = 7;
     this.colSo_Luong_Cuoi_Ky.Width = 111;
     //
     // colThanh_Tien_Dau_Ky
     //
     this.colThanh_Tien_Dau_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Dau_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Dau_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Dau_Ky.FieldName = "Thanh_Tien_Dau_Ky";
     this.colThanh_Tien_Dau_Ky.Name = "colThanh_Tien_Dau_Ky";
     this.colThanh_Tien_Dau_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Dau_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Dau_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Dau_Ky", "{0:##,##0.###}")});
     //
     // colThanh_Tien_Nhap_Trong_Ky
     //
     this.colThanh_Tien_Nhap_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Nhap_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Nhap_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Nhap_Trong_Ky.FieldName = "Thanh_Tien_Nhap_Trong_Ky";
     this.colThanh_Tien_Nhap_Trong_Ky.Name = "colThanh_Tien_Nhap_Trong_Ky";
     this.colThanh_Tien_Nhap_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Nhap_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Nhap_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Nhap_Trong_Ky", "{0:##,##0.###}")});
     //
     // colThanh_Tien_Xuat_Trong_Ky
     //
     this.colThanh_Tien_Xuat_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Xuat_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Xuat_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Xuat_Trong_Ky.FieldName = "Thanh_Tien_Xuat_Trong_Ky";
     this.colThanh_Tien_Xuat_Trong_Ky.Name = "colThanh_Tien_Xuat_Trong_Ky";
     this.colThanh_Tien_Xuat_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Xuat_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Xuat_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Xuat_Trong_Ky", "{0:##,##0.###}")});
     //
     // colThanh_Tien_Cuoi_Ky
     //
     this.colThanh_Tien_Cuoi_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Cuoi_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Cuoi_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Cuoi_Ky.FieldName = "Thanh_Tien_Cuoi_Ky";
     this.colThanh_Tien_Cuoi_Ky.Name = "colThanh_Tien_Cuoi_Ky";
     this.colThanh_Tien_Cuoi_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Cuoi_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Cuoi_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Cuoi_Ky", "{0:##,##0.###}")});
     //
     // colNhom_Hang
     //
     this.colNhom_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colNhom_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNhom_Hang.FieldName = "Nhom_Hang";
     this.colNhom_Hang.Name = "colNhom_Hang";
     this.colNhom_Hang.OptionsColumn.ReadOnly = true;
     this.colNhom_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colTen_Nhom_Hang
     //
     this.colTen_Nhom_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Nhom_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Nhom_Hang.Caption = "Nhóm Hàng";
     this.colTen_Nhom_Hang.FieldName = "Ten_Nhom_Hang";
     this.colTen_Nhom_Hang.Name = "colTen_Nhom_Hang";
     this.colTen_Nhom_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Nhom_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Nhom_Hang.Visible = true;
     this.colTen_Nhom_Hang.VisibleIndex = 4;
     this.colTen_Nhom_Hang.Width = 101;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5,
     this.layoutControlItem6});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1102, 368);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cbChonNgay;
     this.layoutControlItem2.CustomizationFormText = "Tùy Chọn:";
     this.layoutControlItem2.Location = new System.Drawing.Point(178, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(109, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Tùy Chọn:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(50, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.dtTu;
     this.layoutControlItem3.CustomizationFormText = "Từ";
     this.layoutControlItem3.Location = new System.Drawing.Point(328, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(140, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Từ";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(50, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.dtDen;
     this.layoutControlItem4.CustomizationFormText = "Đến";
     this.layoutControlItem4.Location = new System.Drawing.Point(468, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(143, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Đến";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(50, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(611, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(491, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.txtKhoHang;
     this.layoutControlItem6.CustomizationFormText = "Kho Hàng:";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(178, 24);
     this.layoutControlItem6.Text = "Kho Hàng:";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(50, 13);
     //
     // kHO_HANGTableAdapter
     //
     this.kHO_HANGTableAdapter.ClearBeforeFill = true;
     //
     // frmXuatNhapTon
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1102, 416);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmXuatNhapTon";
     this.Text = "Xuất Nhập Tồn";
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kHOHANGBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsKho)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang_View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xuatNhapTonTheoNgayBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsXuatNhapTon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// 创建查询条件控件
        /// </summary>
        private void CreatSearchControl()
        {
            try
            {
                if (dtDetail != null && dtMain != null && dtMain.Rows.Count > 0)
                {
                    //每行控件数
                    int iControlColumn = Convert.ToInt32(dtMain.Rows[0]["iControlColumn"]);
                    //控件间距
                    int iControlSpace = Convert.ToInt32(dtMain.Rows[0]["iControlSpace"]);
                    //先计算需要生成查询的数据
                    DataRow[] dr = dtDetail.Select("bIsQuery=1");
                    //计算控件总共行数
                    int iRows = 0;
                    if (dr.Length > 0)
                    {
                        if (dr.Length % iControlColumn != 0)
                        {
                            iRows = (int)Math.Floor(Convert.ToDecimal(dr.Length / iControlColumn)) + 1;
                        }
                        else
                        {
                            iRows = Convert.ToInt32(dr.Length / iControlColumn);
                        }

                        //设置控件数计数
                        int iControl = 0;
                        for (int j = 0; j < iRows; j++)
                        {
                            for (int i = 0; i < iControlColumn; i++)
                            {
                                //控件类型
                                string sColumnType = dr[iControl]["sColumnType"].ToString();
                                //取得查询条件默认值
                                object oColumnDefaultValue = dr[iControl]["sDefaultValue"];
                                if (oColumnDefaultValue.ToString().ToLower() == "<userid>")
                                {
                                    oColumnDefaultValue = BWS.ERP.Security.SecurityCenter.CurrentUserID;
                                }
                                //默认值中日期类型解析
                                if (oColumnDefaultValue.ToString().ToLower().Contains("<getdate>") && sColumnType == "D")
                                {
                                    if (oColumnDefaultValue.ToString().Length == 9)
                                    {
                                        oColumnDefaultValue = DateTime.Now.ToShortDateString();
                                    }
                                    else if (oColumnDefaultValue.ToString().ToLower().Contains("+"))
                                    {
                                        int iDays = Convert.ToInt32(oColumnDefaultValue.ToString().Trim().Substring(10));
                                        oColumnDefaultValue = DateTime.Now.AddDays(iDays);
                                    }
                                    else if (oColumnDefaultValue.ToString().ToLower().Contains("-"))
                                    {
                                        int iDays = Convert.ToInt32(oColumnDefaultValue.ToString().Trim().Substring(10));
                                        oColumnDefaultValue = DateTime.Now.AddDays(-iDays);
                                    }
                                }
                                if (oColumnDefaultValue.ToString() != "" && sColumnType == "K" && Convert.ToInt32(oColumnDefaultValue.ToString()) == 1)
                                {
                                    oColumnDefaultValue = true;
                                }
                                else if (oColumnDefaultValue.ToString() != "" && sColumnType == "K" && Convert.ToInt32(oColumnDefaultValue.ToString()) == 0)
                                {
                                    oColumnDefaultValue = false;
                                }

                                //创建控件
                                //Lable大小控制为80X21,其他输入控件大小为120X21
                                Label lbl = new Label();
                                lbl.AutoSize = false;
                                lbl.Size = new Size(80, 21);
                                lbl.Location = new Point(10 + (80 + 120 + iControlSpace) * i, 25 + (21 + 10) * j);
                                //控件命名规则:lbl+字段名+数据行号
                                lbl.Name = "lbl" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
                                lbl.TextAlign = ContentAlignment.BottomLeft;
                                //当控件类型为复选框时不创建Lable控件
                                if (sColumnType != "K")
                                {
                                    lbl.Text = dr[iControl]["sColumnCaption"].ToString();
                                }
                                grbFilter.Controls.Add(lbl);
                                //不同类型创建不同控件
                                switch (sColumnType)
                                {
                                    //字符型,数字型
                                    case "S":
                                    case "N":
                                        {
                                            DevExpress.XtraEditors.TextEdit txt = new DevExpress.XtraEditors.TextEdit();
                                            txt.Size = new Size(120, 21);
                                            txt.Name = "txt" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
                                            txt.Location = new Point(10 + (80 + 120 + iControlSpace) * i + 80, 28 + (21 + 10) * j);
                                            txt.Text = oColumnDefaultValue.ToString();
                                            //用Tag来存储查询类型
                                            txt.Tag = dr[iControl]["sColumnFieldName"].ToString() + " " + dr[iControl]["sSearchType"].ToString();
                                            grbFilter.Controls.Add(txt);
                                            break;
                                        }
                                    //ComboBox类型
                                    case "C":
                                        {
                                            DevExpress.XtraEditors.ComboBoxEdit cbx = new DevExpress.XtraEditors.ComboBoxEdit();
                                            cbx.Size = new Size(120, 21);
                                            cbx.Name = "cbx" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
                                            cbx.Location = new Point(10 + (80 + 120 + iControlSpace) * i + 80, 28 + (21 + 10) * j);
                                            cbx.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
                                            //写入ComboBox选择值
                                            foreach (var item in dr[iControl]["sReturnValue"].ToString().Replace(",", ",").Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries))
                                            {
                                                cbx.Properties.Items.Add(item);
                                            }

                                            if (dr[iControl]["sReturnValue"].ToString() != "")
                                            {
                                                if (oColumnDefaultValue.ToString() != "" && dr[iControl]["sReturnValue"].ToString().Contains(oColumnDefaultValue.ToString()))
                                                {
                                                    cbx.Text = oColumnDefaultValue.ToString();
                                                }
                                                else
                                                {
                                                    cbx.SelectedIndex = -1;
                                                }
                                            }
                                            //用Tag来存储查询类型
                                            cbx.Tag = dr[iControl]["sColumnFieldName"].ToString() + " " + dr[iControl]["sSearchType"].ToString();
                                            grbFilter.Controls.Add(cbx);
                                            break;
                                        }
                                    //日期型
                                    case "D":
                                        {
                                            DevExpress.XtraEditors.DateEdit det = new DevExpress.XtraEditors.DateEdit();
                                            det.Size = new Size(120, 21);
                                            det.Name = "det" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
                                            det.Location = new Point(10 + (80 + 120 + iControlSpace) * i + 80, 28 + (21 + 10) * j);
                                            det.Tag = dr[iControl]["sColumnFieldName"].ToString() + " " + dr[iControl]["sSearchType"].ToString();
                                            if (oColumnDefaultValue.ToString() != "")
                                            {
                                                det.DateTime = Convert.ToDateTime(oColumnDefaultValue);
                                            }
                                            else
                                            {
                                                det.EditValue = null;
                                            }
                                            grbFilter.Controls.Add(det);
                                            break;
                                        }
                                    //复选框
                                    case "K":
                                        {
                                            DevExpress.XtraEditors.CheckEdit chk = new DevExpress.XtraEditors.CheckEdit();
                                            chk.Size = new Size(120, 21);
                                            chk.Name = "chk" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
                                            chk.Location = new Point(10 + (80 + 120 + iControlSpace) * i + 80, 28 + (21 + 10) * j);
                                            //CheckBox过滤条件特殊处理
                                            string sReturnValue = "";
                                            if (dr[iControl]["sSearchType"].ToString().Contains("LIKE"))
                                            {
                                                sReturnValue = " '%" + dr[iControl]["sReturnValue"].ToString() + "%'";
                                            }
                                            else
                                            {
                                                sReturnValue = " '" + dr[iControl]["sReturnValue"].ToString() + "'";
                                            }
                                            chk.Tag = dr[iControl]["sColumnFieldName"].ToString() + " " + dr[iControl]["sSearchType"].ToString() + sReturnValue;
                                            if (oColumnDefaultValue.ToString() != "")
                                            {
                                                chk.Checked = Convert.ToBoolean(oColumnDefaultValue);
                                            }
                                            else
                                            {
                                                chk.CheckState = CheckState.Unchecked;
                                            }
                                            chk.Text = dr[iControl]["sColumnCaption"].ToString();
                                            grbFilter.Controls.Add(chk);
                                            break;
                                        }

                                }
                                iControl++;
                                //当计数大于等于要创建的控件数量时则退出循环
                                if (iControl >= dr.Length)
                                {
                                    break;
                                }

                            }
                        }

                    }
                    //分组条件控件设置
                    grbGroup.Visible = IsGroup;
                    //grbGroup.Location = new Point(10, iRows * 31 + toolStrip1.Height);
                    grbGroup.Location = new Point(10, iRows * 31 + 30);
                    grbGroup.Controls.Clear();
                    for (int i = 0; i < dtDetail.Select("bIsGroup=1").Length; i++)
                    {
                        DevExpress.XtraEditors.CheckEdit chk = new DevExpress.XtraEditors.CheckEdit();
                        chk.Size = new Size(80, 21);
                        chk.Location = new Point(5 + (80 + 5) * i, 25);
                        chk.Name = "chkGrp" + dtDetail.Select("bIsGroup=1")[i]["sColumnFieldName"].ToString() + i.ToString();
                        chk.Text = dtDetail.Select("bIsGroup=1")[i]["sColumnCaption"].ToString();
                        chk.Tag = dtDetail.Select("bIsGroup=1")[i]["sColumnFieldName"].ToString();
                        chk.Checked = true;
                        grbGroup.Controls.Add(chk);
                    }
                    grbGroup.Height = 45;
                    grbGroup.Width = dtDetail.Select("bIsGroup=1").Length * 85 + 10;

                    //设置查询条件面板高度
                    grbFilter.Height = iRows * 31 + 55 + (IsGroup == true ? grbGroup.Height : 0);
                }
            }
            catch (Exception ex)
            {
                Public.SystemInfo("创建查询条件控件错误!" + ex.Message, true);
            }
        }
Beispiel #35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.RGFitnessPackage = new DevExpress.XtraEditors.RadioGroup();
     this.gridFitnessPackage = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.Rank = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Employee = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.SalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.SalesTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label79 = new System.Windows.Forms.Label();
     this.label80 = new System.Windows.Forms.Label();
     this.Month = new DevExpress.XtraEditors.ComboBoxEdit();
     this.Year = new DevExpress.XtraEditors.ComboBoxEdit();
     this.button1 = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.RGFitnessPackage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFitnessPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Gray;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(0, 40);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(952, 24);
     this.label1.TabIndex = 11;
     this.label1.Text = "Ranking of Fitness Package Sales";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // RGFitnessPackage
     //
     this.RGFitnessPackage.EditValue = 0;
     this.RGFitnessPackage.Location = new System.Drawing.Point(0, 64);
     this.RGFitnessPackage.Name = "RGFitnessPackage";
     this.RGFitnessPackage.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.RGFitnessPackage.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RGFitnessPackage.Properties.Appearance.Options.UseBackColor = true;
     this.RGFitnessPackage.Properties.Appearance.Options.UseFont = true;
     this.RGFitnessPackage.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.RGFitnessPackage.Properties.Columns = 2;
     this.RGFitnessPackage.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Fitness Package Sales By %"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual Fitness Package Sales")});
     this.RGFitnessPackage.Size = new System.Drawing.Size(496, 32);
     this.RGFitnessPackage.TabIndex = 10;
     this.RGFitnessPackage.EditValueChanged += new System.EventHandler(this.RGFitnessPackage_EditValueChanged);
     this.RGFitnessPackage.Click += new System.EventHandler(this.RGFitnessPackage_Click);
     //
     // gridFitnessPackage
     //
     this.gridFitnessPackage.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridFitnessPackage.Location = new System.Drawing.Point(0, 96);
     this.gridFitnessPackage.MainView = this.gridView2;
     this.gridFitnessPackage.Name = "gridFitnessPackage";
     this.gridFitnessPackage.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_Employee});
     this.gridFitnessPackage.Size = new System.Drawing.Size(960, 384);
     this.gridFitnessPackage.TabIndex = 9;
     this.gridFitnessPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView2});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Rank,
     this.gridColumn2,
     this.gridColumn5,
     this.SalesPercentage,
     this.SalesTotal});
     this.gridView2.GridControl = this.gridFitnessPackage;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsBehavior.Editable = false;
     this.gridView2.OptionsCustomization.AllowFilter = false;
     this.gridView2.OptionsCustomization.AllowGroup = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     this.gridView2.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gridView2_CustomUnboundColumnData);
     //
     // Rank
     //
     this.Rank.Caption = "Rank";
     this.Rank.FieldName = "Rank";
     this.Rank.Name = "Rank";
     this.Rank.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.Rank.Visible = true;
     this.Rank.VisibleIndex = 0;
     this.Rank.Width = 33;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Employee Name";
     this.gridColumn2.ColumnEdit = this.lk_Employee;
     this.gridColumn2.FieldName = "nSalesPersonID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 85;
     //
     // lk_Employee
     //
     this.lk_Employee.AutoHeight = false;
     this.lk_Employee.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Employee.Name = "lk_Employee";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Branch Code";
     this.gridColumn5.FieldName = "strBranchCode";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 70;
     //
     // SalesPercentage
     //
     this.SalesPercentage.Caption = "Sales Percentage";
     this.SalesPercentage.FieldName = "SalesPercentage";
     this.SalesPercentage.Name = "SalesPercentage";
     this.SalesPercentage.Visible = true;
     this.SalesPercentage.VisibleIndex = 2;
     this.SalesPercentage.Width = 92;
     //
     // SalesTotal
     //
     this.SalesTotal.Caption = "Total Sales";
     this.SalesTotal.FieldName = "TotalSales";
     this.SalesTotal.Name = "SalesTotal";
     this.SalesTotal.Visible = true;
     this.SalesTotal.VisibleIndex = 3;
     this.SalesTotal.Width = 61;
     //
     // label79
     //
     this.label79.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label79.Location = new System.Drawing.Point(144, 8);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(48, 23);
     this.label79.TabIndex = 23;
     this.label79.Text = "Year";
     //
     // label80
     //
     this.label80.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label80.Location = new System.Drawing.Point(8, 8);
     this.label80.Name = "label80";
     this.label80.Size = new System.Drawing.Size(56, 23);
     this.label80.TabIndex = 22;
     this.label80.Text = "Month";
     //
     // Month
     //
     this.Month.EditValue = "1";
     this.Month.Location = new System.Drawing.Point(64, 8);
     this.Month.Name = "Month";
     this.Month.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Month.Properties.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.Month.Size = new System.Drawing.Size(72, 20);
     this.Month.TabIndex = 21;
     this.Month.SelectedIndexChanged += new System.EventHandler(this.Month_SelectedIndexChanged);
     //
     // Year
     //
     this.Year.EditValue = "";
     this.Year.Location = new System.Drawing.Point(192, 8);
     this.Year.Name = "Year";
     this.Year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Year.Size = new System.Drawing.Size(96, 20);
     this.Year.TabIndex = 20;
     this.Year.SelectedIndexChanged += new System.EventHandler(this.Year_SelectedIndexChanged);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(491, 67);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 24;
     this.button1.Text = "Print";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // frmSRFitnessPackage
     //
     this.ClientSize = new System.Drawing.Size(960, 480);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.label79);
     this.Controls.Add(this.label80);
     this.Controls.Add(this.Month);
     this.Controls.Add(this.Year);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.RGFitnessPackage);
     this.Controls.Add(this.gridFitnessPackage);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmSRFitnessPackage";
     this.Text = "frmSRFitnessPackage";
     this.Load += new System.EventHandler(this.frmSRFitnessPackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.RGFitnessPackage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFitnessPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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(frmUpd_Companies));
     this.btnUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.txtName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.cboDisable = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.cboStatus = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.lueCustomerType = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtTaxNumberCode = new DevExpress.XtraEditors.TextEdit();
     this.txtAddress = new DevExpress.XtraEditors.TextEdit();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboDisable.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueCustomerType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTaxNumberCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAddress.Properties)).BeginInit();
     this.tableLayoutPanel3.SuspendLayout();
     this.SuspendLayout();
     //
     // btnUpdate
     //
     this.btnUpdate.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.btnUpdate.Appearance.Options.UseFont = true;
     this.btnUpdate.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.btnUpdate.Image = ((System.Drawing.Image)(resources.GetObject("btnUpdate.Image")));
     this.btnUpdate.Location = new System.Drawing.Point(121, 8);
     this.btnUpdate.Name = "btnUpdate";
     this.btnUpdate.Size = new System.Drawing.Size(100, 28);
     this.btnUpdate.TabIndex = 15;
     this.btnUpdate.Text = "Cập nhật";
     this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel4, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 2);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(20, 0, 20, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 7F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 79F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(330, 308);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 2;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 70F));
     this.tableLayoutPanel4.Controls.Add(this.labelControl13, 0, 0);
     this.tableLayoutPanel4.Controls.Add(this.txtName, 1, 0);
     this.tableLayoutPanel4.Controls.Add(this.labelControl8, 0, 5);
     this.tableLayoutPanel4.Controls.Add(this.cboDisable, 1, 5);
     this.tableLayoutPanel4.Controls.Add(this.labelControl16, 0, 4);
     this.tableLayoutPanel4.Controls.Add(this.cboStatus, 1, 4);
     this.tableLayoutPanel4.Controls.Add(this.labelControl1, 0, 3);
     this.tableLayoutPanel4.Controls.Add(this.lueCustomerType, 1, 3);
     this.tableLayoutPanel4.Controls.Add(this.labelControl2, 0, 1);
     this.tableLayoutPanel4.Controls.Add(this.labelControl3, 0, 2);
     this.tableLayoutPanel4.Controls.Add(this.txtTaxNumberCode, 1, 1);
     this.tableLayoutPanel4.Controls.Add(this.txtAddress, 1, 2);
     this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 21);
     this.tableLayoutPanel4.Margin = new System.Windows.Forms.Padding(0);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 6;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17F));
     this.tableLayoutPanel4.Size = new System.Drawing.Size(330, 243);
     this.tableLayoutPanel4.TabIndex = 1;
     //
     // labelControl13
     //
     this.labelControl13.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl13.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl13.Location = new System.Drawing.Point(3, 11);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl13.Size = new System.Drawing.Size(86, 16);
     this.labelControl13.TabIndex = 2;
     this.labelControl13.Text = "Tên công ty";
     //
     // txtName
     //
     this.txtName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtName.Location = new System.Drawing.Point(102, 9);
     this.txtName.Name = "txtName";
     this.txtName.Properties.MaxLength = 200;
     this.txtName.Properties.NullValuePrompt = "Nhập tối đa 200  ký tự.";
     this.txtName.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtName.Size = new System.Drawing.Size(216, 20);
     this.txtName.TabIndex = 3;
     //
     // labelControl8
     //
     this.labelControl8.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl8.Location = new System.Drawing.Point(3, 213);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Padding = new System.Windows.Forms.Padding(15, 0, 0, 0);
     this.labelControl8.Size = new System.Drawing.Size(47, 16);
     this.labelControl8.TabIndex = 12;
     this.labelControl8.Text = "Khóa";
     //
     // cboDisable
     //
     this.cboDisable.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.cboDisable.EditValue = "False";
     this.cboDisable.Location = new System.Drawing.Point(102, 211);
     this.cboDisable.Name = "cboDisable";
     this.cboDisable.Properties.Appearance.Options.UseTextOptions = true;
     this.cboDisable.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.cboDisable.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboDisable.Properties.Items.AddRange(new object[] {
     "True",
     "False"});
     this.cboDisable.Size = new System.Drawing.Size(216, 20);
     this.cboDisable.TabIndex = 13;
     //
     // labelControl16
     //
     this.labelControl16.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl16.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl16.Location = new System.Drawing.Point(3, 170);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl16.Size = new System.Drawing.Size(81, 17);
     this.labelControl16.TabIndex = 10;
     this.labelControl16.Text = "Trạng thái";
     //
     // cboStatus
     //
     this.cboStatus.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.cboStatus.EditValue = "1";
     this.cboStatus.Location = new System.Drawing.Point(102, 168);
     this.cboStatus.Name = "cboStatus";
     this.cboStatus.Properties.Appearance.Options.UseTextOptions = true;
     this.cboStatus.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.cboStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboStatus.Properties.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4"});
     this.cboStatus.Size = new System.Drawing.Size(216, 20);
     this.cboStatus.TabIndex = 11;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.Location = new System.Drawing.Point(3, 129);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Padding = new System.Windows.Forms.Padding(15, 0, 0, 0);
     this.labelControl1.Size = new System.Drawing.Size(43, 17);
     this.labelControl1.TabIndex = 8;
     this.labelControl1.Text = "Loại";
     //
     // lueCustomerType
     //
     this.lueCustomerType.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lueCustomerType.Location = new System.Drawing.Point(102, 127);
     this.lueCustomerType.Name = "lueCustomerType";
     this.lueCustomerType.Properties.Appearance.Options.UseTextOptions = true;
     this.lueCustomerType.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lueCustomerType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueCustomerType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Type")});
     this.lueCustomerType.Properties.NullText = "";
     this.lueCustomerType.Properties.NullValuePrompt = "Chọn loại";
     this.lueCustomerType.Properties.NullValuePromptShowForEmptyValue = true;
     this.lueCustomerType.Size = new System.Drawing.Size(216, 20);
     this.lueCustomerType.TabIndex = 9;
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl2.Location = new System.Drawing.Point(3, 48);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl2.Size = new System.Drawing.Size(90, 17);
     this.labelControl2.TabIndex = 4;
     this.labelControl2.Text = "Mã số thuế ";
     //
     // labelControl3
     //
     this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl3.Location = new System.Drawing.Point(3, 88);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl3.Size = new System.Drawing.Size(55, 17);
     this.labelControl3.TabIndex = 6;
     this.labelControl3.Text = "Địa chỉ";
     //
     // txtTaxNumberCode
     //
     this.txtTaxNumberCode.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtTaxNumberCode.Location = new System.Drawing.Point(102, 47);
     this.txtTaxNumberCode.Name = "txtTaxNumberCode";
     this.txtTaxNumberCode.Properties.MaxLength = 100;
     this.txtTaxNumberCode.Properties.NullValuePrompt = "Nhập tối đa 100  ký tự.";
     this.txtTaxNumberCode.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtTaxNumberCode.Size = new System.Drawing.Size(216, 20);
     this.txtTaxNumberCode.TabIndex = 5;
     //
     // txtAddress
     //
     this.txtAddress.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtAddress.Location = new System.Drawing.Point(102, 86);
     this.txtAddress.Name = "txtAddress";
     this.txtAddress.Properties.MaxLength = 250;
     this.txtAddress.Properties.NullValuePrompt = "Nhập tối đa 250  ký tự.";
     this.txtAddress.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtAddress.Size = new System.Drawing.Size(216, 20);
     this.txtAddress.TabIndex = 7;
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.tableLayoutPanel3.ColumnCount = 2;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 35.75758F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 64.24242F));
     this.tableLayoutPanel3.Controls.Add(this.btnUpdate, 1, 0);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 264);
     this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(0);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 1;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(330, 44);
     this.tableLayoutPanel3.TabIndex = 14;
     //
     // frmUpd_Companies
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(330, 308);
     this.Controls.Add(this.tableLayoutPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmUpd_Companies";
     this.Text = "Sửa công ty";
     this.Load += new System.EventHandler(this.frmEditCompany_Load);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tableLayoutPanel4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboDisable.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueCustomerType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTaxNumberCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAddress.Properties)).EndInit();
     this.tableLayoutPanel3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.DocManagement_DocModify_TabContr = new DevExpress.XtraTab.XtraTabControl();
     this.DocManagement_DocModify_TabContr_BasicInfo = new DevExpress.XtraTab.XtraTabPage();
     this.btnCannel = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.ckAuto = new DevExpress.XtraEditors.CheckEdit();
     this.ckFlow = new DevExpress.XtraEditors.CheckEdit();
     this.cbxDocDense = new DevExpress.XtraEditors.ComboBoxEdit();
     this.DocManagement_DocModify_GroupControl_PartsRelated = new DevExpress.XtraEditors.GroupControl();
     this.listBoxControl1 = new DevExpress.XtraEditors.ListBoxControl();
     this.btnPartsDel = new DevExpress.XtraEditors.SimpleButton();
     this.btnPartsAdd = new DevExpress.XtraEditors.SimpleButton();
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo = new DevExpress.XtraTab.XtraTabControl();
     this.DocManagement_DocModify_XtraTabPage_Remark = new DevExpress.XtraTab.XtraTabPage();
     this.txtRemark = new DevExpress.XtraEditors.MemoEdit();
     this.DocManagement_DocModify_XtraTabPage_KeyWords = new DevExpress.XtraTab.XtraTabPage();
     this.txtKey = new DevExpress.XtraEditors.MemoEdit();
     this.DocManagement_DocModify_XtraTabPage_Summary = new DevExpress.XtraTab.XtraTabPage();
     this.txtAbstract = new DevExpress.XtraEditors.MemoEdit();
     this.txtDocModel = new DevExpress.XtraEditors.ButtonEdit();
     this.txtDocUpload = new DevExpress.XtraEditors.ButtonEdit();
     this.txtDocFlow = new DevExpress.XtraEditors.ButtonEdit();
     this.txtDocCategory = new DevExpress.XtraEditors.ButtonEdit();
     this.txtDocNumber = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManagement_DocModify_Label_SecurityLevel = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_InValidTime = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_ValidTime = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocModel = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocUpload = new DevExpress.XtraEditors.LabelControl();
     this.txtDocPage = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_DocPage = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocFlow = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_ModifyTime = new DevExpress.XtraEditors.LabelControl();
     this.txtModifyTime = new DevExpress.XtraEditors.TextEdit();
     this.txtModifyCount = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_ModifyCount = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocCategory = new DevExpress.XtraEditors.LabelControl();
     this.txtDocFormat = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_DocFormat = new DevExpress.XtraEditors.LabelControl();
     this.txtEnName = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_EnglishName = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocName = new DevExpress.XtraEditors.LabelControl();
     this.txtDocName = new DevExpress.XtraEditors.TextEdit();
     this.txtDocVersion = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_DocVersion = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocNumber = new DevExpress.XtraEditors.LabelControl();
     this.txtInValidTime = new DevExpress.XtraEditors.DateEdit();
     this.txtValidTime = new DevExpress.XtraEditors.DateEdit();
     this.DocManagement_DocModify_tabContr_AdditionalInfor = new DevExpress.XtraTab.XtraTabPage();
     this.DocManagement_DocModify_TabContr_ApproInfo = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList = new DevExpress.XtraTreeList.TreeList();
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_TabContr_DocAssociated = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn4 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_TabContr)).BeginInit();
     this.DocManagement_DocModify_TabContr.SuspendLayout();
     this.DocManagement_DocModify_TabContr_BasicInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckAuto.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckFlow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxDocDense.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_GroupControl_PartsRelated)).BeginInit();
     this.DocManagement_DocModify_GroupControl_PartsRelated.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_XtraTabControl_DocBasicInfo)).BeginInit();
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.SuspendLayout();
     this.DocManagement_DocModify_XtraTabPage_Remark.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).BeginInit();
     this.DocManagement_DocModify_XtraTabPage_KeyWords.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtKey.Properties)).BeginInit();
     this.DocManagement_DocModify_XtraTabPage_Summary.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtAbstract.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocModel.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocUpload.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocFlow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocPage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtModifyTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtModifyCount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocFormat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEnName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocVersion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInValidTime.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInValidTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValidTime.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValidTime.Properties)).BeginInit();
     this.DocManagement_DocModify_TabContr_ApproInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Properties)).BeginInit();
     this.DocManagement_DocModify_TabContr_DocAssociated.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // DocManagement_DocModify_TabContr
     //
     this.DocManagement_DocModify_TabContr.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.DocManagement_DocModify_TabContr.Location = new System.Drawing.Point(-4, -2);
     this.DocManagement_DocModify_TabContr.Name = "DocManagement_DocModify_TabContr";
     this.DocManagement_DocModify_TabContr.SelectedTabPage = this.DocManagement_DocModify_TabContr_BasicInfo;
     this.DocManagement_DocModify_TabContr.Size = new System.Drawing.Size(777, 604);
     this.DocManagement_DocModify_TabContr.TabIndex = 0;
     this.DocManagement_DocModify_TabContr.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.DocManagement_DocModify_TabContr_BasicInfo,
     this.DocManagement_DocModify_tabContr_AdditionalInfor,
     this.DocManagement_DocModify_TabContr_ApproInfo,
     this.DocManagement_DocModify_TabContr_DocAssociated});
     //
     // DocManagement_DocModify_TabContr_BasicInfo
     //
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.btnCannel);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.btnSave);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.ckAuto);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.ckFlow);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.cbxDocDense);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_GroupControl_PartsRelated);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_XtraTabControl_DocBasicInfo);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocModel);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocUpload);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocFlow);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocCategory);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocNumber);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_SecurityLevel);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_InValidTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_ValidTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocModel);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocUpload);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocPage);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocPage);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocFlow);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_ModifyTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtModifyTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtModifyCount);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_ModifyCount);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocCategory);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocFormat);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocFormat);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtEnName);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_EnglishName);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocName);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocName);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocVersion);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocVersion);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocNumber);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtInValidTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtValidTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Name = "DocManagement_DocModify_TabContr_BasicInfo";
     this.DocManagement_DocModify_TabContr_BasicInfo.Size = new System.Drawing.Size(771, 575);
     this.DocManagement_DocModify_TabContr_BasicInfo.Text = "文档基本信息";
     //
     // btnCannel
     //
     this.btnCannel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCannel.Location = new System.Drawing.Point(646, 512);
     this.btnCannel.Name = "btnCannel";
     this.btnCannel.Size = new System.Drawing.Size(75, 23);
     this.btnCannel.TabIndex = 76;
     this.btnCannel.Text = "取消";
     this.btnCannel.Click += new System.EventHandler(this.btnCannel_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSave.Location = new System.Drawing.Point(551, 512);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 75;
     this.btnSave.Text = "确定";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // ckAuto
     //
     this.ckAuto.Location = new System.Drawing.Point(498, 199);
     this.ckAuto.Name = "ckAuto";
     this.ckAuto.Properties.Caption = "自动归档";
     this.ckAuto.Size = new System.Drawing.Size(87, 19);
     this.ckAuto.TabIndex = 74;
     //
     // ckFlow
     //
     this.ckFlow.Location = new System.Drawing.Point(300, 119);
     this.ckFlow.Name = "ckFlow";
     this.ckFlow.Properties.Caption = "不需要审签";
     this.ckFlow.Size = new System.Drawing.Size(87, 19);
     this.ckFlow.TabIndex = 73;
     //
     // cbxDocDense
     //
     this.cbxDocDense.Location = new System.Drawing.Point(108, 198);
     this.cbxDocDense.Name = "cbxDocDense";
     this.cbxDocDense.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbxDocDense.Properties.Items.AddRange(new object[] {
     "绝密",
     "机密",
     "秘密",
     "一般"});
     this.cbxDocDense.Size = new System.Drawing.Size(279, 20);
     this.cbxDocDense.TabIndex = 72;
     //
     // DocManagement_DocModify_GroupControl_PartsRelated
     //
     this.DocManagement_DocModify_GroupControl_PartsRelated.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.DocManagement_DocModify_GroupControl_PartsRelated.Controls.Add(this.listBoxControl1);
     this.DocManagement_DocModify_GroupControl_PartsRelated.Controls.Add(this.btnPartsDel);
     this.DocManagement_DocModify_GroupControl_PartsRelated.Controls.Add(this.btnPartsAdd);
     this.DocManagement_DocModify_GroupControl_PartsRelated.Location = new System.Drawing.Point(32, 371);
     this.DocManagement_DocModify_GroupControl_PartsRelated.Name = "DocManagement_DocModify_GroupControl_PartsRelated";
     this.DocManagement_DocModify_GroupControl_PartsRelated.Size = new System.Drawing.Size(731, 135);
     this.DocManagement_DocModify_GroupControl_PartsRelated.TabIndex = 38;
     this.DocManagement_DocModify_GroupControl_PartsRelated.Text = "关联零部件";
     //
     // listBoxControl1
     //
     this.listBoxControl1.Location = new System.Drawing.Point(10, 25);
     this.listBoxControl1.Name = "listBoxControl1";
     this.listBoxControl1.Size = new System.Drawing.Size(601, 105);
     this.listBoxControl1.TabIndex = 2;
     //
     // btnPartsDel
     //
     this.btnPartsDel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnPartsDel.Location = new System.Drawing.Point(649, 95);
     this.btnPartsDel.Name = "btnPartsDel";
     this.btnPartsDel.Size = new System.Drawing.Size(75, 23);
     this.btnPartsDel.TabIndex = 1;
     this.btnPartsDel.Text = "删除";
     this.btnPartsDel.Click += new System.EventHandler(this.btnPartsDel_Click);
     //
     // btnPartsAdd
     //
     this.btnPartsAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnPartsAdd.Location = new System.Drawing.Point(649, 43);
     this.btnPartsAdd.Name = "btnPartsAdd";
     this.btnPartsAdd.Size = new System.Drawing.Size(75, 23);
     this.btnPartsAdd.TabIndex = 0;
     this.btnPartsAdd.Text = "添加";
     this.btnPartsAdd.Click += new System.EventHandler(this.btnPartsAdd_Click);
     //
     // DocManagement_DocModify_XtraTabControl_DocBasicInfo
     //
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.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.DocManagement_DocModify_XtraTabControl_DocBasicInfo.HeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Left;
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Horizontal;
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.Location = new System.Drawing.Point(32, 224);
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.Name = "DocManagement_DocModify_XtraTabControl_DocBasicInfo";
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.SelectedTabPage = this.DocManagement_DocModify_XtraTabPage_Remark;
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.Size = new System.Drawing.Size(736, 144);
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.TabIndex = 37;
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.DocManagement_DocModify_XtraTabPage_Remark,
     this.DocManagement_DocModify_XtraTabPage_KeyWords,
     this.DocManagement_DocModify_XtraTabPage_Summary});
     //
     // DocManagement_DocModify_XtraTabPage_Remark
     //
     this.DocManagement_DocModify_XtraTabPage_Remark.Controls.Add(this.txtRemark);
     this.DocManagement_DocModify_XtraTabPage_Remark.Name = "DocManagement_DocModify_XtraTabPage_Remark";
     this.DocManagement_DocModify_XtraTabPage_Remark.Size = new System.Drawing.Size(680, 138);
     this.DocManagement_DocModify_XtraTabPage_Remark.Text = "备注";
     //
     // txtRemark
     //
     this.txtRemark.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtRemark.Location = new System.Drawing.Point(0, 0);
     this.txtRemark.Name = "txtRemark";
     this.txtRemark.Size = new System.Drawing.Size(680, 138);
     this.txtRemark.TabIndex = 0;
     //
     // DocManagement_DocModify_XtraTabPage_KeyWords
     //
     this.DocManagement_DocModify_XtraTabPage_KeyWords.Controls.Add(this.txtKey);
     this.DocManagement_DocModify_XtraTabPage_KeyWords.Name = "DocManagement_DocModify_XtraTabPage_KeyWords";
     this.DocManagement_DocModify_XtraTabPage_KeyWords.Size = new System.Drawing.Size(680, 138);
     this.DocManagement_DocModify_XtraTabPage_KeyWords.Text = "关键字";
     //
     // txtKey
     //
     this.txtKey.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtKey.Location = new System.Drawing.Point(0, 0);
     this.txtKey.Name = "txtKey";
     this.txtKey.Size = new System.Drawing.Size(680, 138);
     this.txtKey.TabIndex = 0;
     //
     // DocManagement_DocModify_XtraTabPage_Summary
     //
     this.DocManagement_DocModify_XtraTabPage_Summary.Controls.Add(this.txtAbstract);
     this.DocManagement_DocModify_XtraTabPage_Summary.Name = "DocManagement_DocModify_XtraTabPage_Summary";
     this.DocManagement_DocModify_XtraTabPage_Summary.Size = new System.Drawing.Size(680, 138);
     this.DocManagement_DocModify_XtraTabPage_Summary.Text = "摘要";
     //
     // txtAbstract
     //
     this.txtAbstract.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtAbstract.Location = new System.Drawing.Point(0, 0);
     this.txtAbstract.Name = "txtAbstract";
     this.txtAbstract.Size = new System.Drawing.Size(680, 138);
     this.txtAbstract.TabIndex = 0;
     //
     // txtDocModel
     //
     this.txtDocModel.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.txtDocModel.Location = new System.Drawing.Point(498, 140);
     this.txtDocModel.Name = "txtDocModel";
     this.txtDocModel.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocModel.Size = new System.Drawing.Size(265, 20);
     this.txtDocModel.TabIndex = 35;
     this.txtDocModel.Click += new System.EventHandler(this.txtDocModel_Click);
     //
     // txtDocUpload
     //
     this.txtDocUpload.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocUpload.Location = new System.Drawing.Point(108, 146);
     this.txtDocUpload.Name = "txtDocUpload";
     this.txtDocUpload.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocUpload.Size = new System.Drawing.Size(279, 20);
     this.txtDocUpload.TabIndex = 33;
     this.txtDocUpload.Click += new System.EventHandler(this.docUpload_ButtonClick);
     //
     // txtDocFlow
     //
     this.txtDocFlow.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocFlow.Location = new System.Drawing.Point(108, 117);
     this.txtDocFlow.Name = "txtDocFlow";
     this.txtDocFlow.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocFlow.Size = new System.Drawing.Size(160, 20);
     this.txtDocFlow.TabIndex = 32;
     this.txtDocFlow.Click += new System.EventHandler(this.txtDocFlow_Click);
     //
     // txtDocCategory
     //
     this.txtDocCategory.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.txtDocCategory.Location = new System.Drawing.Point(498, 60);
     this.txtDocCategory.Name = "txtDocCategory";
     this.txtDocCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocCategory.Size = new System.Drawing.Size(265, 20);
     this.txtDocCategory.TabIndex = 31;
     this.txtDocCategory.Click += new System.EventHandler(this.txtDocCategory_Click);
     //
     // txtDocNumber
     //
     this.txtDocNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocNumber.Location = new System.Drawing.Point(108, 6);
     this.txtDocNumber.Name = "txtDocNumber";
     this.txtDocNumber.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocNumber.Size = new System.Drawing.Size(279, 20);
     this.txtDocNumber.TabIndex = 30;
     this.txtDocNumber.Click += new System.EventHandler(this.txtDocNumber_Click);
     //
     // DocManagement_DocModify_Label_SecurityLevel
     //
     this.DocManagement_DocModify_Label_SecurityLevel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_SecurityLevel.Location = new System.Drawing.Point(32, 201);
     this.DocManagement_DocModify_Label_SecurityLevel.Name = "DocManagement_DocModify_Label_SecurityLevel";
     this.DocManagement_DocModify_Label_SecurityLevel.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_SecurityLevel.TabIndex = 28;
     this.DocManagement_DocModify_Label_SecurityLevel.Text = "文档密级:";
     //
     // DocManagement_DocModify_Label_InValidTime
     //
     this.DocManagement_DocModify_Label_InValidTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_InValidTime.Location = new System.Drawing.Point(427, 173);
     this.DocManagement_DocModify_Label_InValidTime.Name = "DocManagement_DocModify_Label_InValidTime";
     this.DocManagement_DocModify_Label_InValidTime.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_InValidTime.TabIndex = 26;
     this.DocManagement_DocModify_Label_InValidTime.Text = "失效时间:";
     //
     // DocManagement_DocModify_Label_ValidTime
     //
     this.DocManagement_DocModify_Label_ValidTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_ValidTime.Location = new System.Drawing.Point(32, 175);
     this.DocManagement_DocModify_Label_ValidTime.Name = "DocManagement_DocModify_Label_ValidTime";
     this.DocManagement_DocModify_Label_ValidTime.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_ValidTime.TabIndex = 24;
     this.DocManagement_DocModify_Label_ValidTime.Text = "生效时间:";
     //
     // DocManagement_DocModify_Label_DocModel
     //
     this.DocManagement_DocModify_Label_DocModel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocModel.Location = new System.Drawing.Point(427, 146);
     this.DocManagement_DocModify_Label_DocModel.Name = "DocManagement_DocModify_Label_DocModel";
     this.DocManagement_DocModify_Label_DocModel.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocModel.TabIndex = 22;
     this.DocManagement_DocModify_Label_DocModel.Text = "文档模板:";
     //
     // DocManagement_DocModify_Label_DocUpload
     //
     this.DocManagement_DocModify_Label_DocUpload.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocUpload.Location = new System.Drawing.Point(32, 149);
     this.DocManagement_DocModify_Label_DocUpload.Name = "DocManagement_DocModify_Label_DocUpload";
     this.DocManagement_DocModify_Label_DocUpload.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocUpload.TabIndex = 19;
     this.DocManagement_DocModify_Label_DocUpload.Text = "上传文件:";
     //
     // txtDocPage
     //
     this.txtDocPage.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.txtDocPage.Location = new System.Drawing.Point(498, 115);
     this.txtDocPage.Name = "txtDocPage";
     this.txtDocPage.Size = new System.Drawing.Size(265, 20);
     this.txtDocPage.TabIndex = 18;
     //
     // DocManagement_DocModify_Label_DocPage
     //
     this.DocManagement_DocModify_Label_DocPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocPage.Location = new System.Drawing.Point(427, 120);
     this.DocManagement_DocModify_Label_DocPage.Name = "DocManagement_DocModify_Label_DocPage";
     this.DocManagement_DocModify_Label_DocPage.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocPage.TabIndex = 17;
     this.DocManagement_DocModify_Label_DocPage.Text = "文档页面:";
     //
     // DocManagement_DocModify_Label_DocFlow
     //
     this.DocManagement_DocModify_Label_DocFlow.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocFlow.Location = new System.Drawing.Point(32, 120);
     this.DocManagement_DocModify_Label_DocFlow.Name = "DocManagement_DocModify_Label_DocFlow";
     this.DocManagement_DocModify_Label_DocFlow.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocFlow.TabIndex = 16;
     this.DocManagement_DocModify_Label_DocFlow.Text = "文档流程:";
     //
     // DocManagement_DocModify_Label_ModifyTime
     //
     this.DocManagement_DocModify_Label_ModifyTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_ModifyTime.Location = new System.Drawing.Point(427, 92);
     this.DocManagement_DocModify_Label_ModifyTime.Name = "DocManagement_DocModify_Label_ModifyTime";
     this.DocManagement_DocModify_Label_ModifyTime.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_ModifyTime.TabIndex = 15;
     this.DocManagement_DocModify_Label_ModifyTime.Text = "修改时间:";
     //
     // txtModifyTime
     //
     this.txtModifyTime.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.txtModifyTime.Location = new System.Drawing.Point(499, 86);
     this.txtModifyTime.Name = "txtModifyTime";
     this.txtModifyTime.Size = new System.Drawing.Size(264, 20);
     this.txtModifyTime.TabIndex = 14;
     //
     // txtModifyCount
     //
     this.txtModifyCount.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtModifyCount.Location = new System.Drawing.Point(108, 91);
     this.txtModifyCount.Name = "txtModifyCount";
     this.txtModifyCount.Size = new System.Drawing.Size(279, 20);
     this.txtModifyCount.TabIndex = 13;
     //
     // DocManagement_DocModify_Label_ModifyCount
     //
     this.DocManagement_DocModify_Label_ModifyCount.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_ModifyCount.Location = new System.Drawing.Point(32, 94);
     this.DocManagement_DocModify_Label_ModifyCount.Name = "DocManagement_DocModify_Label_ModifyCount";
     this.DocManagement_DocModify_Label_ModifyCount.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_ModifyCount.TabIndex = 12;
     this.DocManagement_DocModify_Label_ModifyCount.Text = "修改次数:";
     //
     // DocManagement_DocModify_Label_DocCategory
     //
     this.DocManagement_DocModify_Label_DocCategory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocCategory.Location = new System.Drawing.Point(427, 63);
     this.DocManagement_DocModify_Label_DocCategory.Name = "DocManagement_DocModify_Label_DocCategory";
     this.DocManagement_DocModify_Label_DocCategory.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocCategory.TabIndex = 10;
     this.DocManagement_DocModify_Label_DocCategory.Text = "文档分类:";
     //
     // txtDocFormat
     //
     this.txtDocFormat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocFormat.Location = new System.Drawing.Point(108, 63);
     this.txtDocFormat.Name = "txtDocFormat";
     this.txtDocFormat.Size = new System.Drawing.Size(279, 20);
     this.txtDocFormat.TabIndex = 9;
     //
     // DocManagement_DocModify_Label_DocFormat
     //
     this.DocManagement_DocModify_Label_DocFormat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocFormat.Location = new System.Drawing.Point(32, 65);
     this.DocManagement_DocModify_Label_DocFormat.Name = "DocManagement_DocModify_Label_DocFormat";
     this.DocManagement_DocModify_Label_DocFormat.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocFormat.TabIndex = 8;
     this.DocManagement_DocModify_Label_DocFormat.Text = "文档格式:";
     //
     // txtEnName
     //
     this.txtEnName.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.txtEnName.Location = new System.Drawing.Point(498, 34);
     this.txtEnName.Name = "txtEnName";
     this.txtEnName.Size = new System.Drawing.Size(265, 20);
     this.txtEnName.TabIndex = 7;
     //
     // DocManagement_DocModify_Label_EnglishName
     //
     this.DocManagement_DocModify_Label_EnglishName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_EnglishName.Location = new System.Drawing.Point(427, 37);
     this.DocManagement_DocModify_Label_EnglishName.Name = "DocManagement_DocModify_Label_EnglishName";
     this.DocManagement_DocModify_Label_EnglishName.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_EnglishName.TabIndex = 6;
     this.DocManagement_DocModify_Label_EnglishName.Text = "英文名称:";
     //
     // DocManagement_DocModify_Label_DocName
     //
     this.DocManagement_DocModify_Label_DocName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocName.Location = new System.Drawing.Point(25, 40);
     this.DocManagement_DocModify_Label_DocName.Name = "DocManagement_DocModify_Label_DocName";
     this.DocManagement_DocModify_Label_DocName.Size = new System.Drawing.Size(59, 14);
     this.DocManagement_DocModify_Label_DocName.TabIndex = 5;
     this.DocManagement_DocModify_Label_DocName.Text = "*文档名称:";
     //
     // txtDocName
     //
     this.txtDocName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocName.Location = new System.Drawing.Point(108, 37);
     this.txtDocName.Name = "txtDocName";
     this.txtDocName.Size = new System.Drawing.Size(279, 20);
     this.txtDocName.TabIndex = 4;
     //
     // txtDocVersion
     //
     this.txtDocVersion.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.txtDocVersion.Location = new System.Drawing.Point(499, 7);
     this.txtDocVersion.Name = "txtDocVersion";
     this.txtDocVersion.Size = new System.Drawing.Size(264, 20);
     this.txtDocVersion.TabIndex = 3;
     //
     // DocManagement_DocModify_Label_DocVersion
     //
     this.DocManagement_DocModify_Label_DocVersion.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocVersion.Location = new System.Drawing.Point(412, 10);
     this.DocManagement_DocModify_Label_DocVersion.Name = "DocManagement_DocModify_Label_DocVersion";
     this.DocManagement_DocModify_Label_DocVersion.Size = new System.Drawing.Size(67, 14);
     this.DocManagement_DocModify_Label_DocVersion.TabIndex = 2;
     this.DocManagement_DocModify_Label_DocVersion.Text = "*文档版本:";
     //
     // DocManagement_DocModify_Label_DocNumber
     //
     this.DocManagement_DocModify_Label_DocNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocNumber.Location = new System.Drawing.Point(25, 10);
     this.DocManagement_DocModify_Label_DocNumber.Name = "DocManagement_DocModify_Label_DocNumber";
     this.DocManagement_DocModify_Label_DocNumber.Size = new System.Drawing.Size(59, 14);
     this.DocManagement_DocModify_Label_DocNumber.TabIndex = 1;
     this.DocManagement_DocModify_Label_DocNumber.Text = "*文档编码:";
     //
     // txtInValidTime
     //
     this.txtInValidTime.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.txtInValidTime.EditValue = null;
     this.txtInValidTime.Location = new System.Drawing.Point(498, 167);
     this.txtInValidTime.Name = "txtInValidTime";
     this.txtInValidTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtInValidTime.Properties.Mask.EditMask = "F";
     this.txtInValidTime.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.txtInValidTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtInValidTime.Size = new System.Drawing.Size(265, 20);
     this.txtInValidTime.TabIndex = 36;
     //
     // txtValidTime
     //
     this.txtValidTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtValidTime.EditValue = null;
     this.txtValidTime.Location = new System.Drawing.Point(108, 172);
     this.txtValidTime.Name = "txtValidTime";
     this.txtValidTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtValidTime.Properties.Mask.EditMask = "F";
     this.txtValidTime.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.txtValidTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtValidTime.Size = new System.Drawing.Size(279, 20);
     this.txtValidTime.TabIndex = 34;
     //
     // DocManagement_DocModify_tabContr_AdditionalInfor
     //
     this.DocManagement_DocModify_tabContr_AdditionalInfor.Name = "DocManagement_DocModify_tabContr_AdditionalInfor";
     this.DocManagement_DocModify_tabContr_AdditionalInfor.Size = new System.Drawing.Size(771, 575);
     this.DocManagement_DocModify_tabContr_AdditionalInfor.Text = "文档附加信息";
     //
     // DocManagement_DocModify_TabContr_ApproInfo
     //
     this.DocManagement_DocModify_TabContr_ApproInfo.Controls.Add(this.panelControl3);
     this.DocManagement_DocModify_TabContr_ApproInfo.Name = "DocManagement_DocModify_TabContr_ApproInfo";
     this.DocManagement_DocModify_TabContr_ApproInfo.Size = new System.Drawing.Size(771, 575);
     this.DocManagement_DocModify_TabContr_ApproInfo.Text = "文档审签信息";
     //
     // panelControl3
     //
     this.panelControl3.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.panelControl3.Controls.Add(this.panelControl4);
     this.panelControl3.Controls.Add(this.DocManage_DocManageTool_DocModify_Query_SimpleButton);
     this.panelControl3.Controls.Add(this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit);
     this.panelControl3.Controls.Add(this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit);
     this.panelControl3.Controls.Add(this.checkEdit4);
     this.panelControl3.Controls.Add(this.checkEdit3);
     this.panelControl3.Controls.Add(this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl);
     this.panelControl3.Location = new System.Drawing.Point(1, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(770, 531);
     this.panelControl3.TabIndex = 7;
     //
     // panelControl4
     //
     this.panelControl4.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.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton);
     this.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton);
     this.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl);
     this.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton);
     this.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl);
     this.panelControl4.Location = new System.Drawing.Point(218, 1);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(552, 530);
     this.panelControl4.TabIndex = 27;
     //
     // DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Location = new System.Drawing.Point(274, 502);
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Name = "DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton";
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.TabIndex = 32;
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Text = "删除";
     //
     // DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Location = new System.Drawing.Point(331, 502);
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Name = "DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton";
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.TabIndex = 31;
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Text = "修改";
     //
     // DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.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.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Location = new System.Drawing.Point(2, 225);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Name = "DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl";
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Size = new System.Drawing.Size(550, 271);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.TabIndex = 9;
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Text = "文档审签详细信息";
     //
     // DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList
     //
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.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.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.Location = new System.Drawing.Point(-2, 22);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.Name = "DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList";
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.OptionsPrint.UsePrintStyles = true;
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.Size = new System.Drawing.Size(552, 249);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.TabIndex = 0;
     //
     // DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Location = new System.Drawing.Point(217, 502);
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Name = "DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton";
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.TabIndex = 30;
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Text = "添加";
     //
     // DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.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.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Location = new System.Drawing.Point(0, -1);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Name = "DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl";
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Size = new System.Drawing.Size(552, 220);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.TabIndex = 8;
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Text = "文档查询结果";
     //
     // DocManage_DocManageTool_DocModify_DocQueryValue_GridControl
     //
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.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.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.Location = new System.Drawing.Point(1, 21);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.MainView = this.gridView2;
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.Name = "DocManage_DocManageTool_DocModify_DocQueryValue_GridControl";
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.Size = new System.Drawing.Size(551, 197);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.TabIndex = 0;
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView2});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13});
     this.gridView2.GridControl = this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "文档名称";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 0;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "文档编号";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 1;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "文档版本";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 2;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "审签状态";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 3;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "申请人";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 4;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "申请日期";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 5;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "审签人";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 6;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "审签日期";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 7;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "备注";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 8;
     //
     // DocManage_DocManageTool_DocModify_Query_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Location = new System.Drawing.Point(158, 204);
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Name = "DocManage_DocManageTool_DocModify_Query_SimpleButton";
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Size = new System.Drawing.Size(59, 23);
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.TabIndex = 26;
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Text = "查询(Q)";
     //
     // DocManage_DocManageTool_DocModify_Proposer_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Location = new System.Drawing.Point(70, 141);
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Proposer_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.TabIndex = 20;
     //
     // DocManage_DocManageTool_DocModify_Approver_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Location = new System.Drawing.Point(70, 178);
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Approver_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.TabIndex = 19;
     //
     // checkEdit4
     //
     this.checkEdit4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.checkEdit4.Location = new System.Drawing.Point(2, 141);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "申请人:";
     this.checkEdit4.Size = new System.Drawing.Size(62, 19);
     this.checkEdit4.TabIndex = 11;
     //
     // checkEdit3
     //
     this.checkEdit3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.checkEdit3.Location = new System.Drawing.Point(2, 178);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "审签人:";
     this.checkEdit3.Size = new System.Drawing.Size(62, 19);
     this.checkEdit3.TabIndex = 10;
     //
     // DocManage_DocManageTool_DocModify_DocMessage_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocName_TextEdit);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.labelControl4);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.labelControl5);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.labelControl6);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Location = new System.Drawing.Point(5, 5);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Name = "DocManage_DocManageTool_DocModify_DocMessage_GroupControl";
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Size = new System.Drawing.Size(212, 122);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.TabIndex = 9;
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Text = "文档信息";
     //
     // DocManage_DocManageTool_DocModify_DocRelease_TextEdit
     //
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.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.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Location = new System.Drawing.Point(65, 96);
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Name = "DocManage_DocManageTool_DocModify_DocRelease_TextEdit";
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.TabIndex = 13;
     //
     // DocManage_DocManageTool_DocModify_DocNumber_TextEdit
     //
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.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.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Location = new System.Drawing.Point(65, 62);
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Name = "DocManage_DocManageTool_DocModify_DocNumber_TextEdit";
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.TabIndex = 14;
     //
     // DocManage_DocManageTool_DocModify_DocName_TextEdit
     //
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Location = new System.Drawing.Point(65, 25);
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Name = "DocManage_DocManageTool_DocModify_DocName_TextEdit";
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.TabIndex = 15;
     //
     // labelControl4
     //
     this.labelControl4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl4.Location = new System.Drawing.Point(7, 28);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(52, 14);
     this.labelControl4.TabIndex = 8;
     this.labelControl4.Text = "文档名称:";
     //
     // labelControl5
     //
     this.labelControl5.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.labelControl5.Location = new System.Drawing.Point(7, 64);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(52, 14);
     this.labelControl5.TabIndex = 7;
     this.labelControl5.Text = "文档编号:";
     //
     // labelControl6
     //
     this.labelControl6.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.labelControl6.Location = new System.Drawing.Point(7, 99);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(52, 14);
     this.labelControl6.TabIndex = 6;
     this.labelControl6.Text = "文档版本:";
     //
     // DocManagement_DocModify_TabContr_DocAssociated
     //
     this.DocManagement_DocModify_TabContr_DocAssociated.Controls.Add(this.panelControl1);
     this.DocManagement_DocModify_TabContr_DocAssociated.Name = "DocManagement_DocModify_TabContr_DocAssociated";
     this.DocManagement_DocModify_TabContr_DocAssociated.Size = new System.Drawing.Size(771, 575);
     this.DocManagement_DocModify_TabContr_DocAssociated.Text = "关联文档";
     //
     // panelControl1
     //
     this.panelControl1.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.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton);
     this.panelControl1.Controls.Add(this.panelControl2);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Creater_CheckEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl);
     this.panelControl1.Location = new System.Drawing.Point(3, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(773, 531);
     this.panelControl1.TabIndex = 7;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Location = new System.Drawing.Point(156, 214);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Name = "DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Size = new System.Drawing.Size(59, 23);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.TabIndex = 25;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Text = "查询(Q)";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Click += new System.EventHandler(this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton_Click);
     //
     // panelControl2
     //
     this.panelControl2.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.panelControl2.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl);
     this.panelControl2.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl);
     this.panelControl2.Location = new System.Drawing.Point(218, 2);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(555, 529);
     this.panelControl2.TabIndex = 23;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.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.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Location = new System.Drawing.Point(5, 202);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Size = new System.Drawing.Size(550, 327);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.TabIndex = 9;
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Text = "关联文档列表区";
     //
     // DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Location = new System.Drawing.Point(294, 299);
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Name = "DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton";
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.TabIndex = 29;
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Text = "删除";
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Click += new System.EventHandler(this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton_Click);
     //
     // DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Location = new System.Drawing.Point(221, 299);
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Name = "DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton";
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.TabIndex = 26;
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Text = "添加";
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Click += new System.EventHandler(this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton_Click);
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.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.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1,
     this.treeListColumn2,
     this.treeListColumn3,
     this.treeListColumn4});
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Location = new System.Drawing.Point(0, 23);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Name = "DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList";
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.OptionsPrint.UsePrintStyles = true;
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Size = new System.Drawing.Size(545, 273);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.TabIndex = 0;
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "文档名称";
     this.treeListColumn1.FieldName = "cn_name";
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.Visible = true;
     this.treeListColumn1.VisibleIndex = 0;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "文档编号";
     this.treeListColumn2.FieldName = "number";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.Visible = true;
     this.treeListColumn2.VisibleIndex = 1;
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "文档版本";
     this.treeListColumn3.FieldName = "version";
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.Visible = true;
     this.treeListColumn3.VisibleIndex = 2;
     //
     // treeListColumn4
     //
     this.treeListColumn4.Caption = "文档类型";
     this.treeListColumn4.FieldName = "document_type_name";
     this.treeListColumn4.Name = "treeListColumn4";
     this.treeListColumn4.Visible = true;
     this.treeListColumn4.VisibleIndex = 3;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.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.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Location = new System.Drawing.Point(3, 1);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Size = new System.Drawing.Size(552, 195);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.TabIndex = 8;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Text = "关联文档查询结果";
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.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.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.Location = new System.Drawing.Point(0, 21);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.MainView = this.gridView1;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.Size = new System.Drawing.Size(547, 174);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.TabIndex = 0;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4});
     this.gridView1.GridControl = this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "文档名称";
     this.gridColumn1.FieldName = "cn_name";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "文档编号";
     this.gridColumn2.FieldName = "number";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "文档版本";
     this.gridColumn3.FieldName = "version";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "文档类型";
     this.gridColumn4.FieldName = "document_type_name";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // DocManage_DocManageTool_DocModify_Creater_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Location = new System.Drawing.Point(68, 141);
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Creater_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.TabIndex = 20;
     //
     // DocManage_DocManageTool_DocModify_Modifier_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Location = new System.Drawing.Point(68, 179);
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Modifier_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.TabIndex = 19;
     //
     // DocManage_DocManageTool_DocModify_Creater_CheckEdit
     //
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Location = new System.Drawing.Point(1, 141);
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Name = "DocManage_DocManageTool_DocModify_Creater_CheckEdit";
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Properties.Caption = "创建人:";
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Size = new System.Drawing.Size(61, 19);
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.TabIndex = 10;
     //
     // DocManage_DocManageTool_DocModify_Modifier_CheckEdit
     //
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Location = new System.Drawing.Point(1, 179);
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Name = "DocManage_DocManageTool_DocModify_Modifier_CheckEdit";
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Properties.Caption = "修改人:";
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Size = new System.Drawing.Size(61, 19);
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.TabIndex = 9;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.labelControl3);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.labelControl2);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.labelControl1);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Location = new System.Drawing.Point(3, 3);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Size = new System.Drawing.Size(212, 122);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.TabIndex = 8;
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Text = "关联文档信息";
     //
     // DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit
     //
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Location = new System.Drawing.Point(65, 96);
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Name = "DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit";
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.TabIndex = 13;
     //
     // DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit
     //
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Location = new System.Drawing.Point(65, 62);
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Name = "DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit";
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.TabIndex = 14;
     //
     // DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit
     //
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Location = new System.Drawing.Point(65, 25);
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Name = "DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit";
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.TabIndex = 15;
     //
     // labelControl3
     //
     this.labelControl3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl3.Location = new System.Drawing.Point(7, 28);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(52, 14);
     this.labelControl3.TabIndex = 8;
     this.labelControl3.Text = "文档名称:";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(7, 64);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(52, 14);
     this.labelControl2.TabIndex = 7;
     this.labelControl2.Text = "文档编号:";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(7, 99);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(52, 14);
     this.labelControl1.TabIndex = 6;
     this.labelControl1.Text = "文档版本:";
     //
     // DocModify
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(772, 567);
     this.Controls.Add(this.DocManagement_DocModify_TabContr);
     this.IsMdiContainer = true;
     this.Name = "DocModify";
     this.Text = "修改文档";
     this.Load += new System.EventHandler(this.docManagement_Load);
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_TabContr)).EndInit();
     this.DocManagement_DocModify_TabContr.ResumeLayout(false);
     this.DocManagement_DocModify_TabContr_BasicInfo.ResumeLayout(false);
     this.DocManagement_DocModify_TabContr_BasicInfo.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckAuto.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckFlow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxDocDense.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_GroupControl_PartsRelated)).EndInit();
     this.DocManagement_DocModify_GroupControl_PartsRelated.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_XtraTabControl_DocBasicInfo)).EndInit();
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.ResumeLayout(false);
     this.DocManagement_DocModify_XtraTabPage_Remark.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).EndInit();
     this.DocManagement_DocModify_XtraTabPage_KeyWords.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtKey.Properties)).EndInit();
     this.DocManagement_DocModify_XtraTabPage_Summary.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtAbstract.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocModel.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocUpload.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocFlow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocPage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtModifyTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtModifyCount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocFormat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEnName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocVersion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInValidTime.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInValidTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValidTime.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValidTime.Properties)).EndInit();
     this.DocManagement_DocModify_TabContr_ApproInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.ResumeLayout(false);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Properties)).EndInit();
     this.DocManagement_DocModify_TabContr_DocAssociated.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.ResumeLayout(false);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.reasonTE = new DevExpress.XtraEditors.TextEdit();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.hphoneCI = new DevExpress.XtraBars.BarCheckItem();
     this.addphoneCI = new DevExpress.XtraBars.BarCheckItem();
     this.emailCI = new DevExpress.XtraBars.BarCheckItem();
     this.skypeCI = new DevExpress.XtraBars.BarCheckItem();
     this.vkCI = new DevExpress.XtraBars.BarCheckItem();
     this.wappCI = new DevExpress.XtraBars.BarCheckItem();
     this.endDE = new DevExpress.XtraEditors.DateEdit();
     this.startDE = new DevExpress.XtraEditors.DateEdit();
     this.dropDownButton1 = new DevExpress.XtraEditors.DropDownButton();
     this.contactAddDD = new DevExpress.XtraBars.PopupMenu(this.components);
     this.cancelButton = new DevExpress.XtraEditors.SimpleButton();
     this.discountCE = new DevExpress.XtraEditors.CheckEdit();
     this.groupnoCB = new DevExpress.XtraEditors.ComboBoxEdit();
     this.discountTE = new DevExpress.XtraEditors.TextEdit();
     this.costTE = new DevExpress.XtraEditors.TextEdit();
     this.sourceCB = new DevExpress.XtraEditors.ComboBoxEdit();
     this.vkTE = new DevExpress.XtraEditors.TextEdit();
     this.skypeTE = new DevExpress.XtraEditors.TextEdit();
     this.emailTE = new DevExpress.XtraEditors.TextEdit();
     this.addphoneTE = new DevExpress.XtraEditors.TextEdit();
     this.homephoneTE = new DevExpress.XtraEditors.TextEdit();
     this.mainphoneTE = new DevExpress.XtraEditors.TextEdit();
     this.pnameTE = new DevExpress.XtraEditors.TextEdit();
     this.underageCE = new DevExpress.XtraEditors.CheckEdit();
     this.lnameTE = new DevExpress.XtraEditors.TextEdit();
     this.fnameTE = new DevExpress.XtraEditors.TextEdit();
     this.okButton = new DevExpress.XtraEditors.SimpleButton();
     this.wappTE = new DevExpress.XtraEditors.ComboBoxEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.okButtonControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.infoCG = new DevExpress.XtraLayout.TabbedControlGroup();
     this.additionalCG = new DevExpress.XtraLayout.LayoutControlGroup();
     this.groupnoControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.sourceControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.startCI = new DevExpress.XtraLayout.LayoutControlItem();
     this.endCI = new DevExpress.XtraLayout.LayoutControlItem();
     this.reasonCI = new DevExpress.XtraLayout.LayoutControlItem();
     this.simpleSeparator2 = new DevExpress.XtraLayout.SimpleSeparator();
     this.simpleSeparator3 = new DevExpress.XtraLayout.SimpleSeparator();
     this.contactsCG = new DevExpress.XtraLayout.LayoutControlGroup();
     this.mainphoneControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.homephoneControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.addphoneControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.simpleSeparator1 = new DevExpress.XtraLayout.SimpleSeparator();
     this.emailControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.vkControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.skypeControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.wappControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.addContactCI = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.paymentsCG = new DevExpress.XtraLayout.LayoutControlGroup();
     this.costControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.discountControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.simpleSeparator5 = new DevExpress.XtraLayout.SimpleSeparator();
     this.simpleLabelItem1 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.discountCBControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.groupPayPeriod = new DevExpress.XtraLayout.SimpleLabelItem();
     this.groupPayLabel = new DevExpress.XtraLayout.SimpleLabelItem();
     this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.fnameControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.pnameControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.lnameControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.cancelButtonControl = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.reasonTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.endDE.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.endDE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.startDE.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.startDE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.contactAddDD)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.discountCE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupnoCB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.discountTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.costTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sourceCB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vkTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.skypeTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.addphoneTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.homephoneTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainphoneTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnameTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.underageCE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lnameTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fnameTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.wappTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.okButtonControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.infoCG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.additionalCG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupnoControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sourceControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.startCI)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.endCI)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.reasonCI)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.contactsCG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainphoneControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.homephoneControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.addphoneControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vkControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.skypeControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.wappControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.addContactCI)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paymentsCG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.costControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.discountControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.discountCBControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPayPeriod)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPayLabel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fnameControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnameControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lnameControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cancelButtonControl)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.AutoScroll = false;
     this.layoutControl1.Controls.Add(this.reasonTE);
     this.layoutControl1.Controls.Add(this.endDE);
     this.layoutControl1.Controls.Add(this.startDE);
     this.layoutControl1.Controls.Add(this.dropDownButton1);
     this.layoutControl1.Controls.Add(this.cancelButton);
     this.layoutControl1.Controls.Add(this.discountCE);
     this.layoutControl1.Controls.Add(this.groupnoCB);
     this.layoutControl1.Controls.Add(this.discountTE);
     this.layoutControl1.Controls.Add(this.costTE);
     this.layoutControl1.Controls.Add(this.sourceCB);
     this.layoutControl1.Controls.Add(this.vkTE);
     this.layoutControl1.Controls.Add(this.skypeTE);
     this.layoutControl1.Controls.Add(this.emailTE);
     this.layoutControl1.Controls.Add(this.addphoneTE);
     this.layoutControl1.Controls.Add(this.homephoneTE);
     this.layoutControl1.Controls.Add(this.mainphoneTE);
     this.layoutControl1.Controls.Add(this.pnameTE);
     this.layoutControl1.Controls.Add(this.underageCE);
     this.layoutControl1.Controls.Add(this.lnameTE);
     this.layoutControl1.Controls.Add(this.fnameTE);
     this.layoutControl1.Controls.Add(this.okButton);
     this.layoutControl1.Controls.Add(this.wappTE);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(578, 296, 552, 465);
     this.layoutControl1.OptionsFocus.ActivateSelectedControlOnGotFocus = false;
     this.layoutControl1.OptionsFocus.AllowFocusGroups = false;
     this.layoutControl1.OptionsFocus.AllowFocusReadonlyEditors = false;
     this.layoutControl1.OptionsFocus.AllowFocusTabbedGroups = false;
     this.layoutControl1.OptionsFocus.EnableAutoTabOrder = false;
     this.layoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.CustomSize;
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(290, 410);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // reasonTE
     //
     this.reasonTE.Location = new System.Drawing.Point(104, 281);
     this.reasonTE.MenuManager = this.barManager1;
     this.reasonTE.Name = "reasonTE";
     this.reasonTE.Size = new System.Drawing.Size(174, 20);
     this.reasonTE.StyleController = this.layoutControl1;
     this.reasonTE.TabIndex = 33;
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.hphoneCI,
     this.addphoneCI,
     this.emailCI,
     this.skypeCI,
     this.vkCI,
     this.wappCI});
     this.barManager1.MaxItemId = 9;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(290, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 410);
     this.barDockControlBottom.Size = new System.Drawing.Size(290, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 410);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(290, 0);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 410);
     //
     // hphoneCI
     //
     this.hphoneCI.Caption = "Home phone";
     this.hphoneCI.Id = 8;
     this.hphoneCI.Name = "hphoneCI";
     this.hphoneCI.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.hphoneCI_CheckedChanged);
     //
     // addphoneCI
     //
     this.addphoneCI.Caption = "Additional phone";
     this.addphoneCI.Id = 0;
     this.addphoneCI.Name = "addphoneCI";
     this.addphoneCI.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.addphoneCI_CheckedChanged);
     //
     // emailCI
     //
     this.emailCI.Caption = "Email";
     this.emailCI.Id = 3;
     this.emailCI.Name = "emailCI";
     this.emailCI.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.emailCI_CheckedChanged);
     //
     // skypeCI
     //
     this.skypeCI.Caption = "Skype";
     this.skypeCI.Id = 2;
     this.skypeCI.Name = "skypeCI";
     this.skypeCI.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.skypeCI_CheckedChanged);
     //
     // vkCI
     //
     this.vkCI.Caption = "VK";
     this.vkCI.Id = 7;
     this.vkCI.Name = "vkCI";
     this.vkCI.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.vkCI_CheckedChanged);
     //
     // wappCI
     //
     this.wappCI.Caption = "Whatsapp";
     this.wappCI.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
     this.wappCI.Id = 6;
     this.wappCI.Name = "wappCI";
     this.wappCI.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.wappCI_CheckedChanged);
     //
     // endDE
     //
     this.endDE.EditValue = null;
     this.endDE.Location = new System.Drawing.Point(104, 257);
     this.endDE.MenuManager = this.barManager1;
     this.endDE.Name = "endDE";
     this.endDE.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.endDE.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.endDE.Size = new System.Drawing.Size(174, 20);
     this.endDE.StyleController = this.layoutControl1;
     this.endDE.TabIndex = 32;
     //
     // startDE
     //
     this.startDE.EditValue = null;
     this.startDE.Location = new System.Drawing.Point(104, 233);
     this.startDE.MenuManager = this.barManager1;
     this.startDE.Name = "startDE";
     this.startDE.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.startDE.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.startDE.Size = new System.Drawing.Size(174, 20);
     this.startDE.StyleController = this.layoutControl1;
     this.startDE.TabIndex = 31;
     //
     // dropDownButton1
     //
     this.dropDownButton1.DropDownArrowStyle = DevExpress.XtraEditors.DropDownArrowStyle.Hide;
     this.dropDownButton1.DropDownControl = this.contactAddDD;
     this.dropDownButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.dropDownButton1.Location = new System.Drawing.Point(195, 337);
     this.dropDownButton1.Name = "dropDownButton1";
     this.dropDownButton1.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.dropDownButton1.Size = new System.Drawing.Size(83, 22);
     this.dropDownButton1.StyleController = this.layoutControl1;
     this.dropDownButton1.TabIndex = 30;
     this.dropDownButton1.Text = "Add / Remove";
     //
     // contactAddDD
     //
     this.contactAddDD.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.hphoneCI),
     new DevExpress.XtraBars.LinkPersistInfo(this.addphoneCI),
     new DevExpress.XtraBars.LinkPersistInfo(this.emailCI),
     new DevExpress.XtraBars.LinkPersistInfo(this.skypeCI),
     new DevExpress.XtraBars.LinkPersistInfo(this.vkCI),
     new DevExpress.XtraBars.LinkPersistInfo(this.wappCI)});
     this.contactAddDD.Manager = this.barManager1;
     this.contactAddDD.Name = "contactAddDD";
     this.contactAddDD.BeforePopup += new System.ComponentModel.CancelEventHandler(this.contactAddDD_BeforePopup);
     //
     // cancelButton
     //
     this.cancelButton.Location = new System.Drawing.Point(215, 383);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(73, 22);
     this.cancelButton.StyleController = this.layoutControl1;
     this.cancelButton.TabIndex = 29;
     this.cancelButton.Text = "Cancel";
     this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
     //
     // discountCE
     //
     this.discountCE.AutoSizeInLayoutControl = true;
     this.discountCE.EnterMoveNextControl = true;
     this.discountCE.Location = new System.Drawing.Point(12, 167);
     this.discountCE.Name = "discountCE";
     this.discountCE.Properties.Caption = "";
     this.discountCE.Size = new System.Drawing.Size(21, 19);
     this.discountCE.StyleController = this.layoutControl1;
     this.discountCE.TabIndex = 28;
     this.discountCE.CheckedChanged += new System.EventHandler(this.checkEdit2_CheckedChanged);
     //
     // groupnoCB
     //
     this.groupnoCB.EnterMoveNextControl = true;
     this.groupnoCB.Location = new System.Drawing.Point(104, 143);
     this.groupnoCB.Name = "groupnoCB";
     this.groupnoCB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.groupnoCB.Size = new System.Drawing.Size(174, 20);
     this.groupnoCB.StyleController = this.layoutControl1;
     this.groupnoCB.TabIndex = 24;
     //
     // discountTE
     //
     this.discountTE.Enabled = false;
     this.discountTE.EnterMoveNextControl = true;
     this.discountTE.Location = new System.Drawing.Point(96, 167);
     this.discountTE.Name = "discountTE";
     this.discountTE.Size = new System.Drawing.Size(182, 20);
     this.discountTE.StyleController = this.layoutControl1;
     this.discountTE.TabIndex = 22;
     //
     // costTE
     //
     this.costTE.EnterMoveNextControl = true;
     this.costTE.Location = new System.Drawing.Point(95, 143);
     this.costTE.Name = "costTE";
     this.costTE.Size = new System.Drawing.Size(183, 20);
     this.costTE.StyleController = this.layoutControl1;
     this.costTE.TabIndex = 21;
     //
     // sourceCB
     //
     this.sourceCB.EnterMoveNextControl = true;
     this.sourceCB.Location = new System.Drawing.Point(104, 188);
     this.sourceCB.Name = "sourceCB";
     this.sourceCB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.sourceCB.Properties.Items.AddRange(new object[] {
     "Outdoor",
     "Ads",
     "Recommendation"});
     this.sourceCB.Size = new System.Drawing.Size(174, 20);
     this.sourceCB.StyleController = this.layoutControl1;
     this.sourceCB.TabIndex = 20;
     //
     // vkTE
     //
     this.vkTE.EnterMoveNextControl = true;
     this.vkTE.Location = new System.Drawing.Point(97, 284);
     this.vkTE.Name = "vkTE";
     this.vkTE.Size = new System.Drawing.Size(181, 20);
     this.vkTE.StyleController = this.layoutControl1;
     this.vkTE.TabIndex = 17;
     //
     // skypeTE
     //
     this.skypeTE.EnterMoveNextControl = true;
     this.skypeTE.Location = new System.Drawing.Point(97, 260);
     this.skypeTE.Name = "skypeTE";
     this.skypeTE.Size = new System.Drawing.Size(181, 20);
     this.skypeTE.StyleController = this.layoutControl1;
     this.skypeTE.TabIndex = 14;
     //
     // emailTE
     //
     this.emailTE.EditValue = "";
     this.emailTE.EnterMoveNextControl = true;
     this.emailTE.Location = new System.Drawing.Point(97, 236);
     this.emailTE.Name = "emailTE";
     this.emailTE.Properties.Mask.EditMask = "[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}";
     this.emailTE.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.emailTE.Size = new System.Drawing.Size(181, 20);
     this.emailTE.StyleController = this.layoutControl1;
     this.emailTE.TabIndex = 13;
     //
     // addphoneTE
     //
     this.addphoneTE.EditValue = "";
     this.addphoneTE.EnterMoveNextControl = true;
     this.addphoneTE.Location = new System.Drawing.Point(97, 191);
     this.addphoneTE.Name = "addphoneTE";
     this.addphoneTE.Properties.Mask.EditMask = "(\\7\\d?\\d?) \\d\\d\\d-\\d\\d-\\d\\d";
     this.addphoneTE.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.addphoneTE.Size = new System.Drawing.Size(181, 20);
     this.addphoneTE.StyleController = this.layoutControl1;
     this.addphoneTE.TabIndex = 12;
     //
     // homephoneTE
     //
     this.homephoneTE.EnterMoveNextControl = true;
     this.homephoneTE.Location = new System.Drawing.Point(97, 167);
     this.homephoneTE.Name = "homephoneTE";
     this.homephoneTE.Properties.Mask.EditMask = "(\\7\\2\\7) \\d\\d\\d-\\d\\d-\\d\\d";
     this.homephoneTE.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.homephoneTE.Size = new System.Drawing.Size(181, 20);
     this.homephoneTE.StyleController = this.layoutControl1;
     this.homephoneTE.TabIndex = 11;
     //
     // mainphoneTE
     //
     this.mainphoneTE.EnterMoveNextControl = true;
     this.mainphoneTE.Location = new System.Drawing.Point(97, 143);
     this.mainphoneTE.Name = "mainphoneTE";
     this.mainphoneTE.Properties.Mask.EditMask = "(\\7\\d?\\d?) \\d\\d\\d-\\d\\d-\\d\\d";
     this.mainphoneTE.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.mainphoneTE.Size = new System.Drawing.Size(181, 20);
     this.mainphoneTE.StyleController = this.layoutControl1;
     this.mainphoneTE.TabIndex = 10;
     //
     // pnameTE
     //
     this.pnameTE.EnterMoveNextControl = true;
     this.pnameTE.Location = new System.Drawing.Point(96, 74);
     this.pnameTE.Name = "pnameTE";
     this.pnameTE.Size = new System.Drawing.Size(192, 20);
     this.pnameTE.StyleController = this.layoutControl1;
     this.pnameTE.TabIndex = 8;
     //
     // underageCE
     //
     this.underageCE.EnterMoveNextControl = true;
     this.underageCE.Location = new System.Drawing.Point(210, 50);
     this.underageCE.Name = "underageCE";
     this.underageCE.Properties.AllowFocused = false;
     this.underageCE.Properties.Caption = "Underage";
     this.underageCE.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.underageCE.Size = new System.Drawing.Size(78, 19);
     this.underageCE.StyleController = this.layoutControl1;
     this.underageCE.TabIndex = 7;
     this.underageCE.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
     //
     // lnameTE
     //
     this.lnameTE.EnterMoveNextControl = true;
     this.lnameTE.Location = new System.Drawing.Point(96, 26);
     this.lnameTE.Name = "lnameTE";
     this.lnameTE.Size = new System.Drawing.Size(192, 20);
     this.lnameTE.StyleController = this.layoutControl1;
     this.lnameTE.TabIndex = 6;
     //
     // fnameTE
     //
     this.fnameTE.EnterMoveNextControl = true;
     this.fnameTE.Location = new System.Drawing.Point(96, 2);
     this.fnameTE.Name = "fnameTE";
     this.fnameTE.Size = new System.Drawing.Size(192, 20);
     this.fnameTE.StyleController = this.layoutControl1;
     this.fnameTE.TabIndex = 5;
     //
     // okButton
     //
     this.okButton.Location = new System.Drawing.Point(127, 383);
     this.okButton.Name = "okButton";
     this.okButton.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.okButton.Size = new System.Drawing.Size(75, 22);
     this.okButton.StyleController = this.layoutControl1;
     this.okButton.TabIndex = 4;
     this.okButton.Text = "OK";
     this.okButton.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // wappTE
     //
     this.wappTE.EnterMoveNextControl = true;
     this.wappTE.Location = new System.Drawing.Point(97, 308);
     this.wappTE.Name = "wappTE";
     this.wappTE.Properties.AllowFocused = false;
     this.wappTE.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.wappTE.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.wappTE.Properties.NullValuePrompt = "Fill main or add. phone numbers";
     this.wappTE.Properties.ShowNullValuePromptWhenFocused = true;
     this.wappTE.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.wappTE.Size = new System.Drawing.Size(181, 20);
     this.wappTE.StyleController = this.layoutControl1;
     this.wappTE.TabIndex = 16;
     this.wappTE.Enter += new System.EventHandler(this.wappTE_Enter);
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "Root";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.False;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.okButtonControl,
     this.infoCG,
     this.fnameControl,
     this.pnameControl,
     this.lnameControl,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.emptySpaceItem3,
     this.cancelButtonControl});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Size = new System.Drawing.Size(290, 410);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // okButtonControl
     //
     this.okButtonControl.Control = this.okButton;
     this.okButtonControl.CustomizationFormText = "okButtonControl";
     this.okButtonControl.Location = new System.Drawing.Point(125, 381);
     this.okButtonControl.Name = "okButtonControl";
     this.okButtonControl.Size = new System.Drawing.Size(79, 29);
     this.okButtonControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.okButtonControl.Text = "okButtonControl";
     this.okButtonControl.TextSize = new System.Drawing.Size(0, 0);
     this.okButtonControl.TextToControlDistance = 0;
     this.okButtonControl.TextVisible = false;
     //
     // infoCG
     //
     this.infoCG.CustomizationFormText = "infoCG";
     this.infoCG.Location = new System.Drawing.Point(0, 96);
     this.infoCG.Name = "infoCG";
     this.infoCG.SelectedTabPage = this.contactsCG;
     this.infoCG.SelectedTabPageIndex = 0;
     this.infoCG.Size = new System.Drawing.Size(290, 285);
     this.infoCG.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 10, 10);
     this.infoCG.TabPages.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.contactsCG,
     this.additionalCG,
     this.paymentsCG});
     this.infoCG.Text = "infoCG";
     this.infoCG.SelectedPageChanged += new DevExpress.XtraLayout.LayoutTabPageChangedEventHandler(this.tabbedControlGroup1_SelectedPageChanged);
     //
     // additionalCG
     //
     this.additionalCG.CustomizationFormText = "Additional Info";
     this.additionalCG.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.groupnoControl,
     this.sourceControl,
     this.startCI,
     this.endCI,
     this.reasonCI,
     this.simpleSeparator2,
     this.simpleSeparator3});
     this.additionalCG.Location = new System.Drawing.Point(0, 0);
     this.additionalCG.Name = "additionalCG";
     this.additionalCG.Size = new System.Drawing.Size(270, 220);
     this.additionalCG.Text = "Organizational";
     //
     // groupnoControl
     //
     this.groupnoControl.Control = this.groupnoCB;
     this.groupnoControl.CustomizationFormText = "Group no.";
     this.groupnoControl.Location = new System.Drawing.Point(0, 0);
     this.groupnoControl.Name = "groupnoControl";
     this.groupnoControl.Size = new System.Drawing.Size(270, 24);
     this.groupnoControl.Text = "Group no.";
     this.groupnoControl.TextSize = new System.Drawing.Size(89, 20);
     //
     // sourceControl
     //
     this.sourceControl.Control = this.sourceCB;
     this.sourceControl.CustomizationFormText = "(!) Source";
     this.sourceControl.Location = new System.Drawing.Point(0, 45);
     this.sourceControl.Name = "sourceControl";
     this.sourceControl.Size = new System.Drawing.Size(270, 24);
     this.sourceControl.Text = "[ ! ] Source";
     this.sourceControl.TextSize = new System.Drawing.Size(89, 20);
     //
     // startCI
     //
     this.startCI.Control = this.startDE;
     this.startCI.CustomizationFormText = "Start date";
     this.startCI.Location = new System.Drawing.Point(0, 90);
     this.startCI.Name = "startCI";
     this.startCI.Size = new System.Drawing.Size(270, 24);
     this.startCI.Text = "Start date";
     this.startCI.TextSize = new System.Drawing.Size(89, 20);
     //
     // endCI
     //
     this.endCI.Control = this.endDE;
     this.endCI.CustomizationFormText = "End date";
     this.endCI.Location = new System.Drawing.Point(0, 114);
     this.endCI.Name = "endCI";
     this.endCI.Size = new System.Drawing.Size(270, 24);
     this.endCI.Text = "End date";
     this.endCI.TextSize = new System.Drawing.Size(89, 20);
     this.endCI.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // reasonCI
     //
     this.reasonCI.Control = this.reasonTE;
     this.reasonCI.CustomizationFormText = "Reason";
     this.reasonCI.Location = new System.Drawing.Point(0, 138);
     this.reasonCI.Name = "reasonCI";
     this.reasonCI.Size = new System.Drawing.Size(270, 82);
     this.reasonCI.Text = "Reason";
     this.reasonCI.TextSize = new System.Drawing.Size(89, 20);
     this.reasonCI.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // simpleSeparator2
     //
     this.simpleSeparator2.AllowHotTrack = false;
     this.simpleSeparator2.CustomizationFormText = "simpleSeparator2";
     this.simpleSeparator2.Location = new System.Drawing.Point(0, 24);
     this.simpleSeparator2.Name = "simpleSeparator2";
     this.simpleSeparator2.Size = new System.Drawing.Size(270, 21);
     this.simpleSeparator2.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 10, 10);
     this.simpleSeparator2.Text = "simpleSeparator2";
     //
     // simpleSeparator3
     //
     this.simpleSeparator3.AllowHotTrack = false;
     this.simpleSeparator3.CustomizationFormText = "simpleSeparator3";
     this.simpleSeparator3.Location = new System.Drawing.Point(0, 69);
     this.simpleSeparator3.Name = "simpleSeparator3";
     this.simpleSeparator3.Size = new System.Drawing.Size(270, 21);
     this.simpleSeparator3.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 10, 10);
     this.simpleSeparator3.Text = "simpleSeparator3";
     //
     // contactsCG
     //
     this.contactsCG.CustomizationFormText = "Contacts";
     this.contactsCG.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.mainphoneControl,
     this.homephoneControl,
     this.addphoneControl,
     this.simpleSeparator1,
     this.emailControl,
     this.vkControl,
     this.skypeControl,
     this.wappControl,
     this.addContactCI,
     this.emptySpaceItem4});
     this.contactsCG.Location = new System.Drawing.Point(0, 0);
     this.contactsCG.Name = "contactsCG";
     this.contactsCG.Size = new System.Drawing.Size(270, 220);
     this.contactsCG.Text = "Contacts";
     //
     // mainphoneControl
     //
     this.mainphoneControl.Control = this.mainphoneTE;
     this.mainphoneControl.CustomizationFormText = "Main phone no.";
     this.mainphoneControl.Location = new System.Drawing.Point(0, 0);
     this.mainphoneControl.Name = "mainphoneControl";
     this.mainphoneControl.Size = new System.Drawing.Size(270, 24);
     this.mainphoneControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.mainphoneControl.Text = "Main phone no.";
     this.mainphoneControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.mainphoneControl.TextSize = new System.Drawing.Size(80, 20);
     this.mainphoneControl.TextToControlDistance = 5;
     //
     // homephoneControl
     //
     this.homephoneControl.Control = this.homephoneTE;
     this.homephoneControl.CustomizationFormText = "Home phone no.";
     this.homephoneControl.Location = new System.Drawing.Point(0, 24);
     this.homephoneControl.Name = "homephoneControl";
     this.homephoneControl.Size = new System.Drawing.Size(270, 24);
     this.homephoneControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.homephoneControl.Text = "Home phone no.";
     this.homephoneControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.homephoneControl.TextSize = new System.Drawing.Size(80, 20);
     this.homephoneControl.TextToControlDistance = 5;
     this.homephoneControl.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // addphoneControl
     //
     this.addphoneControl.Control = this.addphoneTE;
     this.addphoneControl.CustomizationFormText = "Add. phone no.";
     this.addphoneControl.Location = new System.Drawing.Point(0, 48);
     this.addphoneControl.Name = "addphoneControl";
     this.addphoneControl.Size = new System.Drawing.Size(270, 24);
     this.addphoneControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.addphoneControl.Text = "Add. phone no.";
     this.addphoneControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.addphoneControl.TextSize = new System.Drawing.Size(80, 20);
     this.addphoneControl.TextToControlDistance = 5;
     this.addphoneControl.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // simpleSeparator1
     //
     this.simpleSeparator1.AllowHotTrack = false;
     this.simpleSeparator1.CustomizationFormText = "simpleSeparator1";
     this.simpleSeparator1.Location = new System.Drawing.Point(0, 72);
     this.simpleSeparator1.Name = "simpleSeparator1";
     this.simpleSeparator1.Size = new System.Drawing.Size(270, 21);
     this.simpleSeparator1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.simpleSeparator1.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 10, 10);
     this.simpleSeparator1.Text = "simpleSeparator1";
     this.simpleSeparator1.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // emailControl
     //
     this.emailControl.Control = this.emailTE;
     this.emailControl.CustomizationFormText = "email";
     this.emailControl.Location = new System.Drawing.Point(0, 93);
     this.emailControl.Name = "emailControl";
     this.emailControl.Size = new System.Drawing.Size(270, 24);
     this.emailControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.emailControl.Text = "Email";
     this.emailControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.emailControl.TextSize = new System.Drawing.Size(80, 20);
     this.emailControl.TextToControlDistance = 5;
     this.emailControl.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // vkControl
     //
     this.vkControl.Control = this.vkTE;
     this.vkControl.CustomizationFormText = "VK";
     this.vkControl.Location = new System.Drawing.Point(0, 141);
     this.vkControl.Name = "vkControl";
     this.vkControl.Size = new System.Drawing.Size(270, 24);
     this.vkControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.vkControl.Text = "VK";
     this.vkControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.vkControl.TextSize = new System.Drawing.Size(80, 20);
     this.vkControl.TextToControlDistance = 5;
     this.vkControl.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // skypeControl
     //
     this.skypeControl.Control = this.skypeTE;
     this.skypeControl.CustomizationFormText = "Skype";
     this.skypeControl.Location = new System.Drawing.Point(0, 117);
     this.skypeControl.Name = "skypeControl";
     this.skypeControl.Size = new System.Drawing.Size(270, 24);
     this.skypeControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.skypeControl.Text = "Skype";
     this.skypeControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.skypeControl.TextSize = new System.Drawing.Size(80, 20);
     this.skypeControl.TextToControlDistance = 5;
     this.skypeControl.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // wappControl
     //
     this.wappControl.Control = this.wappTE;
     this.wappControl.CustomizationFormText = "Watsapp";
     this.wappControl.Location = new System.Drawing.Point(0, 165);
     this.wappControl.Name = "wappControl";
     this.wappControl.Size = new System.Drawing.Size(270, 24);
     this.wappControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.wappControl.Text = "Watsapp";
     this.wappControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.wappControl.TextSize = new System.Drawing.Size(80, 20);
     this.wappControl.TextToControlDistance = 5;
     this.wappControl.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // addContactCI
     //
     this.addContactCI.Control = this.dropDownButton1;
     this.addContactCI.CustomizationFormText = "addContactCI";
     this.addContactCI.Location = new System.Drawing.Point(183, 189);
     this.addContactCI.Name = "addContactCI";
     this.addContactCI.Size = new System.Drawing.Size(87, 31);
     this.addContactCI.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 5, 0);
     this.addContactCI.Text = "addContactCI";
     this.addContactCI.TextSize = new System.Drawing.Size(0, 0);
     this.addContactCI.TextToControlDistance = 0;
     this.addContactCI.TextVisible = false;
     //
     // emptySpaceItem4
     //
     this.emptySpaceItem4.AllowHotTrack = false;
     this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4";
     this.emptySpaceItem4.Location = new System.Drawing.Point(0, 189);
     this.emptySpaceItem4.MaxSize = new System.Drawing.Size(183, 0);
     this.emptySpaceItem4.MinSize = new System.Drawing.Size(183, 24);
     this.emptySpaceItem4.Name = "emptySpaceItem4";
     this.emptySpaceItem4.Size = new System.Drawing.Size(183, 31);
     this.emptySpaceItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem4.Text = "emptySpaceItem4";
     this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
     //
     // paymentsCG
     //
     this.paymentsCG.CustomizationFormText = "Payments";
     this.paymentsCG.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.costControl,
     this.discountControl,
     this.simpleSeparator5,
     this.simpleLabelItem1,
     this.discountCBControl,
     this.emptySpaceItem2,
     this.groupPayPeriod,
     this.groupPayLabel,
     this.emptySpaceItem5});
     this.paymentsCG.Location = new System.Drawing.Point(0, 0);
     this.paymentsCG.Name = "paymentsCG";
     this.paymentsCG.Size = new System.Drawing.Size(270, 220);
     this.paymentsCG.Text = "Payments";
     //
     // costControl
     //
     this.costControl.Control = this.costTE;
     this.costControl.CustomizationFormText = "Tuition costs";
     this.costControl.Location = new System.Drawing.Point(0, 0);
     this.costControl.Name = "costControl";
     this.costControl.Size = new System.Drawing.Size(270, 24);
     this.costControl.Text = "Tuition costs";
     this.costControl.TextSize = new System.Drawing.Size(80, 20);
     //
     // discountControl
     //
     this.discountControl.Control = this.discountTE;
     this.discountControl.CustomizationFormText = "Discount";
     this.discountControl.Location = new System.Drawing.Point(25, 24);
     this.discountControl.Name = "discountControl";
     this.discountControl.Size = new System.Drawing.Size(245, 24);
     this.discountControl.Text = "Discount";
     this.discountControl.TextSize = new System.Drawing.Size(56, 20);
     //
     // simpleSeparator5
     //
     this.simpleSeparator5.AllowHotTrack = false;
     this.simpleSeparator5.CustomizationFormText = "simpleSeparator5";
     this.simpleSeparator5.Location = new System.Drawing.Point(0, 48);
     this.simpleSeparator5.Name = "simpleSeparator5";
     this.simpleSeparator5.Size = new System.Drawing.Size(270, 21);
     this.simpleSeparator5.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 10, 10);
     this.simpleSeparator5.Text = "simpleSeparator5";
     //
     // simpleLabelItem1
     //
     this.simpleLabelItem1.AllowHotTrack = false;
     this.simpleLabelItem1.CustomizationFormText = "Current payment period";
     this.simpleLabelItem1.Location = new System.Drawing.Point(0, 69);
     this.simpleLabelItem1.Name = "simpleLabelItem1";
     this.simpleLabelItem1.Size = new System.Drawing.Size(83, 24);
     this.simpleLabelItem1.Text = "Payment period:";
     this.simpleLabelItem1.TextSize = new System.Drawing.Size(50, 20);
     //
     // discountCBControl
     //
     this.discountCBControl.Control = this.discountCE;
     this.discountCBControl.ControlAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.discountCBControl.CustomizationFormText = "discountCBControl";
     this.discountCBControl.Location = new System.Drawing.Point(0, 24);
     this.discountCBControl.Name = "discountCBControl";
     this.discountCBControl.Size = new System.Drawing.Size(25, 24);
     this.discountCBControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.discountCBControl.Text = "discountCBControl";
     this.discountCBControl.TextSize = new System.Drawing.Size(0, 0);
     this.discountCBControl.TextToControlDistance = 0;
     this.discountCBControl.TextVisible = false;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(0, 117);
     this.emptySpaceItem2.MinSize = new System.Drawing.Size(104, 24);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(270, 103);
     this.emptySpaceItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // groupPayPeriod
     //
     this.groupPayPeriod.AllowHotTrack = false;
     this.groupPayPeriod.AppearanceItemCaption.ForeColor = System.Drawing.SystemColors.GrayText;
     this.groupPayPeriod.AppearanceItemCaption.Options.UseForeColor = true;
     this.groupPayPeriod.CustomizationFormText = "22.12.2014 - 02.02.2014";
     this.groupPayPeriod.Location = new System.Drawing.Point(83, 93);
     this.groupPayPeriod.Name = "groupPayPeriod";
     this.groupPayPeriod.Size = new System.Drawing.Size(187, 24);
     this.groupPayPeriod.Spacing = new DevExpress.XtraLayout.Utils.Padding(5, 0, 0, 0);
     this.groupPayPeriod.Text = "22.12.2014 - 02.02.2014";
     this.groupPayPeriod.TextSize = new System.Drawing.Size(50, 20);
     //
     // groupPayLabel
     //
     this.groupPayLabel.AllowHotTrack = false;
     this.groupPayLabel.AppearanceItemCaption.ForeColor = System.Drawing.SystemColors.GrayText;
     this.groupPayLabel.AppearanceItemCaption.Options.UseForeColor = true;
     this.groupPayLabel.CustomizationFormText = "group 4-14";
     this.groupPayLabel.Location = new System.Drawing.Point(83, 69);
     this.groupPayLabel.Name = "groupPayLabel";
     this.groupPayLabel.Size = new System.Drawing.Size(187, 24);
     this.groupPayLabel.Spacing = new DevExpress.XtraLayout.Utils.Padding(5, 0, 0, 0);
     this.groupPayLabel.Text = "group 4-14";
     this.groupPayLabel.TextSize = new System.Drawing.Size(50, 20);
     //
     // emptySpaceItem5
     //
     this.emptySpaceItem5.AllowHotTrack = false;
     this.emptySpaceItem5.CustomizationFormText = "emptySpaceItem5";
     this.emptySpaceItem5.Location = new System.Drawing.Point(0, 93);
     this.emptySpaceItem5.MaxSize = new System.Drawing.Size(83, 0);
     this.emptySpaceItem5.MinSize = new System.Drawing.Size(83, 10);
     this.emptySpaceItem5.Name = "emptySpaceItem5";
     this.emptySpaceItem5.Size = new System.Drawing.Size(83, 24);
     this.emptySpaceItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem5.Text = "emptySpaceItem5";
     this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
     //
     // fnameControl
     //
     this.fnameControl.Control = this.fnameTE;
     this.fnameControl.CustomizationFormText = "First name";
     this.fnameControl.Location = new System.Drawing.Point(0, 0);
     this.fnameControl.Name = "fnameControl";
     this.fnameControl.Size = new System.Drawing.Size(290, 24);
     this.fnameControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.fnameControl.Text = "First name";
     this.fnameControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.fnameControl.TextSize = new System.Drawing.Size(89, 13);
     this.fnameControl.TextToControlDistance = 5;
     //
     // pnameControl
     //
     this.pnameControl.Control = this.pnameTE;
     this.pnameControl.CustomizationFormText = "Parent name";
     this.pnameControl.Location = new System.Drawing.Point(0, 72);
     this.pnameControl.Name = "pnameControl";
     this.pnameControl.Size = new System.Drawing.Size(290, 24);
     this.pnameControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.pnameControl.Text = "Parent name";
     this.pnameControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.pnameControl.TextSize = new System.Drawing.Size(89, 13);
     this.pnameControl.TextToControlDistance = 5;
     this.pnameControl.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // lnameControl
     //
     this.lnameControl.Control = this.lnameTE;
     this.lnameControl.CustomizationFormText = "Last name";
     this.lnameControl.Location = new System.Drawing.Point(0, 24);
     this.lnameControl.Name = "lnameControl";
     this.lnameControl.Size = new System.Drawing.Size(290, 24);
     this.lnameControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.lnameControl.Text = "Last name";
     this.lnameControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.lnameControl.TextSize = new System.Drawing.Size(89, 13);
     this.lnameControl.TextToControlDistance = 5;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.underageCE;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(208, 48);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(82, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     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(0, 381);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(125, 29);
     this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(0, 48);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(208, 24);
     this.emptySpaceItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // cancelButtonControl
     //
     this.cancelButtonControl.Control = this.cancelButton;
     this.cancelButtonControl.CustomizationFormText = "cancelButtonControl";
     this.cancelButtonControl.Location = new System.Drawing.Point(204, 381);
     this.cancelButtonControl.MaxSize = new System.Drawing.Size(86, 26);
     this.cancelButtonControl.MinSize = new System.Drawing.Size(86, 26);
     this.cancelButtonControl.Name = "cancelButtonControl";
     this.cancelButtonControl.Size = new System.Drawing.Size(86, 29);
     this.cancelButtonControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.cancelButtonControl.Spacing = new DevExpress.XtraLayout.Utils.Padding(9, 0, 0, 0);
     this.cancelButtonControl.Text = "cancelButtonControl";
     this.cancelButtonControl.TextSize = new System.Drawing.Size(0, 0);
     this.cancelButtonControl.TextToControlDistance = 0;
     this.cancelButtonControl.TextVisible = false;
     //
     // StdMainUC
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "StdMainUC";
     this.Size = new System.Drawing.Size(290, 410);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.reasonTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.endDE.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.endDE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.startDE.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.startDE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.contactAddDD)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.discountCE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupnoCB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.discountTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.costTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sourceCB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vkTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.skypeTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.addphoneTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.homephoneTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainphoneTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnameTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.underageCE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lnameTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fnameTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.wappTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.okButtonControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.infoCG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.additionalCG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupnoControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sourceControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.startCI)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.endCI)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.reasonCI)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.contactsCG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainphoneControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.homephoneControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.addphoneControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vkControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.skypeControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.wappControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.addContactCI)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paymentsCG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.costControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.discountControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.discountCBControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPayPeriod)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPayLabel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fnameControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnameControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lnameControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cancelButtonControl)).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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(QuyTienMat));
     this.colSo_Tien_Ton = new DevExpress.XtraGrid.Columns.GridColumn();
     this.rptMayTinh = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiXem = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatExcel = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.dtDen = new DevExpress.XtraEditors.DateEdit();
     this.dtTu = new DevExpress.XtraEditors.DateEdit();
     this.cbChonNgay = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.quyTienMatTheoNgayBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsQuyTienMat = new Phan_Mem_Quan_Ly_Cam_Do.QuyTienMat.DS.dsQuyTienMat();
     this.gbList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGhi_Chu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Tien_Thu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Tien_Chi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPhan_Loai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Loai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Khach_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMa_Chung_Tu_Cam_Do = new DevExpress.XtraGrid.Columns.GridColumn();
     this.rptMayTinhPhanTram = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.quyTienMatTheoNgayBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQuyTienMat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinhPhanTram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     this.SuspendLayout();
     //
     // colSo_Tien_Ton
     //
     this.colSo_Tien_Ton.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Tien_Ton.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Tien_Ton.Caption = "Số Tiền Tồn";
     this.colSo_Tien_Ton.ColumnEdit = this.rptMayTinh;
     this.colSo_Tien_Ton.FieldName = "So_Tien_Ton";
     this.colSo_Tien_Ton.Name = "colSo_Tien_Ton";
     this.colSo_Tien_Ton.OptionsColumn.ReadOnly = true;
     this.colSo_Tien_Ton.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Tien_Ton.Visible = true;
     this.colSo_Tien_Ton.VisibleIndex = 5;
     //
     // rptMayTinh
     //
     this.rptMayTinh.AutoHeight = false;
     this.rptMayTinh.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinh.DisplayFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.EditFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.Name = "rptMayTinh";
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiXem,
     this.bbiDong,
     this.bbiXuatExcel});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 13;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(49, 160);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXuatExcel),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong)});
     this.bar2.OptionsBar.AllowDelete = true;
     this.bar2.OptionsBar.DrawSizeGrip = true;
     this.bar2.Text = "Main menu";
     //
     // bbiXem
     //
     this.bbiXem.Caption = "Xem";
     this.bbiXem.Id = 0;
     this.bbiXem.ImageIndex = 35;
     this.bbiXem.Name = "bbiXem";
     this.bbiXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXem_ItemClick);
     //
     // bbiXuatExcel
     //
     this.bbiXuatExcel.Caption = "Xuất";
     this.bbiXuatExcel.Id = 12;
     this.bbiXuatExcel.ImageIndex = 54;
     this.bbiXuatExcel.Name = "bbiXuatExcel";
     this.bbiXuatExcel.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXuatExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatExcel_ItemClick);
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 6;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1102, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 416);
     this.barDockControlBottom.Size = new System.Drawing.Size(1102, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 392);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1102, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 392);
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     this.img.Images.SetKeyName(54, "Excel-icon.png");
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.dtDen);
     this.layoutControl1.Controls.Add(this.dtTu);
     this.layoutControl1.Controls.Add(this.cbChonNgay);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 24);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControl1.TabIndex = 4;
     this.layoutControl1.Text = "layoutControl1";
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(452, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(648, 20);
     this.layoutControl2.TabIndex = 8;
     this.layoutControl2.Text = "layoutControl2";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(648, 20);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // dtDen
     //
     this.dtDen.EditValue = null;
     this.dtDen.Location = new System.Drawing.Point(325, 2);
     this.dtDen.MenuManager = this.bm;
     this.dtDen.Name = "dtDen";
     this.dtDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtDen.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtDen.Size = new System.Drawing.Size(123, 20);
     this.dtDen.StyleController = this.layoutControl1;
     this.dtDen.TabIndex = 7;
     //
     // dtTu
     //
     this.dtTu.EditValue = null;
     this.dtTu.Location = new System.Drawing.Point(175, 2);
     this.dtTu.MenuManager = this.bm;
     this.dtTu.Name = "dtTu";
     this.dtTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtTu.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtTu.Size = new System.Drawing.Size(123, 20);
     this.dtTu.StyleController = this.layoutControl1;
     this.dtTu.TabIndex = 6;
     //
     // cbChonNgay
     //
     this.cbChonNgay.EditValue = "Tùy chọn";
     this.cbChonNgay.Location = new System.Drawing.Point(57, 2);
     this.cbChonNgay.MenuManager = this.bm;
     this.cbChonNgay.Name = "cbChonNgay";
     this.cbChonNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbChonNgay.Properties.Items.AddRange(new object[] {
     "Tùy chọn",
     "Tất cả",
     "Tháng 1",
     "Tháng 2",
     "Tháng 3",
     "Tháng 4",
     "Tháng 5",
     "Tháng 6",
     "Tháng 7",
     "Tháng 8",
     "Tháng 9",
     "Tháng 10",
     "Tháng 11",
     "Tháng 12"});
     this.cbChonNgay.Size = new System.Drawing.Size(91, 20);
     this.cbChonNgay.StyleController = this.layoutControl1;
     this.cbChonNgay.TabIndex = 5;
     this.cbChonNgay.SelectedIndexChanged += new System.EventHandler(this.cbChonNgay_SelectedIndexChanged);
     //
     // gcList
     //
     this.gcList.DataSource = this.quyTienMatTheoNgayBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 26);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rptMayTinh,
     this.rptMayTinhPhanTram});
     this.gcList.Size = new System.Drawing.Size(1098, 364);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // quyTienMatTheoNgayBindingSource
     //
     this.quyTienMatTheoNgayBindingSource.DataMember = "Quy_Tien_Mat_Theo_Ngay";
     this.quyTienMatTheoNgayBindingSource.DataSource = this.dsQuyTienMat;
     //
     // dsQuyTienMat
     //
     this.dsQuyTienMat.DataSetName = "dsQuyTienMat";
     this.dsQuyTienMat.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList
     //
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMa,
     this.colNgay,
     this.colGhi_Chu,
     this.colSo_Tien_Thu,
     this.colSo_Tien_Chi,
     this.colSo_Tien_Ton,
     this.colLoai,
     this.colPhan_Loai,
     this.colTen_Loai,
     this.colTen_Khach_Hang,
     this.colMa_Chung_Tu_Cam_Do});
     styleFormatCondition1.Appearance.ForeColor = System.Drawing.Color.Red;
     styleFormatCondition1.Appearance.Options.UseForeColor = true;
     styleFormatCondition1.Column = this.colSo_Tien_Ton;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "Iif([So_Tien_Ton] < 0,True  , False)";
     this.gbList.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.gbList.GridControl = this.gcList;
     this.gbList.GroupPanelText = "Kéo cột và thả vào đây để nhóm dữ liệu";
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsView.RowAutoHeight = true;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     //
     // colMa
     //
     this.colMa.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa.Caption = "Mã Chứng Từ";
     this.colMa.FieldName = "Ma";
     this.colMa.Name = "colMa";
     this.colMa.OptionsColumn.ReadOnly = true;
     this.colMa.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa.Visible = true;
     this.colMa.VisibleIndex = 0;
     //
     // colNgay
     //
     this.colNgay.AppearanceHeader.Options.UseTextOptions = true;
     this.colNgay.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNgay.Caption = "Ngày";
     this.colNgay.FieldName = "Ngay";
     this.colNgay.Name = "colNgay";
     this.colNgay.OptionsColumn.ReadOnly = true;
     this.colNgay.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colNgay.Visible = true;
     this.colNgay.VisibleIndex = 1;
     //
     // colGhi_Chu
     //
     this.colGhi_Chu.AppearanceHeader.Options.UseTextOptions = true;
     this.colGhi_Chu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colGhi_Chu.Caption = "Ghi Chú";
     this.colGhi_Chu.FieldName = "Ghi_Chu";
     this.colGhi_Chu.Name = "colGhi_Chu";
     this.colGhi_Chu.OptionsColumn.ReadOnly = true;
     this.colGhi_Chu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colGhi_Chu.Visible = true;
     this.colGhi_Chu.VisibleIndex = 2;
     //
     // colSo_Tien_Thu
     //
     this.colSo_Tien_Thu.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Tien_Thu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Tien_Thu.Caption = "Số Tiền Thu";
     this.colSo_Tien_Thu.ColumnEdit = this.rptMayTinh;
     this.colSo_Tien_Thu.FieldName = "So_Tien_Thu";
     this.colSo_Tien_Thu.Name = "colSo_Tien_Thu";
     this.colSo_Tien_Thu.OptionsColumn.ReadOnly = true;
     this.colSo_Tien_Thu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Tien_Thu.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Tien_Thu", "{0:##,##0.###}")});
     this.colSo_Tien_Thu.Visible = true;
     this.colSo_Tien_Thu.VisibleIndex = 3;
     //
     // colSo_Tien_Chi
     //
     this.colSo_Tien_Chi.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Tien_Chi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Tien_Chi.Caption = "Số Tiền Chi";
     this.colSo_Tien_Chi.ColumnEdit = this.rptMayTinh;
     this.colSo_Tien_Chi.FieldName = "So_Tien_Chi";
     this.colSo_Tien_Chi.Name = "colSo_Tien_Chi";
     this.colSo_Tien_Chi.OptionsColumn.ReadOnly = true;
     this.colSo_Tien_Chi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Tien_Chi.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Tien_Chi", "{0:##,##0.###}")});
     this.colSo_Tien_Chi.Visible = true;
     this.colSo_Tien_Chi.VisibleIndex = 4;
     //
     // colLoai
     //
     this.colLoai.AppearanceHeader.Options.UseTextOptions = true;
     this.colLoai.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLoai.Caption = "Loại";
     this.colLoai.FieldName = "Loai";
     this.colLoai.Name = "colLoai";
     this.colLoai.OptionsColumn.ReadOnly = true;
     this.colLoai.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLoai.Visible = true;
     this.colLoai.VisibleIndex = 6;
     //
     // colPhan_Loai
     //
     this.colPhan_Loai.AppearanceHeader.Options.UseTextOptions = true;
     this.colPhan_Loai.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPhan_Loai.Caption = "Phân Loại";
     this.colPhan_Loai.FieldName = "Phan_Loai";
     this.colPhan_Loai.Name = "colPhan_Loai";
     this.colPhan_Loai.OptionsColumn.ReadOnly = true;
     this.colPhan_Loai.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colPhan_Loai.Visible = true;
     this.colPhan_Loai.VisibleIndex = 7;
     //
     // colTen_Loai
     //
     this.colTen_Loai.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Loai.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Loai.Caption = "Tên Loại";
     this.colTen_Loai.FieldName = "Ten_Loai";
     this.colTen_Loai.Name = "colTen_Loai";
     this.colTen_Loai.OptionsColumn.ReadOnly = true;
     this.colTen_Loai.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Loai.Visible = true;
     this.colTen_Loai.VisibleIndex = 8;
     //
     // colTen_Khach_Hang
     //
     this.colTen_Khach_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Khach_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Khach_Hang.Caption = "Khách Hàng";
     this.colTen_Khach_Hang.FieldName = "Ten_Khach_Hang";
     this.colTen_Khach_Hang.Name = "colTen_Khach_Hang";
     this.colTen_Khach_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Khach_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Khach_Hang.Visible = true;
     this.colTen_Khach_Hang.VisibleIndex = 9;
     //
     // colMa_Chung_Tu_Cam_Do
     //
     this.colMa_Chung_Tu_Cam_Do.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Chung_Tu_Cam_Do.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Chung_Tu_Cam_Do.Caption = "Mã Chứng Từ Cầm Đồ";
     this.colMa_Chung_Tu_Cam_Do.FieldName = "Ma_Chung_Tu_Cam_Do";
     this.colMa_Chung_Tu_Cam_Do.Name = "colMa_Chung_Tu_Cam_Do";
     this.colMa_Chung_Tu_Cam_Do.OptionsColumn.ReadOnly = true;
     this.colMa_Chung_Tu_Cam_Do.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Chung_Tu_Cam_Do.Visible = true;
     this.colMa_Chung_Tu_Cam_Do.VisibleIndex = 10;
     //
     // rptMayTinhPhanTram
     //
     this.rptMayTinhPhanTram.AutoHeight = false;
     this.rptMayTinhPhanTram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinhPhanTram.DisplayFormat.FormatString = "{0:##,##0.###} %";
     this.rptMayTinhPhanTram.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinhPhanTram.EditFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinhPhanTram.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinhPhanTram.Name = "rptMayTinhPhanTram";
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1102, 368);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cbChonNgay;
     this.layoutControlItem2.CustomizationFormText = "Tùy Chọn:";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(109, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Tùy Chọn:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(50, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.dtTu;
     this.layoutControlItem3.CustomizationFormText = "Từ";
     this.layoutControlItem3.Location = new System.Drawing.Point(150, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Từ";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(20, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.dtDen;
     this.layoutControlItem4.CustomizationFormText = "Đến";
     this.layoutControlItem4.Location = new System.Drawing.Point(300, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Đến";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(20, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(450, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(652, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // QuyTienMat
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1102, 416);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "QuyTienMat";
     this.Text = "Quỹ Tiền Mặt";
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.quyTienMatTheoNgayBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQuyTienMat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinhPhanTram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.dateEdit2 = new DevExpress.XtraEditors.DateEdit();
     this.label7 = new System.Windows.Forms.Label();
     this.lkedtBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.lkedtClassType = new DevExpress.XtraEditors.LookUpEdit();
     this.lkedtInstructor = new DevExpress.XtraEditors.LookUpEdit();
     this.btnGenerate = new DevExpress.XtraEditors.SimpleButton();
     this.cmbDayOfWeek = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gcClass = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.timeEdit1 = new DevExpress.XtraEditors.TimeEdit();
     this.label5 = new System.Windows.Forms.Label();
     this.PRINT1 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.hyperLinkEdit1 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.lkedtClassCode = new DevExpress.XtraEditors.LookUpEdit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkedtBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkedtClassType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkedtInstructor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDayOfWeek.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcClass)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.hyperLinkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkedtClassCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(464, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(96, 16);
     this.label1.TabIndex = 54;
     this.label1.Text = "DAY OF WEEK";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(576, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(88, 16);
     this.label2.TabIndex = 56;
     this.label2.Text = "CLASS TYPE";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(704, 8);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(88, 16);
     this.label3.TabIndex = 58;
     this.label3.Text = "INSTRUCTOR";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(352, 8);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(56, 16);
     this.label4.TabIndex = 60;
     this.label4.Text = "BRANCH";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.Location = new System.Drawing.Point(8, 8);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(80, 16);
     this.label6.TabIndex = 63;
     this.label6.Text = "DATE FROM";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location = new System.Drawing.Point(8, 24);
     this.dateEdit1.Name = "dateEdit1";
     //
     // dateEdit1.Properties
     //
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dateEdit1.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEdit1.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dateEdit1.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEdit1.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateEdit1.TabIndex = 64;
     //
     // dateEdit2
     //
     this.dateEdit2.EditValue = null;
     this.dateEdit2.Location = new System.Drawing.Point(120, 24);
     this.dateEdit2.Name = "dateEdit2";
     //
     // dateEdit2.Properties
     //
     this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit2.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dateEdit2.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEdit2.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dateEdit2.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEdit2.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateEdit2.TabIndex = 66;
     //
     // label7
     //
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label7.Location = new System.Drawing.Point(120, 8);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(72, 16);
     this.label7.TabIndex = 65;
     this.label7.Text = "DATE TO";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lkedtBranch
     //
     this.lkedtBranch.EditValue = "";
     this.lkedtBranch.Location = new System.Drawing.Point(352, 24);
     this.lkedtBranch.Name = "lkedtBranch";
     //
     // lkedtBranch.Properties
     //
     this.lkedtBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkedtBranch.TabIndex = 67;
     //
     // lkedtClassType
     //
     this.lkedtClassType.EditValue = "";
     this.lkedtClassType.Location = new System.Drawing.Point(576, 24);
     this.lkedtClassType.Name = "lkedtClassType";
     //
     // lkedtClassType.Properties
     //
     this.lkedtClassType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkedtClassType.Size = new System.Drawing.Size(120, 20);
     this.lkedtClassType.TabIndex = 68;
     //
     // lkedtInstructor
     //
     this.lkedtInstructor.EditValue = "";
     this.lkedtInstructor.Location = new System.Drawing.Point(704, 24);
     this.lkedtInstructor.Name = "lkedtInstructor";
     //
     // lkedtInstructor.Properties
     //
     this.lkedtInstructor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkedtInstructor.Size = new System.Drawing.Size(160, 20);
     this.lkedtInstructor.TabIndex = 69;
     //
     // btnGenerate
     //
     this.btnGenerate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnGenerate.Appearance.Options.UseFont = true;
     this.btnGenerate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGenerate.Location = new System.Drawing.Point(872, 19);
     this.btnGenerate.Name = "btnGenerate";
     this.btnGenerate.Size = new System.Drawing.Size(72, 24);
     this.btnGenerate.TabIndex = 70;
     this.btnGenerate.Text = "Generate";
     this.btnGenerate.Click += new System.EventHandler(this.btnGenerate_Click);
     //
     // cmbDayOfWeek
     //
     this.cmbDayOfWeek.EditValue = "";
     this.cmbDayOfWeek.Location = new System.Drawing.Point(464, 24);
     this.cmbDayOfWeek.Name = "cmbDayOfWeek";
     //
     // cmbDayOfWeek.Properties
     //
     this.cmbDayOfWeek.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbDayOfWeek.Properties.Items.AddRange(new object[] {
                                                                  "",
                                                                  "SUN",
                                                                  "MON",
                                                                  "TUE",
                                                                  "WED",
                                                                  "THU",
                                                                  "FRI",
                                                                  "SAT"});
     this.cmbDayOfWeek.TabIndex = 71;
     //
     // gcClass
     //
     this.gcClass.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gcClass.EmbeddedNavigator
     //
     this.gcClass.EmbeddedNavigator.Name = "";
     this.gcClass.Location = new System.Drawing.Point(0, 68);
     this.gcClass.MainView = this.gridView1;
     this.gcClass.Name = "gcClass";
     this.gcClass.Size = new System.Drawing.Size(945, 432);
     this.gcClass.TabIndex = 72;
     this.gcClass.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                            this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn1,
                                                                                      this.gridColumn2,
                                                                                      this.gridColumn3,
                                                                                      this.gridColumn4,
                                                                                      this.gridColumn5,
                                                                                      this.gridColumn6,
                                                                                      this.gridColumn7,
                                                                                      this.gridColumn8});
     this.gridView1.GridControl = this.gcClass;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "CLASS DATE";
     this.gridColumn1.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn1.FieldName = "dtDate";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 107;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "DOW";
     this.gridColumn2.FieldName = "DOW";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 97;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "BR";
     this.gridColumn3.FieldName = "strBranchCode";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 92;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "TIME";
     this.gridColumn4.DisplayFormat.FormatString = "hh:mm tt";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn4.FieldName = "dtStartTime";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width = 99;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "CLASS";
     this.gridColumn5.FieldName = "strClassCode";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 110;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "ATT NO";
     this.gridColumn6.FieldName = "TotalAttendee";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 76;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "INSTRUCTOR";
     this.gridColumn7.FieldName = "InstructorName";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 169;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "ATTENDANCE MARKED BY";
     this.gridColumn8.FieldName = "VerifyName";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 7;
     this.gridColumn8.Width = 198;
     //
     // timeEdit1
     //
     this.timeEdit1.EditValue = "";
     this.timeEdit1.Location = new System.Drawing.Point(235, 24);
     this.timeEdit1.Name = "timeEdit1";
     //
     // timeEdit1.Properties
     //
     this.timeEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.timeEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton()});
     this.timeEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.timeEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.timeEdit1.TabIndex = 73;
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location = new System.Drawing.Point(235, 8);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(88, 16);
     this.label5.TabIndex = 74;
     this.label5.Text = "CLASS TIME";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // PRINT1
     //
     this.PRINT1.EditValue = "PRINT";
     this.PRINT1.Location = new System.Drawing.Point(904, 48);
     this.PRINT1.Name = "PRINT1";
     //
     // PRINT1.Properties
     //
     this.PRINT1.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT1.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT1.Size = new System.Drawing.Size(40, 18);
     this.PRINT1.TabIndex = 141;
     this.PRINT1.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT1_OpenLink);
     //
     // hyperLinkEdit1
     //
     this.hyperLinkEdit1.EditValue = "RESET";
     this.hyperLinkEdit1.Location = new System.Drawing.Point(304, 6);
     this.hyperLinkEdit1.Name = "hyperLinkEdit1";
     //
     // hyperLinkEdit1.Properties
     //
     this.hyperLinkEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.hyperLinkEdit1.Properties.Appearance.Options.UseBackColor = true;
     this.hyperLinkEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.hyperLinkEdit1.Size = new System.Drawing.Size(40, 18);
     this.hyperLinkEdit1.TabIndex = 142;
     this.hyperLinkEdit1.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.hyperLinkEdit1_OpenLink);
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
                                                          this.printableComponentLink1});
     //
     // printableComponentLink1
     //
     this.printableComponentLink1.Component = this.gcClass;
     this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] {
                                                                                                                                                              "CLASS ANALYSIS REPORT BY VARIABLE (TABLE FORM)",
                                                                                                                                                              "",
                                                                                                                                                              "[Date Printed] [Time Printed]"}, new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))), DevExpress.XtraPrinting.BrickAlignment.Near), new DevExpress.XtraPrinting.PageFooterArea(new string[] {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           "",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           "",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near));
     this.printableComponentLink1.PrintingSystem = this.printingSystem1;
     //
     // lkedtClassCode
     //
     this.lkedtClassCode.EditValue = "";
     this.lkedtClassCode.Location = new System.Drawing.Point(576, 48);
     this.lkedtClassCode.Name = "lkedtClassCode";
     //
     // lkedtClassCode.Properties
     //
     this.lkedtClassCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkedtClassCode.Size = new System.Drawing.Size(120, 20);
     this.lkedtClassCode.TabIndex = 143;
     //
     // RPClassAnalysisByVariable
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(945, 486);
     this.Controls.Add(this.lkedtClassCode);
     this.Controls.Add(this.hyperLinkEdit1);
     this.Controls.Add(this.PRINT1);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.timeEdit1);
     this.Controls.Add(this.gcClass);
     this.Controls.Add(this.cmbDayOfWeek);
     this.Controls.Add(this.btnGenerate);
     this.Controls.Add(this.lkedtInstructor);
     this.Controls.Add(this.lkedtClassType);
     this.Controls.Add(this.lkedtBranch);
     this.Controls.Add(this.dateEdit2);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.dateEdit1);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "RPClassAnalysisByVariable";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Class Analysis By Variable (Table Form)";
     this.TopMost = true;
     this.Load += new System.EventHandler(this.RPClassAnalysisByVariable_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkedtBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkedtClassType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkedtInstructor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDayOfWeek.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcClass)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.hyperLinkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkedtClassCode.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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MaterialInStockAdd));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule4 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject6 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule5 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject7 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule6 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.lab1 = new DevExpress.XtraEditors.LabelControl();
     this.gcItem = new Ultra.FASControls.GridControlEx();
     this.gvItem = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.txtCreatedate = new DevExpress.XtraEditors.DateEdit();
     this.comType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtReceiv = new Ultra.FASControls.LabelTextBox();
     this.txtHands = new Ultra.FASControls.LabelTextBox();
     this.txtSend = new Ultra.FASControls.LabelTextBox();
     this.btnCtl1 = new FAC.Login.Controls.BtnCtl();
     this.txtItem = new Ultra.FASControls.LabelTextBox();
     this.pgr1 = new Ultra.FASControls.MaterialPager();
     this.gcStckItem = new Ultra.FASControls.GridControlEx();
     this.gvStckItem = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = 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.repLoc = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.repositoryItemGridLookUpEdit1View = 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.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repPrice = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.rspSuppName = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.lab2 = new DevExpress.XtraEditors.LabelControl();
     this.btnDelItem = new FAC.Login.Controls.BtnCtl();
     this.dxValidationProvider1 = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.pnlMain)).BeginInit();
     this.pnlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlFill)).BeginInit();
     this.pnlFill.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlBottom)).BeginInit();
     this.pnlBottom.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreatedate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreatedate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceiv.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtHands.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSend.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcStckItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvStckItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repLoc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rspSuppName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // btnClose
     //
     this.btnClose.Location = new System.Drawing.Point(32767, 5);
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(32767, 6);
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // pnlMain
     //
     this.pnlMain.Size = new System.Drawing.Size(755, 409);
     //
     // pnlFill
     //
     this.pnlFill.Controls.Add(this.splitContainerControl1);
     this.pnlFill.Size = new System.Drawing.Size(755, 363);
     //
     // pnlBottom
     //
     this.pnlBottom.Location = new System.Drawing.Point(0, 363);
     this.pnlBottom.Size = new System.Drawing.Size(755, 46);
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(2, 2);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.lab1);
     this.splitContainerControl1.Panel1.Controls.Add(this.gcItem);
     this.splitContainerControl1.Panel1.Controls.Add(this.panelControl2);
     this.splitContainerControl1.Panel1.Controls.Add(this.pgr1);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.gcStckItem);
     this.splitContainerControl1.Panel2.Controls.Add(this.panelControl1);
     this.splitContainerControl1.Panel2.Text = "Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(751, 359);
     this.splitContainerControl1.SplitterPosition = 214;
     this.splitContainerControl1.TabIndex = 2;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // lab1
     //
     this.lab1.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.lab1.Location = new System.Drawing.Point(687, 248);
     this.lab1.Name = "lab1";
     this.lab1.Size = new System.Drawing.Size(60, 14);
     this.lab1.TabIndex = 12;
     this.lab1.Text = "双击添加行";
     //
     // gcItem
     //
     this.gcItem.AutoCallWW = true;
     this.gcItem.CellStyleColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.gcItem.ColorFieldName = null;
     this.gcItem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcItem.ImageFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcItem.ImageFields")));
     this.gcItem.Location = new System.Drawing.Point(0, 67);
     this.gcItem.MainView = this.gvItem;
     this.gcItem.Name = "gcItem";
     this.gcItem.PopupMnu = null;
     this.gcItem.PopupTextFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcItem.PopupTextFields")));
     this.gcItem.PopupTextFieldsReadOnly = ((System.Collections.Generic.List<string>)(resources.GetObject("gcItem.PopupTextFieldsReadOnly")));
     this.gcItem.PropName = "PropName";
     this.gcItem.PrvCityDistrict = ((System.Collections.Generic.List<string>)(resources.GetObject("gcItem.PrvCityDistrict")));
     this.gcItem.RightMenu = null;
     this.gcItem.RowCellColorStyleSource = null;
     this.gcItem.ShadowDataSource = null;
     this.gcItem.ShadowDataSourceKey = "Guid";
     this.gcItem.ShowIndicator = true;
     this.gcItem.ShowRowNumber = true;
     this.gcItem.Size = new System.Drawing.Size(751, 119);
     this.gcItem.TabIndex = 11;
     this.gcItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvItem});
     this.gcItem.RowCellDoubleClick += new System.EventHandler<System.Windows.Forms.MouseEventArgs>(this.gcItem_RowCellDoubleClick);
     //
     // gvItem
     //
     this.gvItem.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvItem.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvItem.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvItem.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvItem.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn13});
     this.gvItem.GridControl = this.gcItem;
     this.gvItem.IndicatorWidth = 44;
     this.gvItem.Name = "gvItem";
     this.gvItem.OptionsBehavior.Editable = false;
     this.gvItem.OptionsView.ColumnAutoWidth = false;
     this.gvItem.OptionsView.ShowAutoFilterRow = true;
     this.gvItem.OptionsView.ShowGroupPanel = false;
     this.gvItem.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn1, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "材料货号";
     this.gridColumn1.FieldName = "MaterialNo";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 1;
     this.gridColumn1.Width = 226;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "材料名称";
     this.gridColumn2.FieldName = "MaterialName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 142;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "单位";
     this.gridColumn13.FieldName = "Unit";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.OptionsColumn.AllowEdit = false;
     this.gridColumn13.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 2;
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.txtCreatedate);
     this.panelControl2.Controls.Add(this.comType);
     this.panelControl2.Controls.Add(this.txtReceiv);
     this.panelControl2.Controls.Add(this.txtHands);
     this.panelControl2.Controls.Add(this.txtSend);
     this.panelControl2.Controls.Add(this.btnCtl1);
     this.panelControl2.Controls.Add(this.txtItem);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl2.Location = new System.Drawing.Point(0, 0);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(751, 67);
     this.panelControl2.TabIndex = 10;
     //
     // txtCreatedate
     //
     this.txtCreatedate.EditValue = null;
     this.txtCreatedate.Location = new System.Drawing.Point(510, 33);
     this.txtCreatedate.Name = "txtCreatedate";
     this.txtCreatedate.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.txtCreatedate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "入库日期", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, true)});
     this.txtCreatedate.Properties.DisplayFormat.FormatString = "yyyy-MM-dd ";
     this.txtCreatedate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.txtCreatedate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtCreatedate.Size = new System.Drawing.Size(181, 21);
     this.txtCreatedate.TabIndex = 17;
     conditionValidationRule4.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule4.ErrorText = "必填!";
     conditionValidationRule4.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProvider1.SetValidationRule(this.txtCreatedate, conditionValidationRule4);
     //
     // comType
     //
     this.comType.Location = new System.Drawing.Point(310, 33);
     this.comType.Name = "comType";
     this.comType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "入库类型", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject6, "", null, null, true)});
     this.comType.Properties.Items.AddRange(new object[] {
     "物料入库",
     "返料入库"});
     this.comType.Size = new System.Drawing.Size(194, 21);
     this.comType.TabIndex = 16;
     conditionValidationRule5.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule5.ErrorText = "必填!";
     conditionValidationRule5.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProvider1.SetValidationRule(this.comType, conditionValidationRule5);
     //
     // txtReceiv
     //
     this.txtReceiv.LabelText = "收货人";
     this.txtReceiv.Location = new System.Drawing.Point(10, 33);
     this.txtReceiv.Name = "txtReceiv";
     serializableAppearanceObject7.Options.UseTextOptions = true;
     serializableAppearanceObject7.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.txtReceiv.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "收货人", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject7, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.txtReceiv.Size = new System.Drawing.Size(201, 21);
     this.txtReceiv.TabIndex = 4;
     conditionValidationRule6.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule6.ErrorText = "必填!";
     conditionValidationRule6.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProvider1.SetValidationRule(this.txtReceiv, conditionValidationRule6);
     //
     // txtHands
     //
     this.txtHands.LabelText = "经手人";
     this.txtHands.Location = new System.Drawing.Point(510, 6);
     this.txtHands.Name = "txtHands";
     serializableAppearanceObject1.Options.UseTextOptions = true;
     serializableAppearanceObject1.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.txtHands.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "经手人", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.txtHands.Size = new System.Drawing.Size(181, 21);
     this.txtHands.TabIndex = 3;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "必填!";
     conditionValidationRule1.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProvider1.SetValidationRule(this.txtHands, conditionValidationRule1);
     //
     // txtSend
     //
     this.txtSend.LabelText = "送货单号";
     this.txtSend.Location = new System.Drawing.Point(310, 6);
     this.txtSend.Name = "txtSend";
     serializableAppearanceObject2.Options.UseTextOptions = true;
     serializableAppearanceObject2.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.txtSend.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "送货单号", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.txtSend.Size = new System.Drawing.Size(194, 21);
     this.txtSend.TabIndex = 2;
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "必填!";
     conditionValidationRule2.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProvider1.SetValidationRule(this.txtSend, conditionValidationRule2);
     //
     // btnCtl1
     //
     this.btnCtl1.Location = new System.Drawing.Point(217, 4);
     this.btnCtl1.Name = "btnCtl1";
     this.btnCtl1.Size = new System.Drawing.Size(75, 23);
     this.btnCtl1.TabIndex = 1;
     this.btnCtl1.Text = "查询";
     this.btnCtl1.Click += new System.EventHandler(this.btnCtl1_Click);
     //
     // txtItem
     //
     this.txtItem.LabelText = "材料货号";
     this.txtItem.Location = new System.Drawing.Point(10, 6);
     this.txtItem.Name = "txtItem";
     serializableAppearanceObject3.Options.UseTextOptions = true;
     serializableAppearanceObject3.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.txtItem.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "材料货号", 75, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.txtItem.Size = new System.Drawing.Size(201, 21);
     this.txtItem.TabIndex = 0;
     //
     // pgr1
     //
     this.pgr1.Caller = null;
     this.pgr1.Counts = 0;
     this.pgr1.CurrentPage = 1;
     this.pgr1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pgr1.Grid = this.gcItem;
     this.pgr1.Location = new System.Drawing.Point(0, 186);
     this.pgr1.Name = "pgr1";
     this.pgr1.OrderBy = null;
     this.pgr1.PageCount = 0;
     this.pgr1.PageSize = 500;
     this.pgr1.PrefixWhr = null;
     this.pgr1.ResultData = null;
     this.pgr1.Size = new System.Drawing.Size(751, 28);
     this.pgr1.TabIndex = 8;
     //
     // gcStckItem
     //
     this.gcStckItem.AutoCallWW = true;
     this.gcStckItem.CellStyleColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.gcStckItem.ColorFieldName = null;
     this.gcStckItem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcStckItem.Editable = true;
     this.gcStckItem.ImageFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcStckItem.ImageFields")));
     this.gcStckItem.Location = new System.Drawing.Point(0, 0);
     this.gcStckItem.MainView = this.gvStckItem;
     this.gcStckItem.Name = "gcStckItem";
     this.gcStckItem.PopupMnu = null;
     this.gcStckItem.PopupTextFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcStckItem.PopupTextFields")));
     this.gcStckItem.PopupTextFieldsReadOnly = ((System.Collections.Generic.List<string>)(resources.GetObject("gcStckItem.PopupTextFieldsReadOnly")));
     this.gcStckItem.PropName = "PropName";
     this.gcStckItem.PrvCityDistrict = ((System.Collections.Generic.List<string>)(resources.GetObject("gcStckItem.PrvCityDistrict")));
     this.gcStckItem.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repLoc,
     this.repositoryItemSpinEdit1,
     this.rspSuppName,
     this.repPrice});
     this.gcStckItem.RightMenu = null;
     this.gcStckItem.RowCellColorStyleSource = null;
     this.gcStckItem.ShadowDataSource = null;
     this.gcStckItem.ShadowDataSourceKey = "Guid";
     this.gcStckItem.ShowIndicator = true;
     this.gcStckItem.ShowRowNumber = true;
     this.gcStckItem.Size = new System.Drawing.Size(751, 108);
     this.gcStckItem.TabIndex = 9;
     this.gcStckItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvStckItem});
     this.gcStckItem.RowCellDoubleClick += new System.EventHandler<System.Windows.Forms.MouseEventArgs>(this.gcStckItem_RowCellDoubleClick);
     //
     // gvStckItem
     //
     this.gvStckItem.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvStckItem.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvStckItem.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvStckItem.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvStckItem.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn4,
     this.gridColumn3,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn14,
     this.gridColumn9,
     this.gridColumn15,
     this.gridColumn5,
     this.gridColumn18});
     this.gvStckItem.GridControl = this.gcStckItem;
     this.gvStckItem.IndicatorWidth = 44;
     this.gvStckItem.Name = "gvStckItem";
     this.gvStckItem.OptionsView.ColumnAutoWidth = false;
     this.gvStckItem.OptionsView.ShowAutoFilterRow = true;
     this.gvStckItem.OptionsView.ShowGroupPanel = false;
     this.gvStckItem.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gvStckItem_CellValueChanged);
     this.gvStckItem.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gvStckItem_CellValueChanging);
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "材料货号";
     this.gridColumn4.FieldName = "MaterialNo";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 0;
     this.gridColumn4.Width = 82;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "材料名称";
     this.gridColumn3.FieldName = "MaterialName";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width = 119;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "仓库";
     this.gridColumn6.FieldName = "WareName";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 2;
     this.gridColumn6.Width = 63;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "区域";
     this.gridColumn7.FieldName = "AreaName";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 3;
     this.gridColumn7.Width = 63;
     //
     // gridColumn8
     //
     this.gridColumn8.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(185)))), ((int)(((byte)(183)))));
     this.gridColumn8.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn8.Caption = "库位";
     this.gridColumn8.ColumnEdit = this.repLoc;
     this.gridColumn8.FieldName = "LocName";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 4;
     this.gridColumn8.Width = 59;
     //
     // repLoc
     //
     this.repLoc.AutoHeight = false;
     this.repLoc.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repLoc.DisplayMember = "LocName";
     this.repLoc.Name = "repLoc";
     this.repLoc.NullText = "";
     this.repLoc.ValueMember = "LocName";
     this.repLoc.View = this.repositoryItemGridLookUpEdit1View;
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12});
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowAutoFilterRow = true;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "仓库";
     this.gridColumn10.FieldName = "WareName";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 0;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "区域";
     this.gridColumn11.FieldName = "AreaName";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 1;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "库位";
     this.gridColumn12.FieldName = "LocName";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 2;
     //
     // gridColumn14
     //
     this.gridColumn14.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(185)))), ((int)(((byte)(183)))));
     this.gridColumn14.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn14.Caption = "单价";
     this.gridColumn14.ColumnEdit = this.repPrice;
     this.gridColumn14.FieldName = "CostPrice";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 5;
     //
     // repPrice
     //
     this.repPrice.AutoHeight = false;
     this.repPrice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repPrice.Mask.EditMask = "F2";
     this.repPrice.MaxValue = new decimal(new int[] {
     999999999,
     0,
     0,
     131072});
     this.repPrice.Name = "repPrice";
     //
     // gridColumn9
     //
     this.gridColumn9.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(185)))), ((int)(((byte)(183)))));
     this.gridColumn9.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn9.Caption = "入库数量";
     this.gridColumn9.ColumnEdit = this.repositoryItemSpinEdit1;
     this.gridColumn9.FieldName = "Num";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 6;
     this.gridColumn9.Width = 66;
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.Mask.EditMask = "F2";
     this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
     999999999,
     0,
     0,
     131072});
     this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
     1,
     0,
     0,
     131072});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "成本总价";
     this.gridColumn15.FieldName = "AllCostPrice";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 7;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "单位";
     this.gridColumn5.FieldName = "Unit";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 8;
     //
     // gridColumn18
     //
     this.gridColumn18.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(185)))), ((int)(((byte)(183)))));
     this.gridColumn18.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn18.Caption = "备注";
     this.gridColumn18.FieldName = "Remark";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 9;
     this.gridColumn18.Width = 57;
     //
     // rspSuppName
     //
     this.rspSuppName.AutoHeight = false;
     this.rspSuppName.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rspSuppName.DisplayMember = "SuppName";
     this.rspSuppName.Name = "rspSuppName";
     this.rspSuppName.NullText = "";
     this.rspSuppName.ValueMember = "SuppName";
     this.rspSuppName.View = this.gridView1;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn26});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowAutoFilterRow = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "供应商";
     this.gridColumn26.FieldName = "SuppName";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 0;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.lab2);
     this.panelControl1.Controls.Add(this.btnDelItem);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 108);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(751, 32);
     this.panelControl1.TabIndex = 7;
     //
     // lab2
     //
     this.lab2.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.lab2.Location = new System.Drawing.Point(166, 8);
     this.lab2.Name = "lab2";
     this.lab2.Size = new System.Drawing.Size(60, 14);
     this.lab2.TabIndex = 5;
     this.lab2.Text = "双击移除行";
     this.lab2.Visible = false;
     //
     // btnDelItem
     //
     this.btnDelItem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnDelItem.Location = new System.Drawing.Point(63, 5);
     this.btnDelItem.Name = "btnDelItem";
     this.btnDelItem.Size = new System.Drawing.Size(97, 23);
     this.btnDelItem.TabIndex = 3;
     this.btnDelItem.Text = "移除所选商品";
     this.btnDelItem.Visible = false;
     //
     // MaterialInStockAdd
     //
     this.AcceptButton = null;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(755, 409);
     this.Name = "MaterialInStockAdd";
     this.Text = "入库单编辑";
     this.Load += new System.EventHandler(this.StockAddView_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pnlMain)).EndInit();
     this.pnlMain.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlFill)).EndInit();
     this.pnlFill.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlBottom)).EndInit();
     this.pnlBottom.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtCreatedate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreatedate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceiv.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtHands.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSend.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcStckItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvStckItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repLoc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rspSuppName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProvider1)).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.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.checkedListBoxControl1 = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.textEdit6 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.textEdit3 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit4 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.textEdit5 = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // labelControl3
     //
     this.labelControl3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl3.Location = new System.Drawing.Point(175, 186);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(117, 17);
     this.labelControl3.TabIndex = 108;
     this.labelControl3.Text = "初始中心选择方法:";
     //
     // comboBoxEdit1
     //
     this.comboBoxEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxEdit1.EditValue = "随机选取";
     this.comboBoxEdit1.Location = new System.Drawing.Point(298, 186);
     this.comboBoxEdit1.Name = "comboBoxEdit1";
     this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEdit1.Properties.Items.AddRange(new object[] {
     "随机选取",
     "距离最大",
     "区间平均"});
     this.comboBoxEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEdit1.Size = new System.Drawing.Size(87, 22);
     this.comboBoxEdit1.TabIndex = 107;
     //
     // textEdit1
     //
     this.textEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit1.Location = new System.Drawing.Point(298, 131);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Properties.Mask.EditMask = "-?((\\d+.\\d+)|(\\d+))";
     this.textEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit1.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit1.Size = new System.Drawing.Size(87, 22);
     this.textEdit1.TabIndex = 101;
     //
     // textEdit2
     //
     this.textEdit2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit2.Location = new System.Drawing.Point(298, 158);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Properties.Mask.EditMask = "-?((\\d+.\\d+)|(\\d+))";
     this.textEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit2.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit2.Size = new System.Drawing.Size(87, 22);
     this.textEdit2.TabIndex = 102;
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton3.Location = new System.Drawing.Point(194, 247);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(75, 23);
     this.simpleButton3.TabIndex = 103;
     this.simpleButton3.Text = "确定";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // checkEdit2
     //
     this.checkEdit2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkEdit2.Location = new System.Drawing.Point(173, 159);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "全局已知标准差:";
     this.checkEdit2.Size = new System.Drawing.Size(129, 21);
     this.checkEdit2.TabIndex = 106;
     //
     // simpleButton4
     //
     this.simpleButton4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton4.Location = new System.Drawing.Point(310, 247);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(75, 23);
     this.simpleButton4.TabIndex = 104;
     this.simpleButton4.Text = "取消";
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // checkEdit1
     //
     this.checkEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkEdit1.Location = new System.Drawing.Point(173, 132);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "全局已知均值:";
     this.checkEdit1.Size = new System.Drawing.Size(114, 21);
     this.checkEdit1.TabIndex = 105;
     //
     // checkedListBoxControl1
     //
     this.checkedListBoxControl1.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.checkedListBoxControl1.Location = new System.Drawing.Point(9, 31);
     this.checkedListBoxControl1.Name = "checkedListBoxControl1";
     this.checkedListBoxControl1.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.checkedListBoxControl1.Size = new System.Drawing.Size(157, 239);
     this.checkedListBoxControl1.TabIndex = 98;
     //
     // textEdit6
     //
     this.textEdit6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit6.EditValue = "15";
     this.textEdit6.Location = new System.Drawing.Point(256, 103);
     this.textEdit6.Name = "textEdit6";
     this.textEdit6.Properties.Mask.EditMask = "[1-9]|([1-9][0-9]+)";
     this.textEdit6.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit6.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit6.Size = new System.Drawing.Size(129, 22);
     this.textEdit6.TabIndex = 100;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.labelControl1.Location = new System.Drawing.Point(9, 7);
     this.labelControl1.Margin = new System.Windows.Forms.Padding(0);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(157, 24);
     this.labelControl1.TabIndex = 91;
     this.labelControl1.Text = "选择列";
     //
     // labelControl5
     //
     this.labelControl5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl5.Location = new System.Drawing.Point(175, 105);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(75, 17);
     this.labelControl5.TabIndex = 99;
     this.labelControl5.Text = "最大线程数:";
     //
     // textEdit3
     //
     this.textEdit3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit3.EditValue = "2";
     this.textEdit3.Location = new System.Drawing.Point(256, 17);
     this.textEdit3.Name = "textEdit3";
     this.textEdit3.Properties.Mask.EditMask = "[2-9]|([1-9][0-9]+)";
     this.textEdit3.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit3.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit3.Size = new System.Drawing.Size(129, 22);
     this.textEdit3.TabIndex = 92;
     //
     // textEdit4
     //
     this.textEdit4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit4.Location = new System.Drawing.Point(256, 43);
     this.textEdit4.Name = "textEdit4";
     this.textEdit4.Properties.Mask.EditMask = "[2-9]|([1-9][0-9]+)";
     this.textEdit4.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit4.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit4.Size = new System.Drawing.Size(129, 22);
     this.textEdit4.TabIndex = 93;
     //
     // labelControl6
     //
     this.labelControl6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl6.Location = new System.Drawing.Point(175, 18);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(75, 17);
     this.labelControl6.TabIndex = 94;
     this.labelControl6.Text = "初始聚类数:";
     //
     // labelControl7
     //
     this.labelControl7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl7.Location = new System.Drawing.Point(175, 46);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(75, 17);
     this.labelControl7.TabIndex = 95;
     this.labelControl7.Text = "终止聚类数:";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl8.Location = new System.Drawing.Point(175, 76);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(75, 17);
     this.labelControl8.TabIndex = 96;
     this.labelControl8.Text = "最大迭代数:";
     //
     // textEdit5
     //
     this.textEdit5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit5.EditValue = "20";
     this.textEdit5.Location = new System.Drawing.Point(256, 73);
     this.textEdit5.Name = "textEdit5";
     this.textEdit5.Properties.Mask.EditMask = "[2-9]|([1-9][0-9]+)";
     this.textEdit5.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit5.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit5.Size = new System.Drawing.Size(129, 22);
     this.textEdit5.TabIndex = 97;
     //
     // KMeansConfigControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.labelControl3);
     this.Controls.Add(this.comboBoxEdit1);
     this.Controls.Add(this.textEdit1);
     this.Controls.Add(this.textEdit2);
     this.Controls.Add(this.simpleButton3);
     this.Controls.Add(this.checkEdit2);
     this.Controls.Add(this.simpleButton4);
     this.Controls.Add(this.checkEdit1);
     this.Controls.Add(this.checkedListBoxControl1);
     this.Controls.Add(this.textEdit6);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.labelControl5);
     this.Controls.Add(this.textEdit3);
     this.Controls.Add(this.textEdit4);
     this.Controls.Add(this.labelControl6);
     this.Controls.Add(this.labelControl7);
     this.Controls.Add(this.labelControl8);
     this.Controls.Add(this.textEdit5);
     this.MinimumSize = new System.Drawing.Size(396, 279);
     this.Name = "KMeansConfigControl";
     this.Size = new System.Drawing.Size(396, 279);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #43
0
 /// <summary> 
 /// �����֧������ķ��� - ��Ҫʹ�ô���༭�� 
 /// �޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.comboBoxEdit2 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.comboBoxEdit3 = new DevExpress.XtraEditors.ComboBoxEdit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit3.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(32, 26);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(48, 20);
     this.label1.TabIndex = 6;
     this.label1.Text = "���";
     //
     // comboBoxEdit1
     //
     this.comboBoxEdit1.EditValue = "";
     this.comboBoxEdit1.Location = new System.Drawing.Point(88, 21);
     this.comboBoxEdit1.Name = "comboBoxEdit1";
     this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEdit1.Size = new System.Drawing.Size(136, 23);
     this.comboBoxEdit1.TabIndex = 4;
     this.comboBoxEdit1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(32, 60);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(48, 16);
     this.label2.TabIndex = 6;
     this.label2.Text = "Ƥ��";
     //
     // comboBoxEdit2
     //
     this.comboBoxEdit2.EditValue = "";
     this.comboBoxEdit2.Location = new System.Drawing.Point(88, 56);
     this.comboBoxEdit2.Name = "comboBoxEdit2";
     this.comboBoxEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEdit2.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEdit2.Size = new System.Drawing.Size(136, 23);
     this.comboBoxEdit2.TabIndex = 4;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(32, 96);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(48, 13);
     this.label3.TabIndex = 9;
     this.label3.Text = "XP���";
     //
     // comboBoxEdit3
     //
     this.comboBoxEdit3.EditValue = "";
     this.comboBoxEdit3.Location = new System.Drawing.Point(88, 91);
     this.comboBoxEdit3.Name = "comboBoxEdit3";
     this.comboBoxEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEdit3.Properties.Items.AddRange(new object[] {
     "True",
     "False"});
     this.comboBoxEdit3.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEdit3.Size = new System.Drawing.Size(136, 23);
     this.comboBoxEdit3.TabIndex = 8;
     this.comboBoxEdit3.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit3_SelectedIndexChanged);
     //
     // userOption2
     //
     this.Controls.Add(this.label3);
     this.Controls.Add(this.comboBoxEdit3);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.comboBoxEdit1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.comboBoxEdit2);
     this.Name = "userOption2";
     this.Size = new System.Drawing.Size(272, 232);
     this.Load += new System.EventHandler(this.userOption2_Load);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit3.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label79 = new System.Windows.Forms.Label();
     this.label80 = new System.Windows.Forms.Label();
     this.Month = new DevExpress.XtraEditors.ComboBoxEdit();
     this.Year = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gridFitnessProduct = new DevExpress.XtraGrid.GridControl();
     this.gvFitnessProduct = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvFitnessProductRank = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Employee = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvFitnessProductSalesPercentage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gvFitnessProductTotalSales = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.label4 = new System.Windows.Forms.Label();
     this.RGFitnessProduct = new DevExpress.XtraEditors.RadioGroup();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFitnessProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFitnessProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGFitnessProduct.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label79
     //
     this.label79.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label79.Location = new System.Drawing.Point(144, 8);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(48, 23);
     this.label79.TabIndex = 27;
     this.label79.Text = "Year";
     //
     // label80
     //
     this.label80.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label80.Location = new System.Drawing.Point(8, 8);
     this.label80.Name = "label80";
     this.label80.Size = new System.Drawing.Size(56, 23);
     this.label80.TabIndex = 26;
     this.label80.Text = "Month";
     //
     // Month
     //
     this.Month.EditValue = "1";
     this.Month.Location = new System.Drawing.Point(64, 8);
     this.Month.Name = "Month";
     //
     // Month.Properties
     //
     this.Month.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Month.Properties.Items.AddRange(new object[] {
                                                           "1",
                                                           "2",
                                                           "3",
                                                           "4",
                                                           "5",
                                                           "6",
                                                           "7",
                                                           "8",
                                                           "9",
                                                           "10",
                                                           "11",
                                                           "12"});
     this.Month.Size = new System.Drawing.Size(72, 20);
     this.Month.TabIndex = 25;
     this.Month.SelectedIndexChanged += new System.EventHandler(this.Month_SelectedIndexChanged);
     //
     // Year
     //
     this.Year.EditValue = "";
     this.Year.Location = new System.Drawing.Point(192, 8);
     this.Year.Name = "Year";
     //
     // Year.Properties
     //
     this.Year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Year.Size = new System.Drawing.Size(96, 20);
     this.Year.TabIndex = 24;
     this.Year.SelectedIndexChanged += new System.EventHandler(this.Year_SelectedIndexChanged);
     //
     // gridFitnessProduct
     //
     this.gridFitnessProduct.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridFitnessProduct.EmbeddedNavigator
     //
     this.gridFitnessProduct.EmbeddedNavigator.Name = "";
     this.gridFitnessProduct.Location = new System.Drawing.Point(0, 96);
     this.gridFitnessProduct.MainView = this.gvFitnessProduct;
     this.gridFitnessProduct.Name = "gridFitnessProduct";
     this.gridFitnessProduct.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                 this.lk_Employee});
     this.gridFitnessProduct.Size = new System.Drawing.Size(960, 384);
     this.gridFitnessProduct.TabIndex = 28;
     this.gridFitnessProduct.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                       this.gvFitnessProduct,
                                                                                                       this.gridView4});
     //
     // gvFitnessProduct
     //
     this.gvFitnessProduct.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                             this.gvFitnessProductRank,
                                                                                             this.gridColumn3,
                                                                                             this.gridColumn4,
                                                                                             this.gvFitnessProductSalesPercentage,
                                                                                             this.gvFitnessProductTotalSales});
     this.gvFitnessProduct.GridControl = this.gridFitnessProduct;
     this.gvFitnessProduct.Name = "gvFitnessProduct";
     this.gvFitnessProduct.OptionsBehavior.Editable = false;
     this.gvFitnessProduct.OptionsCustomization.AllowFilter = false;
     this.gvFitnessProduct.OptionsCustomization.AllowGroup = false;
     this.gvFitnessProduct.OptionsCustomization.AllowSort = false;
     this.gvFitnessProduct.OptionsView.ShowGroupPanel = false;
     this.gvFitnessProduct.FocusedColumnChanged += new DevExpress.XtraGrid.Views.Base.FocusedColumnChangedEventHandler(this.gvFitnessProduct_FocusedColumnChanged);
     this.gvFitnessProduct.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gvFitnessProduct_CustomUnboundColumnData);
     //
     // gvFitnessProductRank
     //
     this.gvFitnessProductRank.Caption = "Rank";
     this.gvFitnessProductRank.FieldName = "gridColumn1";
     this.gvFitnessProductRank.Name = "gvFitnessProductRank";
     this.gvFitnessProductRank.SummaryItem.DisplayFormat = "{0}";
     this.gvFitnessProductRank.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.gvFitnessProductRank.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.gvFitnessProductRank.Visible = true;
     this.gvFitnessProductRank.VisibleIndex = 0;
     this.gvFitnessProductRank.Width = 33;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Employee Name";
     this.gridColumn3.ColumnEdit = this.lk_Employee;
     this.gridColumn3.FieldName = "nSalesPersonID";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width = 85;
     //
     // lk_Employee
     //
     this.lk_Employee.AutoHeight = false;
     this.lk_Employee.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                              new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Employee.Name = "lk_Employee";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Branch Code";
     this.gridColumn4.FieldName = "strBranchCode";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 4;
     this.gridColumn4.Width = 70;
     //
     // gvFitnessProductSalesPercentage
     //
     this.gvFitnessProductSalesPercentage.Caption = "Sales Percentage";
     this.gvFitnessProductSalesPercentage.FieldName = "SalesPercentage";
     this.gvFitnessProductSalesPercentage.Name = "gvFitnessProductSalesPercentage";
     this.gvFitnessProductSalesPercentage.Visible = true;
     this.gvFitnessProductSalesPercentage.VisibleIndex = 2;
     this.gvFitnessProductSalesPercentage.Width = 92;
     //
     // gvFitnessProductTotalSales
     //
     this.gvFitnessProductTotalSales.Caption = "Total Sales";
     this.gvFitnessProductTotalSales.FieldName = "TotalSales";
     this.gvFitnessProductTotalSales.Name = "gvFitnessProductTotalSales";
     this.gvFitnessProductTotalSales.Visible = true;
     this.gvFitnessProductTotalSales.VisibleIndex = 3;
     this.gvFitnessProductTotalSales.Width = 61;
     //
     // gridView4
     //
     this.gridView4.GridControl = this.gridFitnessProduct;
     this.gridView4.Name = "gridView4";
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(0, 40);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(944, 24);
     this.label4.TabIndex = 30;
     this.label4.Text = "Ranking of Fitness Product Sales";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // RGFitnessProduct
     //
     this.RGFitnessProduct.EditValue = 0;
     this.RGFitnessProduct.Location = new System.Drawing.Point(0, 64);
     this.RGFitnessProduct.Name = "RGFitnessProduct";
     //
     // RGFitnessProduct.Properties
     //
     this.RGFitnessProduct.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.RGFitnessProduct.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.RGFitnessProduct.Properties.Appearance.Options.UseBackColor = true;
     this.RGFitnessProduct.Properties.Appearance.Options.UseFont = true;
     this.RGFitnessProduct.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.RGFitnessProduct.Properties.Columns = 2;
     this.RGFitnessProduct.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
                                                                                                              new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Fitness Product Sales By %"),
                                                                                                              new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Actual Fitness Product Sales")});
     this.RGFitnessProduct.Size = new System.Drawing.Size(496, 32);
     this.RGFitnessProduct.TabIndex = 29;
     this.RGFitnessProduct.Click += new System.EventHandler(this.RGFitnessProduct_Click);
     this.RGFitnessProduct.EditValueChanged += new System.EventHandler(this.RGFitnessProduct_EditValueChanged);
     //
     // frmSRFitnessProduct
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(960, 480);
     this.Controls.Add(this.gridFitnessProduct);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.RGFitnessProduct);
     this.Controls.Add(this.label79);
     this.Controls.Add(this.label80);
     this.Controls.Add(this.Month);
     this.Controls.Add(this.Year);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmSRFitnessProduct";
     this.Text = "frmSRFitnessProduct";
     this.Load += new System.EventHandler(this.frmSRFitnessProduct_Load);
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFitnessProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFitnessProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Employee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RGFitnessProduct.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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(frmIns_CustomerGroups));
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.cboStatus = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.cboDisable = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtName = new DevExpress.XtraEditors.TextEdit();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.cboType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.lueCompany = new DevExpress.XtraEditors.LookUpEdit();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.btnAddNew = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.cboStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboDisable.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).BeginInit();
     this.tableLayoutPanel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueCompany.Properties)).BeginInit();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this.SuspendLayout();
     //
     // labelControl16
     //
     this.labelControl16.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl16.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl16.Location = new System.Drawing.Point(11, 163);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl16.Size = new System.Drawing.Size(81, 17);
     this.labelControl16.TabIndex = 8;
     this.labelControl16.Text = "Trạng thái";
     //
     // cboStatus
     //
     this.cboStatus.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.cboStatus.EditValue = "1";
     this.cboStatus.Location = new System.Drawing.Point(104, 161);
     this.cboStatus.Name = "cboStatus";
     this.cboStatus.Properties.Appearance.Options.UseTextOptions = true;
     this.cboStatus.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.cboStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboStatus.Properties.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4"});
     this.cboStatus.Size = new System.Drawing.Size(193, 20);
     this.cboStatus.TabIndex = 9;
     //
     // labelControl8
     //
     this.labelControl8.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl8.Location = new System.Drawing.Point(11, 213);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl8.Size = new System.Drawing.Size(42, 16);
     this.labelControl8.TabIndex = 10;
     this.labelControl8.Text = "Khóa";
     //
     // cboDisable
     //
     this.cboDisable.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.cboDisable.EditValue = "False";
     this.cboDisable.Location = new System.Drawing.Point(104, 211);
     this.cboDisable.Name = "cboDisable";
     this.cboDisable.Properties.Appearance.Options.UseTextOptions = true;
     this.cboDisable.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.cboDisable.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboDisable.Properties.Items.AddRange(new object[] {
     "True",
     "False"});
     this.cboDisable.Size = new System.Drawing.Size(193, 20);
     this.cboDisable.TabIndex = 11;
     //
     // txtName
     //
     this.txtName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtName.Location = new System.Drawing.Point(104, 14);
     this.txtName.Name = "txtName";
     this.txtName.Properties.MaxLength = 50;
     this.txtName.Properties.NullValuePrompt = "Nhập tối đa 50 ký tự.";
     this.txtName.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtName.Size = new System.Drawing.Size(193, 20);
     this.txtName.TabIndex = 3;
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 3;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 2.884615F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 31.33333F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 66F));
     this.tableLayoutPanel4.Controls.Add(this.labelControl8, 1, 4);
     this.tableLayoutPanel4.Controls.Add(this.cboDisable, 2, 4);
     this.tableLayoutPanel4.Controls.Add(this.labelControl16, 1, 3);
     this.tableLayoutPanel4.Controls.Add(this.cboStatus, 2, 3);
     this.tableLayoutPanel4.Controls.Add(this.labelControl1, 1, 2);
     this.tableLayoutPanel4.Controls.Add(this.cboType, 2, 2);
     this.tableLayoutPanel4.Controls.Add(this.labelControl2, 1, 1);
     this.tableLayoutPanel4.Controls.Add(this.labelControl13, 1, 0);
     this.tableLayoutPanel4.Controls.Add(this.txtName, 2, 0);
     this.tableLayoutPanel4.Controls.Add(this.lueCompany, 2, 1);
     this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 24);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 5;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
     this.tableLayoutPanel4.Size = new System.Drawing.Size(300, 246);
     this.tableLayoutPanel4.TabIndex = 1;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.Location = new System.Drawing.Point(11, 114);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl1.Size = new System.Drawing.Size(38, 17);
     this.labelControl1.TabIndex = 6;
     this.labelControl1.Text = "Loại";
     //
     // cboType
     //
     this.cboType.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.cboType.EditValue = "1";
     this.cboType.Location = new System.Drawing.Point(104, 112);
     this.cboType.Name = "cboType";
     this.cboType.Properties.Appearance.Options.UseTextOptions = true;
     this.cboType.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.cboType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboType.Properties.Items.AddRange(new object[] {
     "1",
     "2",
     "3"});
     this.cboType.Size = new System.Drawing.Size(193, 20);
     this.cboType.TabIndex = 7;
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl2.Location = new System.Drawing.Point(11, 65);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl2.Size = new System.Drawing.Size(60, 16);
     this.labelControl2.TabIndex = 4;
     this.labelControl2.Text = "Công ty";
     //
     // labelControl13
     //
     this.labelControl13.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl13.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl13.Location = new System.Drawing.Point(11, 16);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelControl13.Size = new System.Drawing.Size(72, 16);
     this.labelControl13.TabIndex = 2;
     this.labelControl13.Text = "Tên nhóm";
     //
     // lueCompany
     //
     this.lueCompany.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lueCompany.Location = new System.Drawing.Point(104, 63);
     this.lueCompany.Name = "lueCompany";
     this.lueCompany.Properties.Appearance.Options.UseTextOptions = true;
     this.lueCompany.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lueCompany.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueCompany.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", 18, "Name")});
     this.lueCompany.Properties.NullText = "";
     this.lueCompany.Size = new System.Drawing.Size(193, 20);
     this.lueCompany.TabIndex = 5;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel4, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 2);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 7F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 81F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(306, 312);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.tableLayoutPanel3.ColumnCount = 2;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 35.13514F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 64.86487F));
     this.tableLayoutPanel3.Controls.Add(this.btnAddNew, 1, 0);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 273);
     this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(0);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 1;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(306, 39);
     this.tableLayoutPanel3.TabIndex = 12;
     //
     // btnAddNew
     //
     this.btnAddNew.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnAddNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.btnAddNew.Appearance.Options.UseFont = true;
     this.btnAddNew.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.btnAddNew.Image = ((System.Drawing.Image)(resources.GetObject("btnAddNew.Image")));
     this.btnAddNew.Location = new System.Drawing.Point(113, 5);
     this.btnAddNew.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
     this.btnAddNew.Name = "btnAddNew";
     this.btnAddNew.Size = new System.Drawing.Size(103, 28);
     this.btnAddNew.TabIndex = 13;
     this.btnAddNew.Text = "Cập nhật";
     this.btnAddNew.Click += new System.EventHandler(this.btnAddNew_Click);
     //
     // frmIns_CustomerGroups
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(306, 312);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Location = new System.Drawing.Point(600, 150);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmIns_CustomerGroups";
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Thêm mới nhóm khách hàng";
     this.Load += new System.EventHandler(this.frmIns_CustomerGroups_Load);
     ((System.ComponentModel.ISupportInitialize)(this.cboStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboDisable.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).EndInit();
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tableLayoutPanel4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueCompany.Properties)).EndInit();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.OK = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.cancel = new DevExpress.XtraBars.BarButtonItem();
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.NomenclatureInfoBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.panelControl = new DevExpress.XtraEditors.PanelControl();
     this.IncomeDate = new DevExpress.XtraEditors.LabelControl();
     this.IncomeNumber = new DevExpress.XtraEditors.LabelControl();
     this.PickingPlan = new Aramis.AramisSearchLookUpEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.State = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.label = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.NomenclatureInfo = new DevExpress.XtraGrid.GridControl();
     this.nomenclatureView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
     this.Info = new DevExpress.XtraEditors.LabelControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.tablePanelControl = new DevExpress.XtraEditors.PanelControl();
     this.Date = new DevExpress.XtraEditors.DateEdit();
     this.dateLabel = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
     this.panelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PickingPlan.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tablePanelControl)).BeginInit();
     this.tablePanelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.OK);
     this.ribbonStatusBar.ItemLinks.Add(this.barButtonItem2);
     this.ribbonStatusBar.ItemLinks.Add(this.cancel);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 572);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(742, 31);
     //
     // OK
     //
     this.OK.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.OK.Caption = "OK";
     this.OK.Id = 0;
     this.OK.ImageIndex = 0;
     this.OK.Name = "OK";
     this.OK.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OK_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem2.Caption = "��������";
     this.barButtonItem2.Id = 1;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Write_ItemClick);
     //
     // cancel
     //
     this.cancel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.cancel.Caption = "³����";
     this.cancel.Id = 2;
     this.cancel.ImageIndex = 1;
     this.cancel.Name = "cancel";
     this.cancel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.cancel_ItemClick);
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.ExpandCollapseItem.Name = "";
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbon.ExpandCollapseItem,
     this.OK,
     this.barButtonItem2,
     this.cancel});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 18;
     this.ribbon.Name = "ribbon";
     this.ribbon.Size = new System.Drawing.Size(742, 49);
     this.ribbon.StatusBar = this.NomenclatureInfoBar;
     this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
     //
     // NomenclatureInfoBar
     //
     this.NomenclatureInfoBar.Dock = System.Windows.Forms.DockStyle.Top;
     this.NomenclatureInfoBar.Location = new System.Drawing.Point(2, 2);
     this.NomenclatureInfoBar.Name = "NomenclatureInfoBar";
     this.NomenclatureInfoBar.Ribbon = this.ribbon;
     this.NomenclatureInfoBar.Size = new System.Drawing.Size(738, 27);
     //
     // panelControl
     //
     this.panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl.Controls.Add(this.dateLabel);
     this.panelControl.Controls.Add(this.Date);
     this.panelControl.Controls.Add(this.IncomeDate);
     this.panelControl.Controls.Add(this.IncomeNumber);
     this.panelControl.Controls.Add(this.PickingPlan);
     this.panelControl.Controls.Add(this.labelControl8);
     this.panelControl.Controls.Add(this.State);
     this.panelControl.Controls.Add(this.labelControl3);
     this.panelControl.Controls.Add(this.label);
     this.panelControl.Controls.Add(this.labelControl1);
     this.panelControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl.Location = new System.Drawing.Point(0, 49);
     this.panelControl.Name = "panelControl";
     this.panelControl.Size = new System.Drawing.Size(742, 82);
     this.panelControl.TabIndex = 2;
     //
     // IncomeDate
     //
     this.IncomeDate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.IncomeDate.Location = new System.Drawing.Point(366, 34);
     this.IncomeDate.Name = "IncomeDate";
     this.IncomeDate.Size = new System.Drawing.Size(21, 13);
     this.IncomeDate.TabIndex = 20;
     this.IncomeDate.Text = "{0}";
     //
     // IncomeNumber
     //
     this.IncomeNumber.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.IncomeNumber.Location = new System.Drawing.Point(99, 34);
     this.IncomeNumber.Name = "IncomeNumber";
     this.IncomeNumber.Size = new System.Drawing.Size(21, 13);
     this.IncomeNumber.TabIndex = 19;
     this.IncomeNumber.Text = "{0}";
     //
     // PickingPlan
     //
     this.PickingPlan.BaseFilter = null;
     this.PickingPlan.Location = new System.Drawing.Point(366, 8);
     this.PickingPlan.MenuManager = this.ribbon;
     this.PickingPlan.Name = "PickingPlan";
     this.PickingPlan.Properties.BaseFilter = null;
     this.PickingPlan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.PickingPlan.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.PickingPlan.Properties.NullText = "";
     this.PickingPlan.Size = new System.Drawing.Size(364, 20);
     this.PickingPlan.TabIndex = 1;
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(271, 11);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(68, 13);
     this.labelControl8.TabIndex = 17;
     this.labelControl8.Text = "���� ������";
     //
     // State
     //
     this.State.Location = new System.Drawing.Point(99, 8);
     this.State.MenuManager = this.ribbon;
     this.State.Name = "State";
     this.State.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.State.Size = new System.Drawing.Size(156, 20);
     this.State.TabIndex = 0;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(10, 11);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(82, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "���� ���������";
     //
     // label
     //
     this.label.Location = new System.Drawing.Point(271, 34);
     this.label.Name = "label";
     this.label.Size = new System.Drawing.Size(83, 13);
     this.label.TabIndex = 2;
     this.label.Text = "���� ���������";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(10, 34);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(68, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "� ��������";
     //
     // NomenclatureInfo
     //
     this.NomenclatureInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.NomenclatureInfo.Location = new System.Drawing.Point(2, 29);
     this.NomenclatureInfo.MainView = this.nomenclatureView;
     this.NomenclatureInfo.MenuManager = this.ribbon;
     this.NomenclatureInfo.Name = "NomenclatureInfo";
     this.NomenclatureInfo.Size = new System.Drawing.Size(738, 390);
     this.NomenclatureInfo.TabIndex = 1;
     this.NomenclatureInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.nomenclatureView});
     //
     // nomenclatureView
     //
     this.nomenclatureView.GridControl = this.NomenclatureInfo;
     this.nomenclatureView.Name = "nomenclatureView";
     this.nomenclatureView.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.nomenclatureView_RowStyle);
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.pictureEdit1);
     this.panelControl1.Controls.Add(this.Info);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 552);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(742, 20);
     this.panelControl1.TabIndex = 0;
     //
     // pictureEdit1
     //
     this.pictureEdit1.Dock = System.Windows.Forms.DockStyle.Left;
     this.pictureEdit1.EditValue = global::FMCG.Properties.Resources._1317825614_information_balloon;
     this.pictureEdit1.Location = new System.Drawing.Point(0, 0);
     this.pictureEdit1.MenuManager = this.ribbon;
     this.pictureEdit1.Name = "pictureEdit1";
     this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
     this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pictureEdit1.Size = new System.Drawing.Size(20, 20);
     this.pictureEdit1.TabIndex = 3;
     this.pictureEdit1.ToolTip = "��� ������� ��������� �������� �� ���� ���������� �����������";
     this.pictureEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.pictureEdit1.ToolTipTitle = "������:";
     //
     // Info
     //
     this.Info.Appearance.ForeColor = System.Drawing.Color.Gray;
     this.Info.Location = new System.Drawing.Point(24, 3);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(12, 13);
     this.Info.TabIndex = 1;
     this.Info.Text = "...";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem1.Caption = "OK";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.ImageIndex = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem3.Caption = "��������";
     this.barButtonItem3.Id = 1;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem4.Caption = "³����";
     this.barButtonItem4.Id = 2;
     this.barButtonItem4.ImageIndex = 1;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // tablePanelControl
     //
     this.tablePanelControl.Controls.Add(this.NomenclatureInfo);
     this.tablePanelControl.Controls.Add(this.NomenclatureInfoBar);
     this.tablePanelControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tablePanelControl.Location = new System.Drawing.Point(0, 131);
     this.tablePanelControl.Name = "tablePanelControl";
     this.tablePanelControl.Size = new System.Drawing.Size(742, 421);
     this.tablePanelControl.TabIndex = 24;
     //
     // Date
     //
     this.Date.EditValue = null;
     this.Date.Location = new System.Drawing.Point(99, 53);
     this.Date.MenuManager = this.ribbon;
     this.Date.Name = "Date";
     this.Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Date.Size = new System.Drawing.Size(156, 20);
     this.Date.TabIndex = 21;
     //
     // dateLabel
     //
     this.dateLabel.Location = new System.Drawing.Point(10, 57);
     this.dateLabel.Name = "dateLabel";
     this.dateLabel.Size = new System.Drawing.Size(26, 13);
     this.dateLabel.TabIndex = 22;
     this.dateLabel.Text = "����";
     //
     // MovingItemForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(742, 603);
     this.Controls.Add(this.tablePanelControl);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.panelControl);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.KeyPreview = true;
     this.Name = "MovingItemForm";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "Item form";
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Itemform_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
     this.panelControl.ResumeLayout(false);
     this.panelControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PickingPlan.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tablePanelControl)).EndInit();
     this.tablePanelControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject6 = new DevExpress.Utils.SerializableAppearanceObject();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSetPlaneParam));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject7 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject8 = new DevExpress.Utils.SerializableAppearanceObject();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.spinEdit4 = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.spinEdit3 = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.comboBoxEdit3 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.comboBoxEdit2 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.buttonEdit1 = new DevExpress.XtraEditors.ButtonEdit();
     this.spinEdit2 = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.checkButton1 = new DevExpress.XtraEditors.CheckButton();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.spinEdit1 = new DevExpress.XtraEditors.SpinEdit();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.groupControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.groupControl1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.groupControl1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.groupControl1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.groupControl1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.groupControl1.AppearanceCaption.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.groupControl1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.groupControl1.AppearanceCaption.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.groupControl1.AppearanceCaption.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.groupControl1.AppearanceCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.groupControl1.AppearanceCaption.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.groupControl1.CaptionImageLocation = DevExpress.Utils.GroupElementLocation.Default;
     this.groupControl1.CaptionLocation = DevExpress.Utils.Locations.Default;
     this.groupControl1.ContentImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.groupControl1.Controls.Add(this.spinEdit4);
     this.groupControl1.Controls.Add(this.labelControl11);
     this.groupControl1.Controls.Add(this.labelControl10);
     this.groupControl1.Controls.Add(this.labelControl9);
     this.groupControl1.Controls.Add(this.spinEdit3);
     this.groupControl1.Controls.Add(this.labelControl8);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.comboBoxEdit3);
     this.groupControl1.Controls.Add(this.comboBoxEdit2);
     this.groupControl1.Controls.Add(this.buttonEdit1);
     this.groupControl1.Controls.Add(this.spinEdit2);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Controls.Add(this.simpleButton5);
     this.groupControl1.Controls.Add(this.labelControl5);
     this.groupControl1.Controls.Add(this.simpleButton4);
     this.groupControl1.Controls.Add(this.simpleButton3);
     this.groupControl1.Controls.Add(this.checkButton1);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.textBox1);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.comboBoxEdit1);
     this.groupControl1.Controls.Add(this.spinEdit1);
     this.groupControl1.Controls.Add(this.textEdit2);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Controls.Add(this.simpleButton2);
     this.groupControl1.Controls.Add(this.simpleButton1);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(289, 266);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "飞行参数";
     //
     // spinEdit4
     //
     this.spinEdit4.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit4.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinEdit4.Location = new System.Drawing.Point(57, 147);
     this.spinEdit4.Name = "spinEdit4";
     this.spinEdit4.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit4.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit4.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit4.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit4.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit4.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit4.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit4.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject1.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject1.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject1.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject1.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject1.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.spinEdit4.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit4.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit4.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit4.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit4.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit4.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit4.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit4.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit4.Size = new System.Drawing.Size(49, 21);
     this.spinEdit4.TabIndex = 27;
     this.spinEdit4.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl11
     //
     this.labelControl11.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl11.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl11.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl11.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl11.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl11.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl11.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl11.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl11.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl11.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl11.Location = new System.Drawing.Point(140, 31);
     this.labelControl11.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(29, 14);
     this.labelControl11.TabIndex = 26;
     this.labelControl11.Text = "米/秒";
     this.labelControl11.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl10
     //
     this.labelControl10.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl10.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl10.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl10.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl10.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl10.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl10.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl10.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl10.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl10.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl10.Location = new System.Drawing.Point(140, 58);
     this.labelControl10.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(29, 14);
     this.labelControl10.TabIndex = 25;
     this.labelControl10.Text = "米/秒";
     this.labelControl10.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl9
     //
     this.labelControl9.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl9.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl9.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl9.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl9.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl9.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl9.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl9.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl9.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl9.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl9.Location = new System.Drawing.Point(4, 92);
     this.labelControl9.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(52, 14);
     this.labelControl9.TabIndex = 24;
     this.labelControl9.Text = "动态类型:";
     this.labelControl9.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // spinEdit3
     //
     this.spinEdit3.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit3.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.spinEdit3.Location = new System.Drawing.Point(57, 172);
     this.spinEdit3.Name = "spinEdit3";
     this.spinEdit3.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit3.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit3.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit3.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit3.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit3.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit3.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit3.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject2.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject2.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject2.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject2.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject2.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
     this.spinEdit3.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit3.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit3.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit3.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit3.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit3.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit3.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit3.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit3.Size = new System.Drawing.Size(49, 21);
     this.spinEdit3.TabIndex = 23;
     this.spinEdit3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.spinEdit3.EditValueChanged += new System.EventHandler(this.spinEdit3_EditValueChanged);
     //
     // labelControl8
     //
     this.labelControl8.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl8.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl8.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl8.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl8.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl8.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl8.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl8.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl8.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl8.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl8.Location = new System.Drawing.Point(1, 176);
     this.labelControl8.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(60, 14);
     this.labelControl8.TabIndex = 22;
     this.labelControl8.Text = "模型比例:";
     this.labelControl8.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl7
     //
     this.labelControl7.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl7.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl7.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl7.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl7.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl7.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl7.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl7.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl7.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl7.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl7.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl7.Location = new System.Drawing.Point(4, 123);
     this.labelControl7.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(52, 14);
     this.labelControl7.TabIndex = 21;
     this.labelControl7.Text = "表现类型:";
     this.labelControl7.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // comboBoxEdit3
     //
     this.comboBoxEdit3.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit3.Enabled = false;
     this.comboBoxEdit3.Location = new System.Drawing.Point(57, 120);
     this.comboBoxEdit3.Name = "comboBoxEdit3";
     this.comboBoxEdit3.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.comboBoxEdit3.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit3.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject3.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject3.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject3.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject3.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject3.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject3.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)});
     this.comboBoxEdit3.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.comboBoxEdit3.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.comboBoxEdit3.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.comboBoxEdit3.Properties.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Default;
     this.comboBoxEdit3.Properties.Items.AddRange(new object[] {
     "根据地表",
     "客机",
     "直升机"});
     this.comboBoxEdit3.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxEdit3.Properties.PopupResizeMode = DevExpress.XtraEditors.Controls.ResizeMode.Default;
     this.comboBoxEdit3.Properties.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.SingleClick;
     this.comboBoxEdit3.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.comboBoxEdit3.Size = new System.Drawing.Size(100, 21);
     this.comboBoxEdit3.TabIndex = 20;
     this.comboBoxEdit3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.comboBoxEdit3.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit3_SelectedIndexChanged);
     //
     // comboBoxEdit2
     //
     this.comboBoxEdit2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit2.Location = new System.Drawing.Point(58, 89);
     this.comboBoxEdit2.Name = "comboBoxEdit2";
     this.comboBoxEdit2.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.comboBoxEdit2.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit2.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject4.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject4.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject4.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject4.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject4.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject4.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)});
     this.comboBoxEdit2.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.comboBoxEdit2.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.comboBoxEdit2.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.comboBoxEdit2.Properties.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Default;
     this.comboBoxEdit2.Properties.Items.AddRange(new object[] {
     "无模型",
     "有模型"});
     this.comboBoxEdit2.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxEdit2.Properties.PopupResizeMode = DevExpress.XtraEditors.Controls.ResizeMode.Default;
     this.comboBoxEdit2.Properties.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.SingleClick;
     this.comboBoxEdit2.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.comboBoxEdit2.Size = new System.Drawing.Size(100, 21);
     this.comboBoxEdit2.TabIndex = 19;
     this.comboBoxEdit2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.comboBoxEdit2.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit2_SelectedIndexChanged);
     //
     // buttonEdit1
     //
     this.buttonEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.buttonEdit1.Location = new System.Drawing.Point(165, 120);
     this.buttonEdit1.Name = "buttonEdit1";
     this.buttonEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.buttonEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.buttonEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.buttonEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.buttonEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.buttonEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.buttonEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.buttonEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject5.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject5.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject5.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject5.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject5.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject5.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, true)});
     this.buttonEdit1.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.buttonEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.buttonEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.buttonEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.buttonEdit1.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.buttonEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
     this.buttonEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.buttonEdit1.Properties.Click += new System.EventHandler(this.buttonEdit1_Properties_Click);
     this.buttonEdit1.Size = new System.Drawing.Size(100, 21);
     this.buttonEdit1.TabIndex = 18;
     this.buttonEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.buttonEdit1.Visible = false;
     //
     // spinEdit2
     //
     this.spinEdit2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit2.EditValue = new decimal(new int[] {
     30,
     0,
     0,
     0});
     this.spinEdit2.Location = new System.Drawing.Point(58, 55);
     this.spinEdit2.Name = "spinEdit2";
     this.spinEdit2.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit2.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit2.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit2.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit2.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit2.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit2.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit2.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject6.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject6.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject6.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject6.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject6.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject6.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject6, "", null, null, true)});
     this.spinEdit2.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit2.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit2.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit2.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit2.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit2.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit2.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit2.Size = new System.Drawing.Size(76, 21);
     this.spinEdit2.TabIndex = 17;
     this.spinEdit2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl6
     //
     this.labelControl6.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl6.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl6.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl6.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl6.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl6.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl6.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl6.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl6.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl6.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl6.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl6.Location = new System.Drawing.Point(4, 58);
     this.labelControl6.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(36, 14);
     this.labelControl6.TabIndex = 16;
     this.labelControl6.Text = "速度:";
     this.labelControl6.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // simpleButton5
     //
     this.simpleButton5.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton5.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton5.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton5.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton5.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton5.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton5.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton5.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton5.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton5.Location = new System.Drawing.Point(160, 170);
     this.simpleButton5.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(24, 23);
     this.simpleButton5.TabIndex = 15;
     this.simpleButton5.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // labelControl5
     //
     this.labelControl5.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl5.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl5.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl5.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl5.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl5.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl5.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl5.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl5.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl5.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl5.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl5.Location = new System.Drawing.Point(112, 150);
     this.labelControl5.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(12, 14);
     this.labelControl5.TabIndex = 14;
     this.labelControl5.Text = "米";
     this.labelControl5.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // simpleButton4
     //
     this.simpleButton4.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton4.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton4.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton4.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton4.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton4.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton4.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton4.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton4.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton4.Location = new System.Drawing.Point(130, 170);
     this.simpleButton4.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(24, 23);
     this.simpleButton4.TabIndex = 13;
     this.simpleButton4.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // simpleButton3
     //
     this.simpleButton3.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton3.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton3.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton3.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton3.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton3.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton3.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton3.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton3.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton3.Location = new System.Drawing.Point(13, 233);
     this.simpleButton3.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(49, 23);
     this.simpleButton3.TabIndex = 12;
     this.simpleButton3.Text = "确定";
     this.simpleButton3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton3.Visible = false;
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // checkButton1
     //
     this.checkButton1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.checkButton1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.checkButton1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.checkButton1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.checkButton1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.checkButton1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.checkButton1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.checkButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.checkButton1.DialogResult = System.Windows.Forms.DialogResult.None;
     this.checkButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.checkButton1.Location = new System.Drawing.Point(201, 170);
     this.checkButton1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.checkButton1.Name = "checkButton1";
     this.checkButton1.Size = new System.Drawing.Size(75, 23);
     this.checkButton1.TabIndex = 11;
     this.checkButton1.Text = "地下模式";
     this.checkButton1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.checkButton1.CheckedChanged += new System.EventHandler(this.checkButton1_CheckedChanged);
     //
     // labelControl4
     //
     this.labelControl4.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl4.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl4.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl4.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl4.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl4.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl4.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl4.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl4.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl4.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl4.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl4.Location = new System.Drawing.Point(116, 213);
     this.labelControl4.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(12, 14);
     this.labelControl4.TabIndex = 10;
     this.labelControl4.Text = "度";
     this.labelControl4.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.labelControl4.Visible = false;
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(78, 209);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(32, 22);
     this.textBox1.TabIndex = 9;
     this.textBox1.Text = "-53";
     this.textBox1.Visible = false;
     //
     // labelControl3
     //
     this.labelControl3.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl3.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl3.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl3.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl3.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl3.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl3.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl3.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl3.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl3.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl3.Location = new System.Drawing.Point(12, 213);
     this.labelControl3.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(60, 14);
     this.labelControl3.TabIndex = 8;
     this.labelControl3.Text = "方向角度:";
     this.labelControl3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.labelControl3.Visible = false;
     //
     // comboBoxEdit1
     //
     this.comboBoxEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit1.EditValue = "米";
     this.comboBoxEdit1.Location = new System.Drawing.Point(231, 28);
     this.comboBoxEdit1.Name = "comboBoxEdit1";
     this.comboBoxEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.comboBoxEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject7.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject7.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject7.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject7.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject7.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject7.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject7, "", null, null, true)});
     this.comboBoxEdit1.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.comboBoxEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.comboBoxEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.comboBoxEdit1.Properties.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Default;
     this.comboBoxEdit1.Properties.Items.AddRange(new object[] {
     "米",
     "英尺",
     "千米"});
     this.comboBoxEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxEdit1.Properties.PopupResizeMode = DevExpress.XtraEditors.Controls.ResizeMode.Default;
     this.comboBoxEdit1.Properties.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.SingleClick;
     this.comboBoxEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.comboBoxEdit1.Size = new System.Drawing.Size(35, 21);
     this.comboBoxEdit1.TabIndex = 7;
     this.comboBoxEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.comboBoxEdit1.Visible = false;
     //
     // spinEdit1
     //
     this.spinEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit1.EditValue = new decimal(new int[] {
     50,
     0,
     0,
     0});
     this.spinEdit1.Location = new System.Drawing.Point(58, 28);
     this.spinEdit1.Name = "spinEdit1";
     this.spinEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject8.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject8.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject8.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject8.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject8.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject8.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject8, "", null, null, true)});
     this.spinEdit1.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit1.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit1.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit1.Size = new System.Drawing.Size(76, 21);
     this.spinEdit1.TabIndex = 6;
     this.spinEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.spinEdit1.EditValueChanged += new System.EventHandler(this.spinEdit1_EditValueChanged);
     //
     // textEdit2
     //
     this.textEdit2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.textEdit2.EditValue = "80";
     this.textEdit2.Location = new System.Drawing.Point(130, 147);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.textEdit2.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.textEdit2.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.textEdit2.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.textEdit2.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.textEdit2.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.textEdit2.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.textEdit2.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.textEdit2.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.textEdit2.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.textEdit2.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.textEdit2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.textEdit2.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.textEdit2.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.textEdit2.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.textEdit2.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.textEdit2.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.textEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
     this.textEdit2.Size = new System.Drawing.Size(40, 21);
     this.textEdit2.TabIndex = 5;
     this.textEdit2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.textEdit2.Visible = false;
     //
     // labelControl2
     //
     this.labelControl2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl2.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl2.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl2.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl2.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl2.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl2.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl2.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl2.Location = new System.Drawing.Point(4, 150);
     this.labelControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(36, 14);
     this.labelControl2.TabIndex = 3;
     this.labelControl2.Text = "高程:";
     this.labelControl2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl1
     //
     this.labelControl1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl1.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl1.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl1.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl1.Location = new System.Drawing.Point(4, 31);
     this.labelControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(60, 14);
     this.labelControl1.TabIndex = 2;
     this.labelControl1.Text = "转弯速度:";
     this.labelControl1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // simpleButton2
     //
     this.simpleButton2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton2.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton2.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton2.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton2.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton2.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton2.Location = new System.Drawing.Point(217, 228);
     this.simpleButton2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(49, 23);
     this.simpleButton2.TabIndex = 1;
     this.simpleButton2.Text = "关闭";
     this.simpleButton2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton1.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton1.Location = new System.Drawing.Point(162, 228);
     this.simpleButton1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(49, 23);
     this.simpleButton1.TabIndex = 0;
     this.simpleButton1.Text = "应用";
     this.simpleButton1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     //
     // FrmSetPlaneParam
     //
     this.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(289, 266);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.Name = "FrmSetPlaneParam";
     this.Opacity = 0.8D;
     this.Text = "飞行参数设定";
     this.Load += new System.EventHandler(this.FrmSetPlaneParam_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.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.GeneralSettingsPage = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.listBoxControl1 = new DevExpress.XtraEditors.ListBoxControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.chooseLanguageBox = new DevExpress.XtraEditors.ComboBoxEdit();
     this.TableSettingsPage = new DevExpress.XtraTab.XtraTabPage();
     this.ExaminationSettingsPage = new DevExpress.XtraTab.XtraTabPage();
     this.AdminSettingsPage = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.manageDepartmentsBtn = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.adjustRolesBtn = new DevExpress.XtraEditors.SimpleButton();
     this.userManageBtn = new DevExpress.XtraEditors.SimpleButton();
     this.progressBar1 = new System.Windows.Forms.ProgressBar();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.dataStoragePathTxt = new DevExpress.XtraEditors.TextEdit();
     this.browseDSPathBtn = new DevExpress.XtraEditors.SimpleButton();
     this.CloseBtn = new DevExpress.XtraEditors.SimpleButton();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.GeneralSettingsPage)).BeginInit();
     this.GeneralSettingsPage.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chooseLanguageBox.Properties)).BeginInit();
     this.AdminSettingsPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataStoragePathTxt.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // GeneralSettingsPage
     //
     this.GeneralSettingsPage.Dock = System.Windows.Forms.DockStyle.Top;
     this.GeneralSettingsPage.Location = new System.Drawing.Point(0, 0);
     this.GeneralSettingsPage.Name = "GeneralSettingsPage";
     this.GeneralSettingsPage.SelectedTabPage = this.xtraTabPage1;
     this.GeneralSettingsPage.Size = new System.Drawing.Size(393, 338);
     this.GeneralSettingsPage.TabIndex = 0;
     this.GeneralSettingsPage.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.TableSettingsPage,
     this.ExaminationSettingsPage,
     this.AdminSettingsPage});
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.groupControl2);
     this.xtraTabPage1.Controls.Add(this.groupControl1);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(387, 310);
     this.xtraTabPage1.Text = "Основные настройки";
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.groupControl2.Controls.Add(this.listBoxControl1);
     this.groupControl2.Location = new System.Drawing.Point(21, 93);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(347, 152);
     this.groupControl2.TabIndex = 2;
     this.groupControl2.Text = "Подключенные модули";
     //
     // listBoxControl1
     //
     this.listBoxControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listBoxControl1.Location = new System.Drawing.Point(2, 21);
     this.listBoxControl1.Name = "listBoxControl1";
     this.listBoxControl1.Size = new System.Drawing.Size(343, 129);
     this.listBoxControl1.TabIndex = 0;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.chooseLanguageBox);
     this.groupControl1.Location = new System.Drawing.Point(20, 24);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(110, 52);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "Язык";
     //
     // chooseLanguageBox
     //
     this.chooseLanguageBox.Location = new System.Drawing.Point(5, 24);
     this.chooseLanguageBox.Name = "chooseLanguageBox";
     this.chooseLanguageBox.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chooseLanguageBox.Size = new System.Drawing.Size(100, 20);
     this.chooseLanguageBox.TabIndex = 0;
     //
     // TableSettingsPage
     //
     this.TableSettingsPage.Name = "TableSettingsPage";
     this.TableSettingsPage.Size = new System.Drawing.Size(387, 310);
     this.TableSettingsPage.Text = "Таблицы";
     //
     // ExaminationSettingsPage
     //
     this.ExaminationSettingsPage.Name = "ExaminationSettingsPage";
     this.ExaminationSettingsPage.Size = new System.Drawing.Size(387, 310);
     this.ExaminationSettingsPage.Text = "Обследования";
     //
     // AdminSettingsPage
     //
     this.AdminSettingsPage.Controls.Add(this.groupControl5);
     this.AdminSettingsPage.Controls.Add(this.groupControl4);
     this.AdminSettingsPage.Controls.Add(this.progressBar1);
     this.AdminSettingsPage.Controls.Add(this.groupControl3);
     this.AdminSettingsPage.Name = "AdminSettingsPage";
     this.AdminSettingsPage.Size = new System.Drawing.Size(387, 310);
     this.AdminSettingsPage.Text = "Настройки администратора";
     //
     // groupControl5
     //
     this.groupControl5.Controls.Add(this.manageDepartmentsBtn);
     this.groupControl5.Location = new System.Drawing.Point(207, 156);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(171, 107);
     this.groupControl5.TabIndex = 7;
     this.groupControl5.Text = "groupControl5";
     //
     // manageDepartmentsBtn
     //
     this.manageDepartmentsBtn.Location = new System.Drawing.Point(15, 33);
     this.manageDepartmentsBtn.Name = "manageDepartmentsBtn";
     this.manageDepartmentsBtn.Size = new System.Drawing.Size(75, 23);
     this.manageDepartmentsBtn.TabIndex = 0;
     this.manageDepartmentsBtn.Text = "simpleButton1";
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.adjustRolesBtn);
     this.groupControl4.Controls.Add(this.userManageBtn);
     this.groupControl4.Location = new System.Drawing.Point(12, 156);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(178, 107);
     this.groupControl4.TabIndex = 6;
     this.groupControl4.Text = "Данные пользователей";
     //
     // adjustRolesBtn
     //
     this.adjustRolesBtn.Location = new System.Drawing.Point(15, 33);
     this.adjustRolesBtn.Name = "adjustRolesBtn";
     this.adjustRolesBtn.Size = new System.Drawing.Size(85, 23);
     this.adjustRolesBtn.TabIndex = 5;
     this.adjustRolesBtn.Text = "Управление ролями";
     this.adjustRolesBtn.TextChanged += new System.EventHandler(this.adjustRolesBtn_TextChanged);
     //
     // userManageBtn
     //
     this.userManageBtn.Location = new System.Drawing.Point(15, 67);
     this.userManageBtn.Name = "userManageBtn";
     this.userManageBtn.Size = new System.Drawing.Size(85, 23);
     this.userManageBtn.TabIndex = 4;
     this.userManageBtn.Text = "Управление пользователями";
     this.userManageBtn.TextChanged += new System.EventHandler(this.userManageBtn_TextChanged);
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(27, 104);
     this.progressBar1.Name = "progressBar1";
     this.progressBar1.Size = new System.Drawing.Size(336, 18);
     this.progressBar1.TabIndex = 3;
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.dataStoragePathTxt);
     this.groupControl3.Controls.Add(this.browseDSPathBtn);
     this.groupControl3.Location = new System.Drawing.Point(12, 17);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(366, 74);
     this.groupControl3.TabIndex = 2;
     this.groupControl3.Text = "Расположение файлового хранилища";
     //
     // dataStoragePathTxt
     //
     this.dataStoragePathTxt.Location = new System.Drawing.Point(15, 32);
     this.dataStoragePathTxt.Name = "dataStoragePathTxt";
     this.dataStoragePathTxt.Size = new System.Drawing.Size(255, 20);
     this.dataStoragePathTxt.TabIndex = 0;
     //
     // browseDSPathBtn
     //
     this.browseDSPathBtn.Location = new System.Drawing.Point(276, 31);
     this.browseDSPathBtn.Name = "browseDSPathBtn";
     this.browseDSPathBtn.Size = new System.Drawing.Size(75, 23);
     this.browseDSPathBtn.TabIndex = 1;
     this.browseDSPathBtn.Text = "Открыть";
     this.browseDSPathBtn.Click += new System.EventHandler(this.browseDSPathBtn_Click);
     //
     // CloseBtn
     //
     this.CloseBtn.Location = new System.Drawing.Point(157, 351);
     this.CloseBtn.Name = "CloseBtn";
     this.CloseBtn.Size = new System.Drawing.Size(75, 23);
     this.CloseBtn.TabIndex = 2;
     this.CloseBtn.Text = "Закрыть";
     this.CloseBtn.Click += new System.EventHandler(this.CloseBtn_Click);
     //
     // SettingsForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(393, 395);
     this.Controls.Add(this.CloseBtn);
     this.Controls.Add(this.GeneralSettingsPage);
     this.MaximizeBox = false;
     this.MaximumSize = new System.Drawing.Size(409, 433);
     this.MinimizeBox = false;
     this.MinimumSize = new System.Drawing.Size(401, 422);
     this.Name = "SettingsForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Настройки";
     ((System.ComponentModel.ISupportInitialize)(this.GeneralSettingsPage)).EndInit();
     this.GeneralSettingsPage.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chooseLanguageBox.Properties)).EndInit();
     this.AdminSettingsPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataStoragePathTxt.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.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.gridMonAn = new DevExpress.XtraGrid.GridControl();
     this.gridView_MonAn = new DevExpress.XtraGrid.Views.Grid.GridView();
     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.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupLoaiMA = new DevExpress.XtraEditors.GroupControl();
     this.gridLoaiMonAn = new DevExpress.XtraGrid.GridControl();
     this.gridView_LoaiMonAn = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn_MaLoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn_TenLoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnXoaLoaiMA = new DevExpress.XtraEditors.SimpleButton();
     this.btnCapNhatLoaiMA = new DevExpress.XtraEditors.SimpleButton();
     this.btnThemLoaiMA = new DevExpress.XtraEditors.SimpleButton();
     this.btnXoaMonAn = new DevExpress.XtraEditors.SimpleButton();
     this.btnCapNhatMonAn = new DevExpress.XtraEditors.SimpleButton();
     this.btnThemMonAn = new DevExpress.XtraEditors.SimpleButton();
     this.btnInDSMA = new DevExpress.XtraEditors.SimpleButton();
     this.btnTim = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.cbbChiTietTK = new DevExpress.XtraEditors.ComboBoxEdit();
     this.btnRefresh = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridMonAn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_MonAn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupLoaiMA)).BeginInit();
     this.groupLoaiMA.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridLoaiMonAn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_LoaiMonAn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbbChiTietTK.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.gridMonAn);
     this.groupControl1.Location = new System.Drawing.Point(334, 56);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(543, 380);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "Danh Sách Món Ăn";
     //
     // gridMonAn
     //
     this.gridMonAn.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridMonAn.Location = new System.Drawing.Point(2, 22);
     this.gridMonAn.MainView = this.gridView_MonAn;
     this.gridMonAn.Name = "gridMonAn";
     this.gridMonAn.Size = new System.Drawing.Size(539, 356);
     this.gridMonAn.TabIndex = 0;
     this.gridMonAn.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView_MonAn});
     //
     // gridView_MonAn
     //
     this.gridView_MonAn.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn8,
     this.gridColumn1});
     this.gridView_MonAn.GridControl = this.gridMonAn;
     this.gridView_MonAn.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.None, "TenNhaHang", null, "")});
     this.gridView_MonAn.Name = "gridView_MonAn";
     this.gridView_MonAn.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Tên Món";
     this.gridColumn3.FieldName = "TenMon";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Loại Món";
     this.gridColumn4.FieldName = "TenLoai";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Giá";
     this.gridColumn5.FieldName = "Gia";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 2;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Đơn Vị Tính";
     this.gridColumn6.FieldName = "DonViTinh";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 3;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Tên Nhà Hàng";
     this.gridColumn8.FieldName = "TenNH";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 4;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "gridColumn1";
     this.gridColumn1.FieldName = "MaMon";
     this.gridColumn1.Name = "gridColumn1";
     //
     // groupLoaiMA
     //
     this.groupLoaiMA.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.groupLoaiMA.Controls.Add(this.gridLoaiMonAn);
     this.groupLoaiMA.Location = new System.Drawing.Point(3, 56);
     this.groupLoaiMA.Name = "groupLoaiMA";
     this.groupLoaiMA.Size = new System.Drawing.Size(325, 380);
     this.groupLoaiMA.TabIndex = 1;
     this.groupLoaiMA.Text = "Loại Món Ăn";
     //
     // gridLoaiMonAn
     //
     this.gridLoaiMonAn.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridLoaiMonAn.Location = new System.Drawing.Point(2, 22);
     this.gridLoaiMonAn.MainView = this.gridView_LoaiMonAn;
     this.gridLoaiMonAn.Name = "gridLoaiMonAn";
     this.gridLoaiMonAn.Size = new System.Drawing.Size(321, 356);
     this.gridLoaiMonAn.TabIndex = 0;
     this.gridLoaiMonAn.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView_LoaiMonAn});
     //
     // gridView_LoaiMonAn
     //
     this.gridView_LoaiMonAn.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn_MaLoai,
     this.gridColumn_TenLoai});
     this.gridView_LoaiMonAn.GridControl = this.gridLoaiMonAn;
     this.gridView_LoaiMonAn.Name = "gridView_LoaiMonAn";
     this.gridView_LoaiMonAn.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn_MaLoai
     //
     this.gridColumn_MaLoai.Caption = "Mã Loại";
     this.gridColumn_MaLoai.FieldName = "MaLoai";
     this.gridColumn_MaLoai.Name = "gridColumn_MaLoai";
     this.gridColumn_MaLoai.OptionsColumn.ReadOnly = true;
     this.gridColumn_MaLoai.Visible = true;
     this.gridColumn_MaLoai.VisibleIndex = 0;
     //
     // gridColumn_TenLoai
     //
     this.gridColumn_TenLoai.Caption = "Tên Loại";
     this.gridColumn_TenLoai.FieldName = "TenLoai";
     this.gridColumn_TenLoai.Name = "gridColumn_TenLoai";
     this.gridColumn_TenLoai.Visible = true;
     this.gridColumn_TenLoai.VisibleIndex = 1;
     //
     // btnXoaLoaiMA
     //
     this.btnXoaLoaiMA.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnXoaLoaiMA.Image = global::GUI.Properties.Resources.delete_16;
     this.btnXoaLoaiMA.Location = new System.Drawing.Point(233, 440);
     this.btnXoaLoaiMA.Name = "btnXoaLoaiMA";
     this.btnXoaLoaiMA.Size = new System.Drawing.Size(89, 26);
     this.btnXoaLoaiMA.TabIndex = 7;
     this.btnXoaLoaiMA.Text = "Xóa";
     this.btnXoaLoaiMA.Click += new System.EventHandler(this.btnXoaLoaiMA_Click);
     //
     // btnCapNhatLoaiMA
     //
     this.btnCapNhatLoaiMA.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCapNhatLoaiMA.Image = global::GUI.Properties.Resources.save_16;
     this.btnCapNhatLoaiMA.Location = new System.Drawing.Point(121, 440);
     this.btnCapNhatLoaiMA.Name = "btnCapNhatLoaiMA";
     this.btnCapNhatLoaiMA.Size = new System.Drawing.Size(89, 26);
     this.btnCapNhatLoaiMA.TabIndex = 6;
     this.btnCapNhatLoaiMA.Text = "Cập Nhật";
     this.btnCapNhatLoaiMA.Click += new System.EventHandler(this.btnCapNhatLoaiMA_Click);
     //
     // btnThemLoaiMA
     //
     this.btnThemLoaiMA.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnThemLoaiMA.Image = global::GUI.Properties.Resources.add_16;
     this.btnThemLoaiMA.Location = new System.Drawing.Point(8, 440);
     this.btnThemLoaiMA.Name = "btnThemLoaiMA";
     this.btnThemLoaiMA.Size = new System.Drawing.Size(89, 26);
     this.btnThemLoaiMA.TabIndex = 5;
     this.btnThemLoaiMA.Text = "Thêm";
     this.btnThemLoaiMA.Click += new System.EventHandler(this.btnThemLoaiMA_Click);
     //
     // btnXoaMonAn
     //
     this.btnXoaMonAn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnXoaMonAn.Image = global::GUI.Properties.Resources.delete_16;
     this.btnXoaMonAn.Location = new System.Drawing.Point(702, 442);
     this.btnXoaMonAn.Name = "btnXoaMonAn";
     this.btnXoaMonAn.Size = new System.Drawing.Size(61, 26);
     this.btnXoaMonAn.TabIndex = 7;
     this.btnXoaMonAn.Text = "Xóa";
     this.btnXoaMonAn.Click += new System.EventHandler(this.btnXoaMonAn_Click);
     //
     // btnCapNhatMonAn
     //
     this.btnCapNhatMonAn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCapNhatMonAn.Image = global::GUI.Properties.Resources.save_16;
     this.btnCapNhatMonAn.Location = new System.Drawing.Point(607, 442);
     this.btnCapNhatMonAn.Name = "btnCapNhatMonAn";
     this.btnCapNhatMonAn.Size = new System.Drawing.Size(89, 26);
     this.btnCapNhatMonAn.TabIndex = 6;
     this.btnCapNhatMonAn.Text = "Cập Nhật";
     this.btnCapNhatMonAn.Click += new System.EventHandler(this.btnCapNhatMonAn_Click);
     //
     // btnThemMonAn
     //
     this.btnThemMonAn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnThemMonAn.Image = global::GUI.Properties.Resources.add_16;
     this.btnThemMonAn.Location = new System.Drawing.Point(541, 442);
     this.btnThemMonAn.Name = "btnThemMonAn";
     this.btnThemMonAn.Size = new System.Drawing.Size(60, 26);
     this.btnThemMonAn.TabIndex = 5;
     this.btnThemMonAn.Text = "Thêm";
     this.btnThemMonAn.Click += new System.EventHandler(this.btnThemMonAn_Click);
     //
     // btnInDSMA
     //
     this.btnInDSMA.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnInDSMA.Image = global::GUI.Properties.Resources.print_24;
     this.btnInDSMA.Location = new System.Drawing.Point(769, 442);
     this.btnInDSMA.Name = "btnInDSMA";
     this.btnInDSMA.Size = new System.Drawing.Size(106, 26);
     this.btnInDSMA.TabIndex = 7;
     this.btnInDSMA.Text = "In Danh Sách";
     //
     // btnTim
     //
     this.btnTim.Location = new System.Drawing.Point(769, 18);
     this.btnTim.Name = "btnTim";
     this.btnTim.Size = new System.Drawing.Size(75, 23);
     this.btnTim.TabIndex = 9;
     this.btnTim.Text = "Tìm";
     this.btnTim.Click += new System.EventHandler(this.btnTim_Click);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(530, 24);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(90, 13);
     this.labelControl1.TabIndex = 10;
     this.labelControl1.Text = "Tìm Kiếm Theo Loại";
     //
     // cbbChiTietTK
     //
     this.cbbChiTietTK.EditValue = "Chọn...";
     this.cbbChiTietTK.Location = new System.Drawing.Point(637, 21);
     this.cbbChiTietTK.Name = "cbbChiTietTK";
     this.cbbChiTietTK.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbbChiTietTK.Size = new System.Drawing.Size(100, 20);
     this.cbbChiTietTK.TabIndex = 11;
     //
     // btnRefresh
     //
     this.btnRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRefresh.Image = global::GUI.Properties.Resources.refresh16;
     this.btnRefresh.Location = new System.Drawing.Point(446, 442);
     this.btnRefresh.Name = "btnRefresh";
     this.btnRefresh.Size = new System.Drawing.Size(89, 26);
     this.btnRefresh.TabIndex = 13;
     this.btnRefresh.Text = "Refresh";
     this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
     //
     // UCtrlQLThucDon
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.btnRefresh);
     this.Controls.Add(this.cbbChiTietTK);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.btnTim);
     this.Controls.Add(this.btnThemMonAn);
     this.Controls.Add(this.btnThemLoaiMA);
     this.Controls.Add(this.btnCapNhatMonAn);
     this.Controls.Add(this.btnCapNhatLoaiMA);
     this.Controls.Add(this.btnInDSMA);
     this.Controls.Add(this.btnXoaLoaiMA);
     this.Controls.Add(this.btnXoaMonAn);
     this.Controls.Add(this.groupLoaiMA);
     this.Controls.Add(this.groupControl1);
     this.Name = "UCtrlQLThucDon";
     this.Size = new System.Drawing.Size(880, 480);
     this.Load += new System.EventHandler(this.UCtrl_QLNhaHang_QLThucDon_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridMonAn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_MonAn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupLoaiMA)).EndInit();
     this.groupLoaiMA.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridLoaiMonAn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_LoaiMonAn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbbChiTietTK.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.OK = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.cancel = new DevExpress.XtraBars.BarButtonItem();
     this.createMovement = new DevExpress.XtraBars.BarButtonItem();
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.NomenclatureInfoButtonsBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.panelControl = new DevExpress.XtraEditors.PanelControl();
     this.State = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.Car = new Aramis.AramisSearchLookUpEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.Driver = new Aramis.AramisSearchLookUpEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.Carrier = new Aramis.AramisSearchLookUpEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.Contractor = new Aramis.AramisSearchLookUpEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.TypeOfShipment = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.Date = new DevExpress.XtraEditors.DateEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.IncomeNumber = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
     this.Info = new DevExpress.XtraEditors.LabelControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.NomenclatureInfo = new DevExpress.XtraGrid.GridControl();
     this.nomenclatureView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
     this.panelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Car.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Driver.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Carrier.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Contractor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TypeOfShipment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IncomeNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.OK);
     this.ribbonStatusBar.ItemLinks.Add(this.barButtonItem2);
     this.ribbonStatusBar.ItemLinks.Add(this.cancel);
     this.ribbonStatusBar.ItemLinks.Add(this.createMovement);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 544);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(720, 31);
     //
     // OK
     //
     this.OK.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.OK.Caption = "OK";
     this.OK.Id = 0;
     this.OK.ImageIndex = 0;
     this.OK.Name = "OK";
     this.OK.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OK_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem2.Caption = "��������";
     this.barButtonItem2.Id = 1;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Write_ItemClick);
     //
     // cancel
     //
     this.cancel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.cancel.Caption = "³����";
     this.cancel.Id = 2;
     this.cancel.ImageIndex = 1;
     this.cancel.Name = "cancel";
     this.cancel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.cancel_ItemClick);
     //
     // createMovement
     //
     this.createMovement.Caption = "���������� ����������";
     this.createMovement.Id = 18;
     this.createMovement.ImageIndex = 2;
     this.createMovement.Name = "createMovement";
     this.createMovement.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.createMovement_ItemClick);
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.ExpandCollapseItem.Name = "";
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbon.ExpandCollapseItem,
     this.OK,
     this.barButtonItem2,
     this.cancel,
     this.createMovement,
     this.barButtonItem8});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 20;
     this.ribbon.Name = "ribbon";
     this.ribbon.Size = new System.Drawing.Size(720, 49);
     this.ribbon.StatusBar = this.NomenclatureInfoButtonsBar;
     this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
     //
     // NomenclatureInfoButtonsBar
     //
     this.NomenclatureInfoButtonsBar.Dock = System.Windows.Forms.DockStyle.Top;
     this.NomenclatureInfoButtonsBar.ItemLinks.Add(this.barButtonItem8);
     this.NomenclatureInfoButtonsBar.Location = new System.Drawing.Point(2, 2);
     this.NomenclatureInfoButtonsBar.Name = "NomenclatureInfoButtonsBar";
     this.NomenclatureInfoButtonsBar.Ribbon = this.ribbon;
     this.NomenclatureInfoButtonsBar.Size = new System.Drawing.Size(716, 27);
     //
     // panelControl
     //
     this.panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl.Controls.Add(this.State);
     this.panelControl.Controls.Add(this.labelControl8);
     this.panelControl.Controls.Add(this.Car);
     this.panelControl.Controls.Add(this.labelControl7);
     this.panelControl.Controls.Add(this.Driver);
     this.panelControl.Controls.Add(this.labelControl6);
     this.panelControl.Controls.Add(this.Carrier);
     this.panelControl.Controls.Add(this.labelControl5);
     this.panelControl.Controls.Add(this.Contractor);
     this.panelControl.Controls.Add(this.labelControl4);
     this.panelControl.Controls.Add(this.TypeOfShipment);
     this.panelControl.Controls.Add(this.labelControl3);
     this.panelControl.Controls.Add(this.Date);
     this.panelControl.Controls.Add(this.labelControl2);
     this.panelControl.Controls.Add(this.IncomeNumber);
     this.panelControl.Controls.Add(this.labelControl1);
     this.panelControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl.Location = new System.Drawing.Point(0, 49);
     this.panelControl.Name = "panelControl";
     this.panelControl.Size = new System.Drawing.Size(720, 110);
     this.panelControl.TabIndex = 0;
     //
     // State
     //
     this.State.Location = new System.Drawing.Point(455, 31);
     this.State.MenuManager = this.ribbon;
     this.State.Name = "State";
     this.State.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.State.Size = new System.Drawing.Size(209, 20);
     this.State.TabIndex = 3;
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(366, 34);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(82, 13);
     this.labelControl8.TabIndex = 14;
     this.labelControl8.Text = "���� ���������";
     //
     // Car
     //
     this.Car.BaseFilter = null;
     this.Car.Location = new System.Drawing.Point(455, 83);
     this.Car.MenuManager = this.ribbon;
     this.Car.Name = "Car";
     this.Car.Properties.BaseFilter = null;
     this.Car.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Car.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Car.Properties.NullText = "";
     this.Car.Size = new System.Drawing.Size(209, 20);
     this.Car.TabIndex = 7;
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(366, 86);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(40, 13);
     this.labelControl7.TabIndex = 12;
     this.labelControl7.Text = "������";
     //
     // Driver
     //
     this.Driver.BaseFilter = null;
     this.Driver.Location = new System.Drawing.Point(114, 83);
     this.Driver.MenuManager = this.ribbon;
     this.Driver.Name = "Driver";
     this.Driver.Properties.BaseFilter = null;
     this.Driver.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Driver.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Driver.Properties.NullText = "";
     this.Driver.Size = new System.Drawing.Size(246, 20);
     this.Driver.TabIndex = 6;
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(10, 86);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(28, 13);
     this.labelControl6.TabIndex = 10;
     this.labelControl6.Text = "����";
     //
     // Carrier
     //
     this.Carrier.BaseFilter = null;
     this.Carrier.Location = new System.Drawing.Point(455, 57);
     this.Carrier.MenuManager = this.ribbon;
     this.Carrier.Name = "Carrier";
     this.Carrier.Properties.BaseFilter = null;
     this.Carrier.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Carrier.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Carrier.Properties.NullText = "";
     this.Carrier.Size = new System.Drawing.Size(209, 20);
     this.Carrier.TabIndex = 5;
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(366, 60);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(57, 13);
     this.labelControl5.TabIndex = 8;
     this.labelControl5.Text = "���������";
     //
     // Contractor
     //
     this.Contractor.BaseFilter = null;
     this.Contractor.Location = new System.Drawing.Point(114, 57);
     this.Contractor.MenuManager = this.ribbon;
     this.Contractor.Name = "Contractor";
     this.Contractor.Properties.BaseFilter = null;
     this.Contractor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Contractor.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Contractor.Properties.NullText = "";
     this.Contractor.Size = new System.Drawing.Size(246, 20);
     this.Contractor.TabIndex = 4;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(10, 60);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(60, 13);
     this.labelControl4.TabIndex = 6;
     this.labelControl4.Text = "����������";
     //
     // TypeOfShipment
     //
     this.TypeOfShipment.Location = new System.Drawing.Point(114, 31);
     this.TypeOfShipment.MenuManager = this.ribbon;
     this.TypeOfShipment.Name = "TypeOfShipment";
     this.TypeOfShipment.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TypeOfShipment.Size = new System.Drawing.Size(246, 20);
     this.TypeOfShipment.TabIndex = 2;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(10, 34);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(99, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "��� ������������";
     //
     // Date
     //
     this.Date.EditValue = null;
     this.Date.Location = new System.Drawing.Point(260, 6);
     this.Date.MenuManager = this.ribbon;
     this.Date.Name = "Date";
     this.Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Date.Size = new System.Drawing.Size(100, 20);
     this.Date.TabIndex = 1;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(225, 8);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(29, 13);
     this.labelControl2.TabIndex = 2;
     this.labelControl2.Text = "���� ";
     //
     // IncomeNumber
     //
     this.IncomeNumber.Location = new System.Drawing.Point(114, 5);
     this.IncomeNumber.MenuManager = this.ribbon;
     this.IncomeNumber.Name = "IncomeNumber";
     this.IncomeNumber.Size = new System.Drawing.Size(105, 20);
     this.IncomeNumber.TabIndex = 0;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(10, 8);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(68, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "� ��������";
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.pictureEdit1);
     this.panelControl1.Controls.Add(this.Info);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 524);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(720, 20);
     this.panelControl1.TabIndex = 0;
     //
     // pictureEdit1
     //
     this.pictureEdit1.Dock = System.Windows.Forms.DockStyle.Left;
     this.pictureEdit1.EditValue = global::FMCG.Properties.Resources._1317825614_information_balloon;
     this.pictureEdit1.Location = new System.Drawing.Point(0, 0);
     this.pictureEdit1.MenuManager = this.ribbon;
     this.pictureEdit1.Name = "pictureEdit1";
     this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
     this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pictureEdit1.Size = new System.Drawing.Size(20, 20);
     this.pictureEdit1.TabIndex = 3;
     this.pictureEdit1.ToolTip = "��� ������� ��������� �������� �� ���� ���������� �����������";
     this.pictureEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.pictureEdit1.ToolTipTitle = "������:";
     //
     // Info
     //
     this.Info.Appearance.ForeColor = System.Drawing.Color.Gray;
     this.Info.Location = new System.Drawing.Point(24, 3);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(12, 13);
     this.Info.TabIndex = 1;
     this.Info.Text = "...";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem1.Caption = "OK";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.ImageIndex = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem3.Caption = "��������";
     this.barButtonItem3.Id = 1;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem4.Caption = "³����";
     this.barButtonItem4.Id = 2;
     this.barButtonItem4.ImageIndex = 1;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // NomenclatureInfo
     //
     this.NomenclatureInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.NomenclatureInfo.Location = new System.Drawing.Point(2, 29);
     this.NomenclatureInfo.MainView = this.nomenclatureView;
     this.NomenclatureInfo.MenuManager = this.ribbon;
     this.NomenclatureInfo.Name = "NomenclatureInfo";
     this.NomenclatureInfo.Size = new System.Drawing.Size(716, 334);
     this.NomenclatureInfo.TabIndex = 1;
     this.NomenclatureInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.nomenclatureView});
     //
     // nomenclatureView
     //
     this.nomenclatureView.GridControl = this.NomenclatureInfo;
     this.nomenclatureView.Name = "nomenclatureView";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem5.Caption = "OK";
     this.barButtonItem5.Id = 0;
     this.barButtonItem5.ImageIndex = 0;
     this.barButtonItem5.Name = "barButtonItem5";
     //
     // barButtonItem6
     //
     this.barButtonItem6.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem6.Caption = "��������";
     this.barButtonItem6.Id = 1;
     this.barButtonItem6.Name = "barButtonItem6";
     //
     // barButtonItem7
     //
     this.barButtonItem7.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem7.Caption = "³����";
     this.barButtonItem7.Id = 2;
     this.barButtonItem7.ImageIndex = 1;
     this.barButtonItem7.Name = "barButtonItem7";
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.NomenclatureInfo);
     this.panelControl3.Controls.Add(this.NomenclatureInfoButtonsBar);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(0, 159);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(720, 365);
     this.panelControl3.TabIndex = 25;
     //
     // barButtonItem8
     //
     this.barButtonItem8.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem8.Caption = "��������� ����";
     this.barButtonItem8.Id = 19;
     this.barButtonItem8.Name = "barButtonItem8";
     this.barButtonItem8.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem8_ItemClick);
     //
     // ShipmentPlanItemForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(720, 575);
     this.Controls.Add(this.panelControl3);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.panelControl);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.KeyPreview = true;
     this.Name = "ShipmentPlanItemForm";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "Item form";
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Itemform_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
     this.panelControl.ResumeLayout(false);
     this.panelControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Car.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Driver.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Carrier.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Contractor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TypeOfShipment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IncomeNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.listBoxControl2 = new DevExpress.XtraEditors.ListBoxControl();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.listBoxControl1 = new DevExpress.XtraEditors.ListBoxControl();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.textEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton8 = new DevExpress.XtraEditors.SimpleButton();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.memoEdit1 = new DevExpress.XtraEditors.MemoEdit();
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButton6
     //
     this.simpleButton6.Location = new System.Drawing.Point(260, 233);
     this.simpleButton6.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(55, 34);
     this.simpleButton6.TabIndex = 55;
     this.simpleButton6.Text = "清空";
     this.simpleButton6.Click += new System.EventHandler(this.simpleButton6_Click);
     //
     // simpleButton5
     //
     this.simpleButton5.Location = new System.Drawing.Point(260, 56);
     this.simpleButton5.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(55, 34);
     this.simpleButton5.TabIndex = 54;
     this.simpleButton5.Text = "全选";
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // labelControl4
     //
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.labelControl4.Location = new System.Drawing.Point(332, 41);
     this.labelControl4.Margin = new System.Windows.Forms.Padding(0);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(234, 24);
     this.labelControl4.TabIndex = 53;
     this.labelControl4.Text = "已选字段";
     //
     // listBoxControl2
     //
     this.listBoxControl2.Location = new System.Drawing.Point(331, 65);
     this.listBoxControl2.Margin = new System.Windows.Forms.Padding(0);
     this.listBoxControl2.Name = "listBoxControl2";
     this.listBoxControl2.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.listBoxControl2.Size = new System.Drawing.Size(234, 213);
     this.listBoxControl2.TabIndex = 52;
     //
     // simpleButton3
     //
     this.simpleButton3.Location = new System.Drawing.Point(260, 174);
     this.simpleButton3.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(55, 34);
     this.simpleButton3.TabIndex = 51;
     this.simpleButton3.Text = "<=";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(260, 115);
     this.simpleButton2.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(55, 34);
     this.simpleButton2.TabIndex = 50;
     this.simpleButton2.Text = "=>";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(7, 14);
     this.labelControl3.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(84, 17);
     this.labelControl3.TabIndex = 49;
     this.labelControl3.Text = "选择数据表:";
     //
     // comboBoxEdit1
     //
     this.comboBoxEdit1.Enabled = false;
     this.comboBoxEdit1.Location = new System.Drawing.Point(97, 14);
     this.comboBoxEdit1.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
     this.comboBoxEdit1.Name = "comboBoxEdit1";
     this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEdit1.Size = new System.Drawing.Size(177, 22);
     this.comboBoxEdit1.TabIndex = 48;
     this.comboBoxEdit1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit1_SelectedIndexChanged);
     //
     // labelControl2
     //
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.labelControl2.Location = new System.Drawing.Point(7, 41);
     this.labelControl2.Margin = new System.Windows.Forms.Padding(0);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(234, 24);
     this.labelControl2.TabIndex = 47;
     this.labelControl2.Text = "可选字段";
     //
     // listBoxControl1
     //
     this.listBoxControl1.Location = new System.Drawing.Point(7, 65);
     this.listBoxControl1.Margin = new System.Windows.Forms.Padding(0);
     this.listBoxControl1.Name = "listBoxControl1";
     this.listBoxControl1.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.listBoxControl1.Size = new System.Drawing.Size(234, 213);
     this.listBoxControl1.TabIndex = 46;
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(591, 31);
     this.simpleButton1.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 28);
     this.simpleButton1.TabIndex = 45;
     this.simpleButton1.Text = "查询";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(11, 7);
     this.labelControl1.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(126, 17);
     this.labelControl1.TabIndex = 44;
     this.labelControl1.Text = "数据库连接字符串:";
     //
     // textEdit1
     //
     this.textEdit1.EditValue = "Provider=MSDAORA.1;Password=lyq;User ID=lyq;Data Source=lyq;Persist Security Info" +
     "=True;";
     this.textEdit1.Location = new System.Drawing.Point(12, 34);
     this.textEdit1.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.textEdit1.Size = new System.Drawing.Size(558, 22);
     this.textEdit1.TabIndex = 43;
     //
     // simpleButton7
     //
     this.simpleButton7.Enabled = false;
     this.simpleButton7.Location = new System.Drawing.Point(591, 290);
     this.simpleButton7.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.simpleButton7.Name = "simpleButton7";
     this.simpleButton7.Size = new System.Drawing.Size(75, 28);
     this.simpleButton7.TabIndex = 57;
     this.simpleButton7.Text = "确定";
     this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
     //
     // simpleButton8
     //
     this.simpleButton8.Location = new System.Drawing.Point(591, 344);
     this.simpleButton8.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.simpleButton8.Name = "simpleButton8";
     this.simpleButton8.Size = new System.Drawing.Size(75, 28);
     this.simpleButton8.TabIndex = 58;
     this.simpleButton8.Text = "取消";
     this.simpleButton8.Click += new System.EventHandler(this.simpleButton8_Click);
     //
     // textEdit2
     //
     this.textEdit2.EditValue = "0";
     this.textEdit2.Location = new System.Drawing.Point(591, 220);
     this.textEdit2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Properties.Mask.EditMask = "d";
     this.textEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEdit2.Size = new System.Drawing.Size(75, 22);
     this.textEdit2.TabIndex = 60;
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(591, 200);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(33, 17);
     this.labelControl5.TabIndex = 61;
     this.labelControl5.Text = "行数:";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(10, 64);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size = new System.Drawing.Size(575, 319);
     this.xtraTabControl1.TabIndex = 62;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2});
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.labelControl4);
     this.xtraTabPage1.Controls.Add(this.listBoxControl1);
     this.xtraTabPage1.Controls.Add(this.labelControl2);
     this.xtraTabPage1.Controls.Add(this.comboBoxEdit1);
     this.xtraTabPage1.Controls.Add(this.labelControl3);
     this.xtraTabPage1.Controls.Add(this.simpleButton2);
     this.xtraTabPage1.Controls.Add(this.simpleButton6);
     this.xtraTabPage1.Controls.Add(this.simpleButton3);
     this.xtraTabPage1.Controls.Add(this.simpleButton5);
     this.xtraTabPage1.Controls.Add(this.listBoxControl2);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(573, 288);
     this.xtraTabPage1.Text = "基础查询";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.memoEdit1);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(573, 288);
     this.xtraTabPage2.Text = "自定义查询";
     //
     // memoEdit1
     //
     this.memoEdit1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.memoEdit1.Location = new System.Drawing.Point(0, 0);
     this.memoEdit1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.memoEdit1.Name = "memoEdit1";
     this.memoEdit1.Size = new System.Drawing.Size(573, 288);
     this.memoEdit1.TabIndex = 1;
     this.memoEdit1.UseOptimizedRendering = true;
     //
     // DebugDataSelectForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(673, 391);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.labelControl5);
     this.Controls.Add(this.textEdit2);
     this.Controls.Add(this.simpleButton8);
     this.Controls.Add(this.simpleButton7);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.textEdit1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "DebugDataSelectForm";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "选择数据";
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage1.PerformLayout();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pnlMain = new DevExpress.XtraEditors.PanelControl();
     this.btnTest = new DevExpress.XtraEditors.SimpleButton();
     this.checkSavePass = new DevExpress.XtraEditors.CheckEdit();
     this.checkBosParola = new DevExpress.XtraEditors.CheckEdit();
     this.btnRefresh = new DevExpress.XtraEditors.SimpleButton();
     this.cbServer = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.radioGroup2 = new DevExpress.XtraEditors.RadioGroup();
     this.tePassword = new DevExpress.XtraEditors.TextEdit();
     this.teLogin = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.radioGroup1 = new DevExpress.XtraEditors.RadioGroup();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.cbDatabase = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.sbExit = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.pnlMain)).BeginInit();
     this.pnlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkSavePass.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkBosParola.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbServer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tePassword.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.teLogin.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbDatabase.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // pnlMain
     //
     this.pnlMain.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
     this.pnlMain.Appearance.Options.UseBackColor = true;
     this.pnlMain.Controls.Add(this.btnTest);
     this.pnlMain.Controls.Add(this.checkSavePass);
     this.pnlMain.Controls.Add(this.checkBosParola);
     this.pnlMain.Controls.Add(this.btnRefresh);
     this.pnlMain.Controls.Add(this.cbServer);
     this.pnlMain.Controls.Add(this.labelControl6);
     this.pnlMain.Controls.Add(this.radioGroup2);
     this.pnlMain.Controls.Add(this.tePassword);
     this.pnlMain.Controls.Add(this.teLogin);
     this.pnlMain.Controls.Add(this.labelControl5);
     this.pnlMain.Controls.Add(this.labelControl4);
     this.pnlMain.Controls.Add(this.radioGroup1);
     this.pnlMain.Controls.Add(this.labelControl3);
     this.pnlMain.Controls.Add(this.labelControl2);
     this.pnlMain.Controls.Add(this.cbDatabase);
     this.pnlMain.Controls.Add(this.labelControl1);
     this.pnlMain.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlMain.Location = new System.Drawing.Point(8, 8);
     this.pnlMain.Name = "pnlMain";
     this.pnlMain.Size = new System.Drawing.Size(364, 381);
     this.pnlMain.TabIndex = 2;
     //
     // btnTest
     //
     this.btnTest.Location = new System.Drawing.Point(267, 256);
     this.btnTest.Name = "btnTest";
     this.btnTest.Size = new System.Drawing.Size(88, 27);
     this.btnTest.TabIndex = 29;
     this.btnTest.Text = "Baðlantýyý Sýna";
     this.btnTest.Click += new System.EventHandler(this.btnTest_Click);
     //
     // checkSavePass
     //
     this.checkSavePass.Location = new System.Drawing.Point(200, 187);
     this.checkSavePass.Name = "checkSavePass";
     this.checkSavePass.Properties.Caption = "Parola kaydetmeye izin ver";
     this.checkSavePass.Size = new System.Drawing.Size(185, 19);
     this.checkSavePass.TabIndex = 28;
     //
     // checkBosParola
     //
     this.checkBosParola.Location = new System.Drawing.Point(68, 187);
     this.checkBosParola.Name = "checkBosParola";
     this.checkBosParola.Properties.Caption = "Boþ Parola";
     this.checkBosParola.Size = new System.Drawing.Size(75, 19);
     this.checkBosParola.TabIndex = 27;
     //
     // btnRefresh
     //
     this.btnRefresh.Location = new System.Drawing.Point(311, 34);
     this.btnRefresh.Name = "btnRefresh";
     this.btnRefresh.Size = new System.Drawing.Size(44, 21);
     this.btnRefresh.TabIndex = 26;
     this.btnRefresh.Text = "Yenile";
     this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
     //
     // cbServer
     //
     this.cbServer.Location = new System.Drawing.Point(37, 35);
     this.cbServer.Name = "cbServer";
     this.cbServer.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbServer.Size = new System.Drawing.Size(268, 20);
     this.cbServer.TabIndex = 25;
     this.cbServer.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.cbServer_QueryPopUp);
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(12, 288);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(147, 13);
     this.labelControl6.TabIndex = 23;
     this.labelControl6.Text = "4. Baðlantý ayarlarýný kayýt þekli";
     //
     // radioGroup2
     //
     this.radioGroup2.EditValue = 0;
     this.radioGroup2.Location = new System.Drawing.Point(37, 307);
     this.radioGroup2.Name = "radioGroup2";
     this.radioGroup2.Properties.Columns = 1;
     this.radioGroup2.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Kayýt Defteri (Registry)"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Dosya Sistemi (.ini Dosyasý)")});
     this.radioGroup2.Size = new System.Drawing.Size(318, 58);
     this.radioGroup2.TabIndex = 22;
     //
     // tePassword
     //
     this.tePassword.Enabled = false;
     this.tePassword.Location = new System.Drawing.Point(133, 161);
     this.tePassword.Name = "tePassword";
     this.tePassword.Properties.PasswordChar = '*';
     this.tePassword.Size = new System.Drawing.Size(222, 20);
     this.tePassword.TabIndex = 4;
     //
     // teLogin
     //
     this.teLogin.EditValue = "sa";
     this.teLogin.Enabled = false;
     this.teLogin.Location = new System.Drawing.Point(133, 135);
     this.teLogin.Name = "teLogin";
     this.teLogin.Size = new System.Drawing.Size(222, 20);
     this.teLogin.TabIndex = 3;
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(72, 164);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(22, 13);
     this.labelControl5.TabIndex = 21;
     this.labelControl5.Text = "Þifre";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(72, 138);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(37, 13);
     this.labelControl4.TabIndex = 20;
     this.labelControl4.Text = "Kullanýcý";
     //
     // radioGroup1
     //
     this.radioGroup1.EditValue = 0;
     this.radioGroup1.Location = new System.Drawing.Point(37, 77);
     this.radioGroup1.Name = "radioGroup1";
     this.radioGroup1.Properties.Columns = 1;
     this.radioGroup1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Windows NT tümleþik güvenliðini kullan"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "Belirli bir kullanýcý adý ve parolasý kullan")});
     this.radioGroup1.Size = new System.Drawing.Size(318, 52);
     this.radioGroup1.TabIndex = 2;
     this.radioGroup1.SelectedIndexChanged += new System.EventHandler(this.radioGroup1_SelectedIndexChanged);
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(12, 60);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(206, 13);
     this.labelControl3.TabIndex = 18;
     this.labelControl3.Text = "2. Sunucuda oturum açmak için bilgileri girin";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(12, 19);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(206, 13);
     this.labelControl2.TabIndex = 16;
     this.labelControl2.Text = "1. SQL Server sunucu adýný seçin veya girin";
     //
     // cbDatabase
     //
     this.cbDatabase.Location = new System.Drawing.Point(37, 231);
     this.cbDatabase.Name = "cbDatabase";
     this.cbDatabase.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbDatabase.Properties.ValidateOnEnterKey = true;
     this.cbDatabase.Size = new System.Drawing.Size(318, 20);
     this.cbDatabase.TabIndex = 1;
     this.cbDatabase.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.cbDatabase_QueryPopUp);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(12, 212);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(153, 13);
     this.labelControl1.TabIndex = 14;
     this.labelControl1.Text = "3. Sunucudaki veritabanýný seçin";
     //
     // btnSave
     //
     this.btnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnSave.Location = new System.Drawing.Point(206, 404);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(80, 25);
     this.btnSave.TabIndex = 24;
     this.btnSave.Text = "Tamam";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // sbExit
     //
     this.sbExit.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbExit.Location = new System.Drawing.Point(292, 404);
     this.sbExit.Name = "sbExit";
     this.sbExit.Size = new System.Drawing.Size(80, 25);
     this.sbExit.TabIndex = 12;
     this.sbExit.Text = "Ýptal";
     this.sbExit.Click += new System.EventHandler(this.sbExit_Click);
     //
     // frmSQLConnector
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(380, 445);
     this.Controls.Add(this.pnlMain);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.sbExit);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "frmSQLConnector";
     this.Padding = new System.Windows.Forms.Padding(8);
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Sql Server- Configuration Window";
     ((System.ComponentModel.ISupportInitialize)(this.pnlMain)).EndInit();
     this.pnlMain.ResumeLayout(false);
     this.pnlMain.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkSavePass.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkBosParola.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbServer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tePassword.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.teLogin.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbDatabase.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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmTestList));
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiXem = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSua = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.dtDen = new DevExpress.XtraEditors.DateEdit();
     this.dtTu = new DevExpress.XtraEditors.DateEdit();
     this.cbChonNgay = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.sTOCKOUTWARDDETAILBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsTEST = new Do_An_Quan_Ly_Kho.Test.DS.dsTEST();
     this.gbList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colOutward_ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStock_ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRefType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colProduct_ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colProductName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colVat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLev1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLev2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLev3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLev4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUnit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUnitConvert = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCurrentQty = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUnitPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colQtyConvert = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDiscount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCharge = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colProfit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBatch = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSerial = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colChassyNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colIME = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colWidth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colHeight = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colOrgin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSize = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStoreID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSorted = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colActive = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.sTOCK_OUTWARD_DETAILTableAdapter = new Do_An_Quan_Ly_Kho.Test.DS.dsTESTTableAdapters.STOCK_OUTWARD_DETAILTableAdapter();
     this.bbiExportExcel = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sTOCKOUTWARDDETAILBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsTEST)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     this.SuspendLayout();
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiXem,
     this.bbiSua,
     this.bbiXoa,
     this.bbiDong,
     this.bbiExportExcel});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 13;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(49, 160);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiSua),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXoa),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiExportExcel)});
     this.bar2.OptionsBar.AllowDelete = true;
     this.bar2.OptionsBar.DrawSizeGrip = true;
     this.bar2.Text = "Main menu";
     //
     // bbiXem
     //
     this.bbiXem.Caption = "Xem";
     this.bbiXem.Id = 0;
     this.bbiXem.ImageIndex = 35;
     this.bbiXem.Name = "bbiXem";
     this.bbiXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // bbiSua
     //
     this.bbiSua.Caption = "Sửa";
     this.bbiSua.Id = 1;
     this.bbiSua.ImageIndex = 29;
     this.bbiSua.Name = "bbiSua";
     this.bbiSua.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // bbiXoa
     //
     this.bbiXoa.Caption = "Xóa";
     this.bbiXoa.Id = 2;
     this.bbiXoa.ImageIndex = 16;
     this.bbiXoa.Name = "bbiXoa";
     this.bbiXoa.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 6;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.dtDen);
     this.layoutControl1.Controls.Add(this.dtTu);
     this.layoutControl1.Controls.Add(this.cbChonNgay);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 26);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1102, 390);
     this.layoutControl1.TabIndex = 4;
     this.layoutControl1.Text = "layoutControl1";
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(452, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(648, 20);
     this.layoutControl2.TabIndex = 8;
     this.layoutControl2.Text = "layoutControl2";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(648, 20);
     this.layoutControlGroup2.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // dtDen
     //
     this.dtDen.EditValue = null;
     this.dtDen.Location = new System.Drawing.Point(326, 2);
     this.dtDen.MenuManager = this.bm;
     this.dtDen.Name = "dtDen";
     this.dtDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtDen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtDen.Size = new System.Drawing.Size(122, 20);
     this.dtDen.StyleController = this.layoutControl1;
     this.dtDen.TabIndex = 7;
     //
     // dtTu
     //
     this.dtTu.EditValue = null;
     this.dtTu.Location = new System.Drawing.Point(176, 2);
     this.dtTu.MenuManager = this.bm;
     this.dtTu.Name = "dtTu";
     this.dtTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtTu.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtTu.Size = new System.Drawing.Size(122, 20);
     this.dtTu.StyleController = this.layoutControl1;
     this.dtTu.TabIndex = 6;
     //
     // cbChonNgay
     //
     this.cbChonNgay.Location = new System.Drawing.Point(57, 2);
     this.cbChonNgay.MenuManager = this.bm;
     this.cbChonNgay.Name = "cbChonNgay";
     this.cbChonNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbChonNgay.Properties.Items.AddRange(new object[] {
     "Tháng 1",
     "Tháng 2",
     "Tháng 3",
     "Tháng 4",
     "Tháng 5",
     "Tháng 6",
     "Tháng 7",
     "Tháng 8",
     "Tháng 9",
     "Tháng 10",
     "Tháng 11",
     "Tháng 12"});
     this.cbChonNgay.Size = new System.Drawing.Size(91, 20);
     this.cbChonNgay.StyleController = this.layoutControl1;
     this.cbChonNgay.TabIndex = 5;
     this.cbChonNgay.SelectedIndexChanged += new System.EventHandler(this.cbChonNgay_SelectedIndexChanged);
     //
     // gcList
     //
     this.gcList.DataSource = this.sTOCKOUTWARDDETAILBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 26);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.Size = new System.Drawing.Size(1098, 362);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // sTOCKOUTWARDDETAILBindingSource
     //
     this.sTOCKOUTWARDDETAILBindingSource.DataMember = "STOCK_OUTWARD_DETAIL";
     this.sTOCKOUTWARDDETAILBindingSource.DataSource = this.dsTEST;
     //
     // dsTEST
     //
     this.dsTEST.DataSetName = "dsTEST";
     this.dsTEST.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList
     //
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colID,
     this.colOutward_ID,
     this.colStock_ID,
     this.colRefType,
     this.colProduct_ID,
     this.colProductName,
     this.colVat,
     this.colLev1,
     this.colLev2,
     this.colLev3,
     this.colLev4,
     this.colUnit,
     this.colUnitConvert,
     this.colCurrentQty,
     this.colQuantity,
     this.colUnitPrice,
     this.colAmount,
     this.colQtyConvert,
     this.colDiscount,
     this.colCharge,
     this.colCost,
     this.colProfit,
     this.colBatch,
     this.colSerial,
     this.colChassyNo,
     this.colIME,
     this.colWidth,
     this.colHeight,
     this.colOrgin,
     this.colSize,
     this.colStoreID,
     this.colDescription,
     this.colSorted,
     this.colActive});
     this.gbList.GridControl = this.gcList;
     this.gbList.GroupPanelText = "Kéo cột và thả vào đây để nhóm dữ liệu";
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     //
     // colID
     //
     this.colID.AppearanceHeader.Options.UseTextOptions = true;
     this.colID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colID.FieldName = "ID";
     this.colID.Name = "colID";
     this.colID.OptionsColumn.ReadOnly = true;
     this.colID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colID.Visible = true;
     this.colID.VisibleIndex = 0;
     this.colID.Width = 33;
     //
     // colOutward_ID
     //
     this.colOutward_ID.AppearanceHeader.Options.UseTextOptions = true;
     this.colOutward_ID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colOutward_ID.FieldName = "Outward_ID";
     this.colOutward_ID.Name = "colOutward_ID";
     this.colOutward_ID.OptionsColumn.ReadOnly = true;
     this.colOutward_ID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colOutward_ID.Visible = true;
     this.colOutward_ID.VisibleIndex = 1;
     this.colOutward_ID.Width = 81;
     //
     // colStock_ID
     //
     this.colStock_ID.AppearanceHeader.Options.UseTextOptions = true;
     this.colStock_ID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colStock_ID.FieldName = "Stock_ID";
     this.colStock_ID.Name = "colStock_ID";
     this.colStock_ID.OptionsColumn.ReadOnly = true;
     this.colStock_ID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colStock_ID.Visible = true;
     this.colStock_ID.VisibleIndex = 2;
     this.colStock_ID.Width = 65;
     //
     // colRefType
     //
     this.colRefType.AppearanceHeader.Options.UseTextOptions = true;
     this.colRefType.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colRefType.FieldName = "RefType";
     this.colRefType.Name = "colRefType";
     this.colRefType.OptionsColumn.ReadOnly = true;
     this.colRefType.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colRefType.Visible = true;
     this.colRefType.VisibleIndex = 3;
     this.colRefType.Width = 66;
     //
     // colProduct_ID
     //
     this.colProduct_ID.AppearanceHeader.Options.UseTextOptions = true;
     this.colProduct_ID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colProduct_ID.FieldName = "Product_ID";
     this.colProduct_ID.Name = "colProduct_ID";
     this.colProduct_ID.OptionsColumn.ReadOnly = true;
     this.colProduct_ID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colProduct_ID.Visible = true;
     this.colProduct_ID.VisibleIndex = 4;
     this.colProduct_ID.Width = 76;
     //
     // colProductName
     //
     this.colProductName.AppearanceHeader.Options.UseTextOptions = true;
     this.colProductName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colProductName.FieldName = "ProductName";
     this.colProductName.Name = "colProductName";
     this.colProductName.OptionsColumn.ReadOnly = true;
     this.colProductName.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colProductName.Visible = true;
     this.colProductName.VisibleIndex = 5;
     this.colProductName.Width = 89;
     //
     // colVat
     //
     this.colVat.AppearanceHeader.Options.UseTextOptions = true;
     this.colVat.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colVat.FieldName = "Vat";
     this.colVat.Name = "colVat";
     this.colVat.OptionsColumn.ReadOnly = true;
     this.colVat.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colVat.Visible = true;
     this.colVat.VisibleIndex = 6;
     this.colVat.Width = 38;
     //
     // colLev1
     //
     this.colLev1.AppearanceHeader.Options.UseTextOptions = true;
     this.colLev1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLev1.FieldName = "Lev1";
     this.colLev1.Name = "colLev1";
     this.colLev1.OptionsColumn.ReadOnly = true;
     this.colLev1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLev1.Visible = true;
     this.colLev1.VisibleIndex = 7;
     this.colLev1.Width = 45;
     //
     // colLev2
     //
     this.colLev2.AppearanceHeader.Options.UseTextOptions = true;
     this.colLev2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLev2.FieldName = "Lev2";
     this.colLev2.Name = "colLev2";
     this.colLev2.OptionsColumn.ReadOnly = true;
     this.colLev2.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLev2.Visible = true;
     this.colLev2.VisibleIndex = 8;
     this.colLev2.Width = 45;
     //
     // colLev3
     //
     this.colLev3.AppearanceHeader.Options.UseTextOptions = true;
     this.colLev3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLev3.FieldName = "Lev3";
     this.colLev3.Name = "colLev3";
     this.colLev3.OptionsColumn.ReadOnly = true;
     this.colLev3.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLev3.Visible = true;
     this.colLev3.VisibleIndex = 9;
     this.colLev3.Width = 45;
     //
     // colLev4
     //
     this.colLev4.AppearanceHeader.Options.UseTextOptions = true;
     this.colLev4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLev4.FieldName = "Lev4";
     this.colLev4.Name = "colLev4";
     this.colLev4.OptionsColumn.ReadOnly = true;
     this.colLev4.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLev4.Visible = true;
     this.colLev4.VisibleIndex = 10;
     this.colLev4.Width = 45;
     //
     // colUnit
     //
     this.colUnit.AppearanceHeader.Options.UseTextOptions = true;
     this.colUnit.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colUnit.FieldName = "Unit";
     this.colUnit.Name = "colUnit";
     this.colUnit.OptionsColumn.ReadOnly = true;
     this.colUnit.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colUnit.Visible = true;
     this.colUnit.VisibleIndex = 11;
     this.colUnit.Width = 41;
     //
     // colUnitConvert
     //
     this.colUnitConvert.AppearanceHeader.Options.UseTextOptions = true;
     this.colUnitConvert.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colUnitConvert.FieldName = "UnitConvert";
     this.colUnitConvert.Name = "colUnitConvert";
     this.colUnitConvert.OptionsColumn.ReadOnly = true;
     this.colUnitConvert.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colUnitConvert.Visible = true;
     this.colUnitConvert.VisibleIndex = 12;
     this.colUnitConvert.Width = 83;
     //
     // colCurrentQty
     //
     this.colCurrentQty.AppearanceHeader.Options.UseTextOptions = true;
     this.colCurrentQty.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCurrentQty.FieldName = "CurrentQty";
     this.colCurrentQty.Name = "colCurrentQty";
     this.colCurrentQty.OptionsColumn.ReadOnly = true;
     this.colCurrentQty.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colCurrentQty.Visible = true;
     this.colCurrentQty.VisibleIndex = 13;
     this.colCurrentQty.Width = 80;
     //
     // colQuantity
     //
     this.colQuantity.AppearanceHeader.Options.UseTextOptions = true;
     this.colQuantity.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colQuantity.FieldName = "Quantity";
     this.colQuantity.Name = "colQuantity";
     this.colQuantity.OptionsColumn.ReadOnly = true;
     this.colQuantity.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colQuantity.Visible = true;
     this.colQuantity.VisibleIndex = 14;
     this.colQuantity.Width = 64;
     //
     // colUnitPrice
     //
     this.colUnitPrice.AppearanceHeader.Options.UseTextOptions = true;
     this.colUnitPrice.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colUnitPrice.FieldName = "UnitPrice";
     this.colUnitPrice.Name = "colUnitPrice";
     this.colUnitPrice.OptionsColumn.ReadOnly = true;
     this.colUnitPrice.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colUnitPrice.Visible = true;
     this.colUnitPrice.VisibleIndex = 15;
     this.colUnitPrice.Width = 67;
     //
     // colAmount
     //
     this.colAmount.AppearanceHeader.Options.UseTextOptions = true;
     this.colAmount.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAmount.FieldName = "Amount";
     this.colAmount.Name = "colAmount";
     this.colAmount.OptionsColumn.ReadOnly = true;
     this.colAmount.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colAmount.Visible = true;
     this.colAmount.VisibleIndex = 16;
     this.colAmount.Width = 59;
     //
     // colQtyConvert
     //
     this.colQtyConvert.AppearanceHeader.Options.UseTextOptions = true;
     this.colQtyConvert.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colQtyConvert.FieldName = "QtyConvert";
     this.colQtyConvert.Name = "colQtyConvert";
     this.colQtyConvert.OptionsColumn.ReadOnly = true;
     this.colQtyConvert.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colQtyConvert.Visible = true;
     this.colQtyConvert.VisibleIndex = 17;
     this.colQtyConvert.Width = 82;
     //
     // colDiscount
     //
     this.colDiscount.AppearanceHeader.Options.UseTextOptions = true;
     this.colDiscount.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDiscount.FieldName = "Discount";
     this.colDiscount.Name = "colDiscount";
     this.colDiscount.OptionsColumn.ReadOnly = true;
     this.colDiscount.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDiscount.Visible = true;
     this.colDiscount.VisibleIndex = 18;
     this.colDiscount.Width = 63;
     //
     // colCharge
     //
     this.colCharge.AppearanceHeader.Options.UseTextOptions = true;
     this.colCharge.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCharge.FieldName = "Charge";
     this.colCharge.Name = "colCharge";
     this.colCharge.OptionsColumn.ReadOnly = true;
     this.colCharge.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colCharge.Visible = true;
     this.colCharge.VisibleIndex = 19;
     this.colCharge.Width = 57;
     //
     // colCost
     //
     this.colCost.AppearanceHeader.Options.UseTextOptions = true;
     this.colCost.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCost.FieldName = "Cost";
     this.colCost.Name = "colCost";
     this.colCost.OptionsColumn.ReadOnly = true;
     this.colCost.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colCost.Visible = true;
     this.colCost.VisibleIndex = 20;
     this.colCost.Width = 44;
     //
     // colProfit
     //
     this.colProfit.AppearanceHeader.Options.UseTextOptions = true;
     this.colProfit.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colProfit.FieldName = "Profit";
     this.colProfit.Name = "colProfit";
     this.colProfit.OptionsColumn.ReadOnly = true;
     this.colProfit.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colProfit.Visible = true;
     this.colProfit.VisibleIndex = 21;
     this.colProfit.Width = 48;
     //
     // colBatch
     //
     this.colBatch.AppearanceHeader.Options.UseTextOptions = true;
     this.colBatch.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBatch.FieldName = "Batch";
     this.colBatch.Name = "colBatch";
     this.colBatch.OptionsColumn.ReadOnly = true;
     this.colBatch.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colBatch.Visible = true;
     this.colBatch.VisibleIndex = 22;
     this.colBatch.Width = 49;
     //
     // colSerial
     //
     this.colSerial.AppearanceHeader.Options.UseTextOptions = true;
     this.colSerial.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSerial.FieldName = "Serial";
     this.colSerial.Name = "colSerial";
     this.colSerial.OptionsColumn.ReadOnly = true;
     this.colSerial.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSerial.Visible = true;
     this.colSerial.VisibleIndex = 23;
     this.colSerial.Width = 48;
     //
     // colChassyNo
     //
     this.colChassyNo.AppearanceHeader.Options.UseTextOptions = true;
     this.colChassyNo.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colChassyNo.FieldName = "ChassyNo";
     this.colChassyNo.Name = "colChassyNo";
     this.colChassyNo.OptionsColumn.ReadOnly = true;
     this.colChassyNo.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colChassyNo.Visible = true;
     this.colChassyNo.VisibleIndex = 24;
     this.colChassyNo.Width = 73;
     //
     // colIME
     //
     this.colIME.AppearanceHeader.Options.UseTextOptions = true;
     this.colIME.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colIME.FieldName = "IME";
     this.colIME.Name = "colIME";
     this.colIME.OptionsColumn.ReadOnly = true;
     this.colIME.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colIME.Visible = true;
     this.colIME.VisibleIndex = 25;
     this.colIME.Width = 40;
     //
     // colWidth
     //
     this.colWidth.AppearanceHeader.Options.UseTextOptions = true;
     this.colWidth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWidth.FieldName = "Width";
     this.colWidth.Name = "colWidth";
     this.colWidth.OptionsColumn.ReadOnly = true;
     this.colWidth.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colWidth.Visible = true;
     this.colWidth.VisibleIndex = 26;
     this.colWidth.Width = 50;
     //
     // colHeight
     //
     this.colHeight.AppearanceHeader.Options.UseTextOptions = true;
     this.colHeight.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colHeight.FieldName = "Height";
     this.colHeight.Name = "colHeight";
     this.colHeight.OptionsColumn.ReadOnly = true;
     this.colHeight.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colHeight.Visible = true;
     this.colHeight.VisibleIndex = 27;
     this.colHeight.Width = 53;
     //
     // colOrgin
     //
     this.colOrgin.AppearanceHeader.Options.UseTextOptions = true;
     this.colOrgin.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colOrgin.FieldName = "Orgin";
     this.colOrgin.Name = "colOrgin";
     this.colOrgin.OptionsColumn.ReadOnly = true;
     this.colOrgin.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colOrgin.Visible = true;
     this.colOrgin.VisibleIndex = 28;
     this.colOrgin.Width = 48;
     //
     // colSize
     //
     this.colSize.AppearanceHeader.Options.UseTextOptions = true;
     this.colSize.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSize.FieldName = "Size";
     this.colSize.Name = "colSize";
     this.colSize.OptionsColumn.ReadOnly = true;
     this.colSize.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSize.Visible = true;
     this.colSize.VisibleIndex = 29;
     this.colSize.Width = 41;
     //
     // colStoreID
     //
     this.colStoreID.AppearanceHeader.Options.UseTextOptions = true;
     this.colStoreID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colStoreID.FieldName = "StoreID";
     this.colStoreID.Name = "colStoreID";
     this.colStoreID.OptionsColumn.ReadOnly = true;
     this.colStoreID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colStoreID.Visible = true;
     this.colStoreID.VisibleIndex = 30;
     this.colStoreID.Width = 62;
     //
     // colDescription
     //
     this.colDescription.AppearanceHeader.Options.UseTextOptions = true;
     this.colDescription.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDescription.FieldName = "Description";
     this.colDescription.Name = "colDescription";
     this.colDescription.OptionsColumn.ReadOnly = true;
     this.colDescription.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDescription.Visible = true;
     this.colDescription.VisibleIndex = 31;
     //
     // colSorted
     //
     this.colSorted.AppearanceHeader.Options.UseTextOptions = true;
     this.colSorted.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSorted.FieldName = "Sorted";
     this.colSorted.Name = "colSorted";
     this.colSorted.OptionsColumn.ReadOnly = true;
     this.colSorted.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSorted.Visible = true;
     this.colSorted.VisibleIndex = 32;
     this.colSorted.Width = 54;
     //
     // colActive
     //
     this.colActive.AppearanceHeader.Options.UseTextOptions = true;
     this.colActive.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colActive.FieldName = "Active";
     this.colActive.Name = "colActive";
     this.colActive.OptionsColumn.ReadOnly = true;
     this.colActive.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colActive.Visible = true;
     this.colActive.VisibleIndex = 33;
     this.colActive.Width = 52;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1102, 390);
     this.layoutControlGroup1.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1102, 366);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cbChonNgay;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(109, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Tùy Chọn:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(50, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.dtTu;
     this.layoutControlItem3.CustomizationFormText = "Từ";
     this.layoutControlItem3.Location = new System.Drawing.Point(150, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Từ";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(20, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.dtDen;
     this.layoutControlItem4.CustomizationFormText = "Đến";
     this.layoutControlItem4.Location = new System.Drawing.Point(300, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Đến";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(20, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(450, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(652, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // sTOCK_OUTWARD_DETAILTableAdapter
     //
     this.sTOCK_OUTWARD_DETAILTableAdapter.ClearBeforeFill = true;
     //
     // bbiExportExcel
     //
     this.bbiExportExcel.Caption = "Xuất Excel";
     this.bbiExportExcel.Id = 12;
     this.bbiExportExcel.ImageIndex = 52;
     this.bbiExportExcel.Name = "bbiExportExcel";
     this.bbiExportExcel.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiExportExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiExportExcel_ItemClick);
     //
     // frmTestList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1102, 416);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmTestList";
     this.Text = "Form1";
     this.Load += new System.EventHandler(this.frmTestList_Load);
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sTOCKOUTWARDDETAILBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsTEST)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     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.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.comboBoxEdit3 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.checkBox2 = new System.Windows.Forms.CheckBox();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.comboBoxEdit2 = new DevExpress.XtraEditors.ComboBoxEdit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // comboBoxEdit1
     //
     this.comboBoxEdit1.Location = new System.Drawing.Point(129, 47);
     this.comboBoxEdit1.Name = "comboBoxEdit1";
     this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEdit1.Properties.Items.AddRange(new object[] {
     "0 Nm : Full torque on all gears",
     "285 Nm : 4spd 9-3 transmission",
     "295 Nm : 4spd 9-3 Aero transmission",
     "305 Nm : 4spd 9-5 transmission",
     "325 Nm : 4spd 9-5 Aero transmission",
     "345 Nm : 5spd 9-5 transmission"});
     this.comboBoxEdit1.Size = new System.Drawing.Size(314, 20);
     this.comboBoxEdit1.TabIndex = 0;
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(393, 217);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text = "Ok";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton2.Location = new System.Drawing.Point(312, 217);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 2;
     this.simpleButton2.Text = "Cancel";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(21, 50);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(84, 13);
     this.labelControl1.TabIndex = 3;
     this.labelControl1.Text = "Select TCM limiter";
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.Location = new System.Drawing.Point(129, 20);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(163, 17);
     this.checkBox1.TabIndex = 4;
     this.checkBox1.Text = "Enable firmware modification";
     this.checkBox1.UseVisualStyleBackColor = true;
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.checkBox1);
     this.groupBox1.Controls.Add(this.labelControl1);
     this.groupBox1.Controls.Add(this.comboBoxEdit1);
     this.groupBox1.Location = new System.Drawing.Point(12, 3);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(456, 90);
     this.groupBox1.TabIndex = 5;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "TCM MOD v1 TCM threshold based solution";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.labelControl3);
     this.groupBox2.Controls.Add(this.comboBoxEdit3);
     this.groupBox2.Controls.Add(this.checkBox2);
     this.groupBox2.Controls.Add(this.labelControl2);
     this.groupBox2.Controls.Add(this.comboBoxEdit2);
     this.groupBox2.Location = new System.Drawing.Point(12, 99);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(456, 111);
     this.groupBox2.TabIndex = 6;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "TCM MOD v2 Customized TCM limit depending on active gear";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(21, 76);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(84, 13);
     this.labelControl3.TabIndex = 9;
     this.labelControl3.Text = "Select TCM limiter";
     //
     // comboBoxEdit3
     //
     this.comboBoxEdit3.Location = new System.Drawing.Point(129, 73);
     this.comboBoxEdit3.Name = "comboBoxEdit3";
     this.comboBoxEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEdit3.Properties.Items.AddRange(new object[] {
     "279 Nm : highest gears 480 Nm",
     "287 Nm : highest gears 497 Nm",
     "300 Nm : highest gears 450 Nm",
     "319 Nm : highest gears 499 Nm",
     "334 Nm : highest gears 484 Nm",
     "350 Nm : highest gears 485 Nm",
     "365 Nm : highest gears 470 Nm",
     "382 Nm : highest gears 487 Nm",
     "398 Nm : highest gears 488 Nm"});
     this.comboBoxEdit3.Size = new System.Drawing.Size(314, 20);
     this.comboBoxEdit3.TabIndex = 8;
     //
     // checkBox2
     //
     this.checkBox2.AutoSize = true;
     this.checkBox2.Location = new System.Drawing.Point(129, 20);
     this.checkBox2.Name = "checkBox2";
     this.checkBox2.Size = new System.Drawing.Size(163, 17);
     this.checkBox2.TabIndex = 7;
     this.checkBox2.Text = "Enable firmware modification";
     this.checkBox2.UseVisualStyleBackColor = true;
     this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(21, 50);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(68, 13);
     this.labelControl2.TabIndex = 6;
     this.labelControl2.Text = "Gear selection";
     //
     // comboBoxEdit2
     //
     this.comboBoxEdit2.Location = new System.Drawing.Point(129, 47);
     this.comboBoxEdit2.Name = "comboBoxEdit2";
     this.comboBoxEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEdit2.Properties.Items.AddRange(new object[] {
     "Reverse",
     "Neutral",
     "Gear 1",
     "Gear 2",
     "Gear 3",
     "Gear 4",
     "Gear 5"});
     this.comboBoxEdit2.Size = new System.Drawing.Size(314, 20);
     this.comboBoxEdit2.TabIndex = 5;
     //
     // frmTcmLimit
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.simpleButton2;
     this.ClientSize = new System.Drawing.Size(480, 252);
     this.ControlBox = false;
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.simpleButton1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "frmTcmLimit";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "TCM Limiter Modification";
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmProducts));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtrabarGeneralinformation = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.txtfactor = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuompurchase = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuomsize = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuomsale = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbValueMethod = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtAvgRate = new DevExpress.XtraEditors.TextEdit();
     this.txtToleranceDay = new DevExpress.XtraEditors.TextEdit();
     this.txtLoadTime = new DevExpress.XtraEditors.TextEdit();
     this.txtPurchaseRate = new DevExpress.XtraEditors.TextEdit();
     this.txtSpecialRate = new DevExpress.XtraEditors.TextEdit();
     this.txtCostRate = new DevExpress.XtraEditors.TextEdit();
     this.txtTransit = new DevExpress.XtraEditors.TextEdit();
     this.txtTarget = new DevExpress.XtraEditors.TextEdit();
     this.txtNetBalance = new DevExpress.XtraEditors.TextEdit();
     this.txtBalanceBonus = new DevExpress.XtraEditors.TextEdit();
     this.txtBalanceStock = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxQuantityDays = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxQuantityPCustomer = new DevExpress.XtraEditors.TextEdit();
     this.txtPackInBox = new DevExpress.XtraEditors.TextEdit();
     this.txtInventoryDays = new DevExpress.XtraEditors.TextEdit();
     this.txtMinFlatRate = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxFlatRate = new DevExpress.XtraEditors.TextEdit();
     this.cmbSaleTaxCalculation = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtSaleTaxVale = new DevExpress.XtraEditors.TextEdit();
     this.txtSaleTaxPer = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxSalesDisc = new DevExpress.XtraEditors.TextEdit();
     this.txtPurchaseDiscountPer = new DevExpress.XtraEditors.TextEdit();
     this.txtRetailPrice = new DevExpress.XtraEditors.TextEdit();
     this.chkwolallow = new DevExpress.XtraEditors.CheckEdit();
     this.chkAllowPer = new DevExpress.XtraEditors.CheckEdit();
     this.chkAutoBonus = new DevExpress.XtraEditors.CheckEdit();
     this.chkSaleBase = new DevExpress.XtraEditors.CheckEdit();
     this.chkSaleTaxReg = new DevExpress.XtraEditors.CheckEdit();
     this.chkNonPharma = new DevExpress.XtraEditors.CheckEdit();
     this.chkExcempted = new DevExpress.XtraEditors.CheckEdit();
     this.chkUseFlatRate = new DevExpress.XtraEditors.CheckEdit();
     this.chkNorCotics = new DevExpress.XtraEditors.CheckEdit();
     this.chkHideinTabs = new DevExpress.XtraEditors.CheckEdit();
     this.chkAllowMaxQtyDays = new DevExpress.XtraEditors.CheckEdit();
     this.chkProductDiscontinue = new DevExpress.XtraEditors.CheckEdit();
     this.txtTradePrice = new DevExpress.XtraEditors.TextEdit();
     this.txtSaleRate = new DevExpress.XtraEditors.TextEdit();
     this.txtPackInCarton = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl50 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl52 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl53 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl37 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl38 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl44 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl43 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl41 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl42 = new DevExpress.XtraEditors.LabelControl();
     this.XtrabarBonus = new DevExpress.XtraTab.XtraTabPage();
     this.datagridBonus = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.datagridProductAllocation = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.txtMaxLimit = new DevExpress.XtraEditors.TextEdit();
     this.txtMinLimit = new DevExpress.XtraEditors.TextEdit();
     this.txtBarCode = new DevExpress.XtraEditors.TextEdit();
     this.txtShelfCode = new DevExpress.XtraEditors.TextEdit();
     this.grdPresevasionStandard = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.simpleButton8 = new DevExpress.XtraEditors.SimpleButton();
     this.txtClaimPartnerID = new System.Windows.Forms.MaskedTextBox();
     this.txtClaimPartnerName = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
     this.txtBussinessPartnerid = new System.Windows.Forms.MaskedTextBox();
     this.businessPartnerName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl40 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl48 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl46 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl47 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl54 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl55 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.dgFileAttachments = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.Productid = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.cmbProductCategory = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtShortName = new DevExpress.XtraEditors.TextEdit();
     this.txtArtical = new DevExpress.XtraEditors.TextEdit();
     this.txtProductName = new DevExpress.XtraEditors.TextEdit();
     this.cmbSkuType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbGeneralName = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbProtoType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.btnPickList = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtProductId = new System.Windows.Forms.MaskedTextBox();
     this.txtPack = new DevExpress.XtraEditors.TextEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl49 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl39 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.txtGroupSeq = new DevExpress.XtraEditors.TextEdit();
     this.txtGroupName = new DevExpress.XtraEditors.TextEdit();
     this.txtGroupid = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.txtmanualgroup = new DevExpress.XtraEditors.TextEdit();
     this.labelControl57 = new DevExpress.XtraEditors.LabelControl();
     this.txtdateto = new System.Windows.Forms.MaskedTextBox();
     this.txtdatefrom = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl56 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl51 = new DevExpress.XtraEditors.LabelControl();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.chkCompanyDiscount = new DevExpress.XtraEditors.CheckEdit();
     this.txtCompanySeq = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl35 = new DevExpress.XtraEditors.LabelControl();
     this.txtReportCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.txtReportCompanyid = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.txtCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.txtCompanyid = new System.Windows.Forms.MaskedTextBox();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl36 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtrabarGeneralinformation.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtfactor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuompurchase.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsize.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsale.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbValueMethod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAvgRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtToleranceDay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoadTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSpecialRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCostRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTransit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTarget.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNetBalance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceBonus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceStock.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityPCustomer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInventoryDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSaleTaxCalculation.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxVale.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxSalesDisc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseDiscountPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRetailPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkwolallow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAutoBonus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleBase.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleTaxReg.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNonPharma.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkExcempted.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkUseFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNorCotics.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkHideinTabs.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowMaxQtyDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkProductDiscontinue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTradePrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInCarton.Properties)).BeginInit();
     this.XtrabarBonus.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.datagridBonus)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.datagridProductAllocation)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxLimit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinLimit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBarCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShelfCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPresevasionStandard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClaimPartnerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.businessPartnerName.Properties)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgFileAttachments)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProductCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShortName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtArtical.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtProductName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSkuType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbGeneralName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProtoType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPack.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupSeq.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmanualgroup.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkCompanyDiscount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanySeq.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReportCompanyName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyName.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.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.xtraTabControl1.Location = new System.Drawing.Point(3, 171);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtrabarGeneralinformation;
     this.xtraTabControl1.Size = new System.Drawing.Size(701, 254);
     this.xtraTabControl1.TabIndex = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtrabarGeneralinformation,
     this.XtrabarBonus,
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     this.xtraTabControl1.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.xtraTabControl1_PreviewKeyDown);
     //
     // xtrabarGeneralinformation
     //
     this.xtrabarGeneralinformation.Controls.Add(this.panelControl1);
     this.xtrabarGeneralinformation.Name = "xtrabarGeneralinformation";
     this.xtrabarGeneralinformation.Size = new System.Drawing.Size(695, 226);
     this.xtrabarGeneralinformation.Text = "General Information";
     //
     // panelControl1
     //
     this.panelControl1.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.panelControl1.Appearance.BackColor = System.Drawing.Color.White;
     this.panelControl1.Appearance.Options.UseBackColor = true;
     this.panelControl1.Controls.Add(this.txtfactor);
     this.panelControl1.Controls.Add(this.txtuompurchase);
     this.panelControl1.Controls.Add(this.txtuomsize);
     this.panelControl1.Controls.Add(this.txtuomsale);
     this.panelControl1.Controls.Add(this.cmbValueMethod);
     this.panelControl1.Controls.Add(this.txtAvgRate);
     this.panelControl1.Controls.Add(this.txtToleranceDay);
     this.panelControl1.Controls.Add(this.txtLoadTime);
     this.panelControl1.Controls.Add(this.txtPurchaseRate);
     this.panelControl1.Controls.Add(this.txtSpecialRate);
     this.panelControl1.Controls.Add(this.txtCostRate);
     this.panelControl1.Controls.Add(this.txtTransit);
     this.panelControl1.Controls.Add(this.txtTarget);
     this.panelControl1.Controls.Add(this.txtNetBalance);
     this.panelControl1.Controls.Add(this.txtBalanceBonus);
     this.panelControl1.Controls.Add(this.txtBalanceStock);
     this.panelControl1.Controls.Add(this.txtMaxQuantityDays);
     this.panelControl1.Controls.Add(this.txtMaxQuantityPCustomer);
     this.panelControl1.Controls.Add(this.txtPackInBox);
     this.panelControl1.Controls.Add(this.txtInventoryDays);
     this.panelControl1.Controls.Add(this.txtMinFlatRate);
     this.panelControl1.Controls.Add(this.txtMaxFlatRate);
     this.panelControl1.Controls.Add(this.cmbSaleTaxCalculation);
     this.panelControl1.Controls.Add(this.txtSaleTaxVale);
     this.panelControl1.Controls.Add(this.txtSaleTaxPer);
     this.panelControl1.Controls.Add(this.txtMaxSalesDisc);
     this.panelControl1.Controls.Add(this.txtPurchaseDiscountPer);
     this.panelControl1.Controls.Add(this.txtRetailPrice);
     this.panelControl1.Controls.Add(this.chkwolallow);
     this.panelControl1.Controls.Add(this.chkAllowPer);
     this.panelControl1.Controls.Add(this.chkAutoBonus);
     this.panelControl1.Controls.Add(this.chkSaleBase);
     this.panelControl1.Controls.Add(this.chkSaleTaxReg);
     this.panelControl1.Controls.Add(this.chkNonPharma);
     this.panelControl1.Controls.Add(this.chkExcempted);
     this.panelControl1.Controls.Add(this.chkUseFlatRate);
     this.panelControl1.Controls.Add(this.chkNorCotics);
     this.panelControl1.Controls.Add(this.chkHideinTabs);
     this.panelControl1.Controls.Add(this.chkAllowMaxQtyDays);
     this.panelControl1.Controls.Add(this.chkProductDiscontinue);
     this.panelControl1.Controls.Add(this.txtTradePrice);
     this.panelControl1.Controls.Add(this.txtSaleRate);
     this.panelControl1.Controls.Add(this.txtPackInCarton);
     this.panelControl1.Controls.Add(this.labelControl9);
     this.panelControl1.Controls.Add(this.labelControl18);
     this.panelControl1.Controls.Add(this.labelControl17);
     this.panelControl1.Controls.Add(this.labelControl16);
     this.panelControl1.Controls.Add(this.labelControl15);
     this.panelControl1.Controls.Add(this.labelControl13);
     this.panelControl1.Controls.Add(this.labelControl50);
     this.panelControl1.Controls.Add(this.labelControl12);
     this.panelControl1.Controls.Add(this.labelControl11);
     this.panelControl1.Controls.Add(this.labelControl19);
     this.panelControl1.Controls.Add(this.labelControl20);
     this.panelControl1.Controls.Add(this.labelControl25);
     this.panelControl1.Controls.Add(this.labelControl24);
     this.panelControl1.Controls.Add(this.labelControl23);
     this.panelControl1.Controls.Add(this.labelControl22);
     this.panelControl1.Controls.Add(this.labelControl21);
     this.panelControl1.Controls.Add(this.labelControl26);
     this.panelControl1.Controls.Add(this.labelControl52);
     this.panelControl1.Controls.Add(this.labelControl53);
     this.panelControl1.Controls.Add(this.labelControl27);
     this.panelControl1.Controls.Add(this.labelControl28);
     this.panelControl1.Controls.Add(this.labelControl29);
     this.panelControl1.Controls.Add(this.labelControl30);
     this.panelControl1.Controls.Add(this.labelControl31);
     this.panelControl1.Controls.Add(this.labelControl32);
     this.panelControl1.Controls.Add(this.labelControl37);
     this.panelControl1.Controls.Add(this.labelControl38);
     this.panelControl1.Controls.Add(this.labelControl44);
     this.panelControl1.Controls.Add(this.labelControl43);
     this.panelControl1.Controls.Add(this.labelControl41);
     this.panelControl1.Controls.Add(this.labelControl42);
     this.panelControl1.Location = new System.Drawing.Point(-1, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(700, 226);
     this.panelControl1.TabIndex = 180;
     //
     // txtfactor
     //
     this.txtfactor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtfactor.Location = new System.Drawing.Point(449, 161);
     this.txtfactor.Name = "txtfactor";
     this.txtfactor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtfactor.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtfactor.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtfactor.Size = new System.Drawing.Size(82, 20);
     this.txtfactor.TabIndex = 124270;
     this.txtfactor.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtfactor_PreviewKeyDown);
     //
     // txtuompurchase
     //
     this.txtuompurchase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuompurchase.Location = new System.Drawing.Point(449, 142);
     this.txtuompurchase.Name = "txtuompurchase";
     this.txtuompurchase.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuompurchase.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuompurchase.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuompurchase.Size = new System.Drawing.Size(82, 20);
     this.txtuompurchase.TabIndex = 124262;
     this.txtuompurchase.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuompurchase_PreviewKeyDown);
     //
     // txtuomsize
     //
     this.txtuomsize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuomsize.Location = new System.Drawing.Point(449, 123);
     this.txtuomsize.Name = "txtuomsize";
     this.txtuomsize.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuomsize.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuomsize.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuomsize.Size = new System.Drawing.Size(82, 20);
     this.txtuomsize.TabIndex = 124258;
     this.txtuomsize.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuomsize_PreviewKeyDown);
     //
     // txtuomsale
     //
     this.txtuomsale.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuomsale.Location = new System.Drawing.Point(449, 104);
     this.txtuomsale.Name = "txtuomsale";
     this.txtuomsale.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuomsale.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuomsale.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuomsale.Size = new System.Drawing.Size(82, 20);
     this.txtuomsale.TabIndex = 124260;
     this.txtuomsale.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuomsale_PreviewKeyDown);
     //
     // cmbValueMethod
     //
     this.cmbValueMethod.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbValueMethod.Location = new System.Drawing.Point(449, 85);
     this.cmbValueMethod.Name = "cmbValueMethod";
     this.cmbValueMethod.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbValueMethod.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbValueMethod.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbValueMethod.Size = new System.Drawing.Size(82, 20);
     this.cmbValueMethod.TabIndex = 37;
     this.cmbValueMethod.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbValueMethod_PreviewKeyDown);
     //
     // txtAvgRate
     //
     this.txtAvgRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtAvgRate.Location = new System.Drawing.Point(449, 66);
     this.txtAvgRate.Name = "txtAvgRate";
     this.txtAvgRate.Size = new System.Drawing.Size(82, 20);
     this.txtAvgRate.TabIndex = 36;
     this.txtAvgRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtAvgRate_PreviewKeyDown);
     //
     // txtToleranceDay
     //
     this.txtToleranceDay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtToleranceDay.Location = new System.Drawing.Point(449, 47);
     this.txtToleranceDay.Name = "txtToleranceDay";
     this.txtToleranceDay.Size = new System.Drawing.Size(82, 20);
     this.txtToleranceDay.TabIndex = 35;
     this.txtToleranceDay.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtToleranceDay_PreviewKeyDown);
     //
     // txtLoadTime
     //
     this.txtLoadTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtLoadTime.Location = new System.Drawing.Point(449, 28);
     this.txtLoadTime.Name = "txtLoadTime";
     this.txtLoadTime.Size = new System.Drawing.Size(82, 20);
     this.txtLoadTime.TabIndex = 34;
     this.txtLoadTime.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtLoadTime_PreviewKeyDown);
     //
     // txtPurchaseRate
     //
     this.txtPurchaseRate.EditValue = "0.00";
     this.txtPurchaseRate.Location = new System.Drawing.Point(285, 199);
     this.txtPurchaseRate.Name = "txtPurchaseRate";
     this.txtPurchaseRate.Size = new System.Drawing.Size(82, 20);
     this.txtPurchaseRate.TabIndex = 32;
     this.txtPurchaseRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPurchaseRate_PreviewKeyDown);
     //
     // txtSpecialRate
     //
     this.txtSpecialRate.EditValue = "0.00";
     this.txtSpecialRate.Location = new System.Drawing.Point(285, 180);
     this.txtSpecialRate.Name = "txtSpecialRate";
     this.txtSpecialRate.Size = new System.Drawing.Size(82, 20);
     this.txtSpecialRate.TabIndex = 31;
     this.txtSpecialRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSpecialRate_PreviewKeyDown);
     //
     // txtCostRate
     //
     this.txtCostRate.EditValue = "0.00";
     this.txtCostRate.Location = new System.Drawing.Point(285, 161);
     this.txtCostRate.Name = "txtCostRate";
     this.txtCostRate.Size = new System.Drawing.Size(82, 20);
     this.txtCostRate.TabIndex = 30;
     this.txtCostRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCostRate_PreviewKeyDown);
     //
     // txtTransit
     //
     this.txtTransit.EditValue = "0.00";
     this.txtTransit.Location = new System.Drawing.Point(285, 142);
     this.txtTransit.Name = "txtTransit";
     this.txtTransit.Size = new System.Drawing.Size(82, 20);
     this.txtTransit.TabIndex = 124268;
     this.txtTransit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTransit_PreviewKeyDown);
     //
     // txtTarget
     //
     this.txtTarget.EditValue = "0.00";
     this.txtTarget.Location = new System.Drawing.Point(285, 123);
     this.txtTarget.Name = "txtTarget";
     this.txtTarget.Size = new System.Drawing.Size(82, 20);
     this.txtTarget.TabIndex = 124266;
     this.txtTarget.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTarget_PreviewKeyDown);
     //
     // txtNetBalance
     //
     this.txtNetBalance.EditValue = "0.00";
     this.txtNetBalance.Location = new System.Drawing.Point(285, 104);
     this.txtNetBalance.Name = "txtNetBalance";
     this.txtNetBalance.Size = new System.Drawing.Size(82, 20);
     this.txtNetBalance.TabIndex = 29;
     this.txtNetBalance.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtNetBalance_PreviewKeyDown);
     //
     // txtBalanceBonus
     //
     this.txtBalanceBonus.EditValue = "";
     this.txtBalanceBonus.Location = new System.Drawing.Point(285, 85);
     this.txtBalanceBonus.Name = "txtBalanceBonus";
     this.txtBalanceBonus.Size = new System.Drawing.Size(82, 20);
     this.txtBalanceBonus.TabIndex = 28;
     this.txtBalanceBonus.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBalanceBonus_PreviewKeyDown);
     //
     // txtBalanceStock
     //
     this.txtBalanceStock.Location = new System.Drawing.Point(285, 66);
     this.txtBalanceStock.Name = "txtBalanceStock";
     this.txtBalanceStock.Size = new System.Drawing.Size(82, 20);
     this.txtBalanceStock.TabIndex = 27;
     this.txtBalanceStock.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBalanceStock_PreviewKeyDown);
     //
     // txtMaxQuantityDays
     //
     this.txtMaxQuantityDays.Location = new System.Drawing.Point(285, 47);
     this.txtMaxQuantityDays.Name = "txtMaxQuantityDays";
     this.txtMaxQuantityDays.Size = new System.Drawing.Size(82, 20);
     this.txtMaxQuantityDays.TabIndex = 26;
     this.txtMaxQuantityDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxQuantityDays_PreviewKeyDown);
     //
     // txtMaxQuantityPCustomer
     //
     this.txtMaxQuantityPCustomer.Location = new System.Drawing.Point(285, 28);
     this.txtMaxQuantityPCustomer.Name = "txtMaxQuantityPCustomer";
     this.txtMaxQuantityPCustomer.Size = new System.Drawing.Size(82, 20);
     this.txtMaxQuantityPCustomer.TabIndex = 25;
     this.txtMaxQuantityPCustomer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxQuantityPCustomer_PreviewKeyDown);
     //
     // txtPackInBox
     //
     this.txtPackInBox.Location = new System.Drawing.Point(102, 199);
     this.txtPackInBox.Name = "txtPackInBox";
     this.txtPackInBox.Size = new System.Drawing.Size(82, 20);
     this.txtPackInBox.TabIndex = 23;
     this.txtPackInBox.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPackInBox_PreviewKeyDown);
     //
     // txtInventoryDays
     //
     this.txtInventoryDays.EditValue = "0.00";
     this.txtInventoryDays.Location = new System.Drawing.Point(102, 180);
     this.txtInventoryDays.Name = "txtInventoryDays";
     this.txtInventoryDays.Size = new System.Drawing.Size(82, 20);
     this.txtInventoryDays.TabIndex = 22;
     this.txtInventoryDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtInventoryDays_PreviewKeyDown);
     //
     // txtMinFlatRate
     //
     this.txtMinFlatRate.EditValue = "0.00";
     this.txtMinFlatRate.Location = new System.Drawing.Point(102, 161);
     this.txtMinFlatRate.Name = "txtMinFlatRate";
     this.txtMinFlatRate.Size = new System.Drawing.Size(82, 20);
     this.txtMinFlatRate.TabIndex = 21;
     this.txtMinFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMinFlatRate_PreviewKeyDown);
     //
     // txtMaxFlatRate
     //
     this.txtMaxFlatRate.EditValue = "0.00";
     this.txtMaxFlatRate.Location = new System.Drawing.Point(102, 142);
     this.txtMaxFlatRate.Name = "txtMaxFlatRate";
     this.txtMaxFlatRate.Size = new System.Drawing.Size(82, 20);
     this.txtMaxFlatRate.TabIndex = 20;
     this.txtMaxFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxFlatRate_PreviewKeyDown);
     //
     // cmbSaleTaxCalculation
     //
     this.cmbSaleTaxCalculation.Location = new System.Drawing.Point(102, 123);
     this.cmbSaleTaxCalculation.Name = "cmbSaleTaxCalculation";
     this.cmbSaleTaxCalculation.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbSaleTaxCalculation.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbSaleTaxCalculation.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbSaleTaxCalculation.Size = new System.Drawing.Size(82, 20);
     this.cmbSaleTaxCalculation.TabIndex = 59;
     //
     // txtSaleTaxVale
     //
     this.txtSaleTaxVale.EditValue = "0.00";
     this.txtSaleTaxVale.Location = new System.Drawing.Point(102, 104);
     this.txtSaleTaxVale.Name = "txtSaleTaxVale";
     this.txtSaleTaxVale.Size = new System.Drawing.Size(82, 20);
     this.txtSaleTaxVale.TabIndex = 19;
     this.txtSaleTaxVale.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleTaxVale_PreviewKeyDown);
     //
     // txtSaleTaxPer
     //
     this.txtSaleTaxPer.EditValue = "0.00";
     this.txtSaleTaxPer.Location = new System.Drawing.Point(102, 85);
     this.txtSaleTaxPer.Name = "txtSaleTaxPer";
     this.txtSaleTaxPer.Size = new System.Drawing.Size(82, 20);
     this.txtSaleTaxPer.TabIndex = 18;
     this.txtSaleTaxPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleTaxPer_PreviewKeyDown);
     //
     // txtMaxSalesDisc
     //
     this.txtMaxSalesDisc.EditValue = "0.00";
     this.txtMaxSalesDisc.Location = new System.Drawing.Point(102, 66);
     this.txtMaxSalesDisc.Name = "txtMaxSalesDisc";
     this.txtMaxSalesDisc.Size = new System.Drawing.Size(82, 20);
     this.txtMaxSalesDisc.TabIndex = 17;
     this.txtMaxSalesDisc.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxSalesDisc_PreviewKeyDown);
     //
     // txtPurchaseDiscountPer
     //
     this.txtPurchaseDiscountPer.EditValue = "0.0000";
     this.txtPurchaseDiscountPer.Location = new System.Drawing.Point(102, 47);
     this.txtPurchaseDiscountPer.Name = "txtPurchaseDiscountPer";
     this.txtPurchaseDiscountPer.Size = new System.Drawing.Size(82, 20);
     this.txtPurchaseDiscountPer.TabIndex = 16;
     this.txtPurchaseDiscountPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPurchaseDiscountPer_PreviewKeyDown);
     //
     // txtRetailPrice
     //
     this.txtRetailPrice.EditValue = "0.00";
     this.txtRetailPrice.Location = new System.Drawing.Point(102, 28);
     this.txtRetailPrice.Name = "txtRetailPrice";
     this.txtRetailPrice.Size = new System.Drawing.Size(82, 20);
     this.txtRetailPrice.TabIndex = 15;
     this.txtRetailPrice.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtRetailPrice_PreviewKeyDown);
     //
     // chkwolallow
     //
     this.chkwolallow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkwolallow.EnterMoveNextControl = true;
     this.chkwolallow.Location = new System.Drawing.Point(545, 179);
     this.chkwolallow.Name = "chkwolallow";
     this.chkwolallow.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkwolallow.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkwolallow.Properties.Appearance.Options.UseFont = true;
     this.chkwolallow.Properties.Appearance.Options.UseForeColor = true;
     this.chkwolallow.Properties.Caption = "With Out Lic Allow";
     this.chkwolallow.Size = new System.Drawing.Size(136, 19);
     this.chkwolallow.TabIndex = 50;
     this.chkwolallow.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkwolallow_PreviewKeyDown);
     //
     // chkAllowPer
     //
     this.chkAllowPer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAllowPer.Location = new System.Drawing.Point(545, 145);
     this.chkAllowPer.Name = "chkAllowPer";
     this.chkAllowPer.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAllowPer.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAllowPer.Properties.Appearance.Options.UseFont = true;
     this.chkAllowPer.Properties.Appearance.Options.UseForeColor = true;
     this.chkAllowPer.Properties.Caption = "Allow 100%";
     this.chkAllowPer.Size = new System.Drawing.Size(136, 19);
     this.chkAllowPer.TabIndex = 48;
     this.chkAllowPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAllowPer_PreviewKeyDown);
     //
     // chkAutoBonus
     //
     this.chkAutoBonus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAutoBonus.Location = new System.Drawing.Point(545, 162);
     this.chkAutoBonus.Name = "chkAutoBonus";
     this.chkAutoBonus.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAutoBonus.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAutoBonus.Properties.Appearance.Options.UseFont = true;
     this.chkAutoBonus.Properties.Appearance.Options.UseForeColor = true;
     this.chkAutoBonus.Properties.Caption = "Auto Bonus";
     this.chkAutoBonus.Size = new System.Drawing.Size(136, 19);
     this.chkAutoBonus.TabIndex = 49;
     this.chkAutoBonus.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAutoBonus_PreviewKeyDown);
     //
     // chkSaleBase
     //
     this.chkSaleBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkSaleBase.Location = new System.Drawing.Point(545, 128);
     this.chkSaleBase.Name = "chkSaleBase";
     this.chkSaleBase.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkSaleBase.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkSaleBase.Properties.Appearance.Options.UseFont = true;
     this.chkSaleBase.Properties.Appearance.Options.UseForeColor = true;
     this.chkSaleBase.Properties.Caption = "Sale Base";
     this.chkSaleBase.Size = new System.Drawing.Size(136, 19);
     this.chkSaleBase.TabIndex = 47;
     this.chkSaleBase.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkSaleBase_PreviewKeyDown);
     //
     // chkSaleTaxReg
     //
     this.chkSaleTaxReg.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkSaleTaxReg.Location = new System.Drawing.Point(545, 93);
     this.chkSaleTaxReg.Name = "chkSaleTaxReg";
     this.chkSaleTaxReg.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkSaleTaxReg.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkSaleTaxReg.Properties.Appearance.Options.UseFont = true;
     this.chkSaleTaxReg.Properties.Appearance.Options.UseForeColor = true;
     this.chkSaleTaxReg.Properties.Caption = "S.Tax Reg";
     this.chkSaleTaxReg.Size = new System.Drawing.Size(111, 19);
     this.chkSaleTaxReg.TabIndex = 44;
     this.chkSaleTaxReg.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkSaleTaxReg_PreviewKeyDown);
     //
     // chkNonPharma
     //
     this.chkNonPharma.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkNonPharma.Location = new System.Drawing.Point(545, 110);
     this.chkNonPharma.Name = "chkNonPharma";
     this.chkNonPharma.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkNonPharma.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkNonPharma.Properties.Appearance.Options.UseFont = true;
     this.chkNonPharma.Properties.Appearance.Options.UseForeColor = true;
     this.chkNonPharma.Properties.Caption = "Non Pharma";
     this.chkNonPharma.Size = new System.Drawing.Size(89, 19);
     this.chkNonPharma.TabIndex = 45;
     this.chkNonPharma.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkNonPharma_PreviewKeyDown);
     //
     // chkExcempted
     //
     this.chkExcempted.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkExcempted.Location = new System.Drawing.Point(545, 76);
     this.chkExcempted.Name = "chkExcempted";
     this.chkExcempted.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkExcempted.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkExcempted.Properties.Appearance.Options.UseFont = true;
     this.chkExcempted.Properties.Appearance.Options.UseForeColor = true;
     this.chkExcempted.Properties.Caption = "Tax Excempted";
     this.chkExcempted.Size = new System.Drawing.Size(111, 19);
     this.chkExcempted.TabIndex = 43;
     this.chkExcempted.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkExcempted_PreviewKeyDown);
     //
     // chkUseFlatRate
     //
     this.chkUseFlatRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkUseFlatRate.Location = new System.Drawing.Point(545, 7);
     this.chkUseFlatRate.Name = "chkUseFlatRate";
     this.chkUseFlatRate.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkUseFlatRate.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkUseFlatRate.Properties.Appearance.Options.UseFont = true;
     this.chkUseFlatRate.Properties.Appearance.Options.UseForeColor = true;
     this.chkUseFlatRate.Properties.Caption = "Use Flat Rate";
     this.chkUseFlatRate.Size = new System.Drawing.Size(139, 19);
     this.chkUseFlatRate.TabIndex = 39;
     this.chkUseFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkUseFlatRate_PreviewKeyDown);
     //
     // chkNorCotics
     //
     this.chkNorCotics.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkNorCotics.Location = new System.Drawing.Point(545, 24);
     this.chkNorCotics.Name = "chkNorCotics";
     this.chkNorCotics.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkNorCotics.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkNorCotics.Properties.Appearance.Options.UseFont = true;
     this.chkNorCotics.Properties.Appearance.Options.UseForeColor = true;
     this.chkNorCotics.Properties.Caption = "Norcotics";
     this.chkNorCotics.Size = new System.Drawing.Size(75, 19);
     this.chkNorCotics.TabIndex = 40;
     this.chkNorCotics.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkNorCotics_PreviewKeyDown);
     //
     // chkHideinTabs
     //
     this.chkHideinTabs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkHideinTabs.Location = new System.Drawing.Point(545, 59);
     this.chkHideinTabs.Name = "chkHideinTabs";
     this.chkHideinTabs.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkHideinTabs.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkHideinTabs.Properties.Appearance.Options.UseFont = true;
     this.chkHideinTabs.Properties.Appearance.Options.UseForeColor = true;
     this.chkHideinTabs.Properties.Caption = "Hide in Tabs";
     this.chkHideinTabs.Size = new System.Drawing.Size(111, 19);
     this.chkHideinTabs.TabIndex = 42;
     this.chkHideinTabs.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkHideinTabs_PreviewKeyDown);
     //
     // chkAllowMaxQtyDays
     //
     this.chkAllowMaxQtyDays.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAllowMaxQtyDays.Location = new System.Drawing.Point(545, 42);
     this.chkAllowMaxQtyDays.Name = "chkAllowMaxQtyDays";
     this.chkAllowMaxQtyDays.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAllowMaxQtyDays.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAllowMaxQtyDays.Properties.Appearance.Options.UseFont = true;
     this.chkAllowMaxQtyDays.Properties.Appearance.Options.UseForeColor = true;
     this.chkAllowMaxQtyDays.Properties.Caption = "Allow Max Qty & Days";
     this.chkAllowMaxQtyDays.Size = new System.Drawing.Size(139, 19);
     this.chkAllowMaxQtyDays.TabIndex = 41;
     this.chkAllowMaxQtyDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAllowMaxQtyDays_PreviewKeyDown);
     //
     // chkProductDiscontinue
     //
     this.chkProductDiscontinue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkProductDiscontinue.Location = new System.Drawing.Point(545, 197);
     this.chkProductDiscontinue.Name = "chkProductDiscontinue";
     this.chkProductDiscontinue.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkProductDiscontinue.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkProductDiscontinue.Properties.Appearance.Options.UseFont = true;
     this.chkProductDiscontinue.Properties.Appearance.Options.UseForeColor = true;
     this.chkProductDiscontinue.Properties.Caption = "Product Discountinue";
     this.chkProductDiscontinue.Size = new System.Drawing.Size(141, 19);
     this.chkProductDiscontinue.TabIndex = 38;
     this.chkProductDiscontinue.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkProductDiscontinue_PreviewKeyDown);
     //
     // txtTradePrice
     //
     this.txtTradePrice.EditValue = "0.00";
     this.txtTradePrice.Location = new System.Drawing.Point(102, 9);
     this.txtTradePrice.Name = "txtTradePrice";
     this.txtTradePrice.Size = new System.Drawing.Size(82, 20);
     this.txtTradePrice.TabIndex = 14;
     this.txtTradePrice.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTradePrice_PreviewKeyDown);
     //
     // txtSaleRate
     //
     this.txtSaleRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtSaleRate.EditValue = "0.00";
     this.txtSaleRate.Location = new System.Drawing.Point(449, 9);
     this.txtSaleRate.Name = "txtSaleRate";
     this.txtSaleRate.Size = new System.Drawing.Size(82, 20);
     this.txtSaleRate.TabIndex = 33;
     this.txtSaleRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleRate_PreviewKeyDown);
     //
     // txtPackInCarton
     //
     this.txtPackInCarton.Location = new System.Drawing.Point(285, 9);
     this.txtPackInCarton.Name = "txtPackInCarton";
     this.txtPackInCarton.Size = new System.Drawing.Size(82, 20);
     this.txtPackInCarton.TabIndex = 24;
     this.txtPackInCarton.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPackInCarton_PreviewKeyDown);
     //
     // labelControl9
     //
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl9.LineVisible = true;
     this.labelControl9.Location = new System.Drawing.Point(16, 9);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(96, 20);
     this.labelControl9.TabIndex = 140;
     this.labelControl9.Text = "Trade Price";
     //
     // labelControl18
     //
     this.labelControl18.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl18.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl18.LineVisible = true;
     this.labelControl18.Location = new System.Drawing.Point(16, 28);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(96, 20);
     this.labelControl18.TabIndex = 157;
     this.labelControl18.Text = "Retail Price";
     //
     // labelControl17
     //
     this.labelControl17.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl17.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl17.LineVisible = true;
     this.labelControl17.Location = new System.Drawing.Point(16, 47);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(96, 20);
     this.labelControl17.TabIndex = 156;
     this.labelControl17.Text = "Purchase Disc %";
     //
     // labelControl16
     //
     this.labelControl16.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl16.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl16.LineVisible = true;
     this.labelControl16.Location = new System.Drawing.Point(16, 66);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(96, 20);
     this.labelControl16.TabIndex = 155;
     this.labelControl16.Text = "Max Sales Disc %";
     //
     // labelControl15
     //
     this.labelControl15.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl15.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl15.LineVisible = true;
     this.labelControl15.Location = new System.Drawing.Point(16, 85);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(96, 20);
     this.labelControl15.TabIndex = 154;
     this.labelControl15.Text = "Sale Tax %";
     //
     // labelControl13
     //
     this.labelControl13.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl13.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl13.LineVisible = true;
     this.labelControl13.Location = new System.Drawing.Point(16, 104);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(96, 20);
     this.labelControl13.TabIndex = 153;
     this.labelControl13.Text = "Sale Tax Value";
     //
     // labelControl50
     //
     this.labelControl50.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl50.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl50.LineVisible = true;
     this.labelControl50.Location = new System.Drawing.Point(16, 123);
     this.labelControl50.Name = "labelControl50";
     this.labelControl50.Size = new System.Drawing.Size(96, 20);
     this.labelControl50.TabIndex = 60;
     this.labelControl50.Text = "Sale Tax Calc";
     //
     // labelControl12
     //
     this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl12.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl12.LineVisible = true;
     this.labelControl12.Location = new System.Drawing.Point(16, 142);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(96, 20);
     this.labelControl12.TabIndex = 152;
     this.labelControl12.Text = "Max Flat Rate";
     //
     // labelControl11
     //
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl11.LineVisible = true;
     this.labelControl11.Location = new System.Drawing.Point(16, 161);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(96, 20);
     this.labelControl11.TabIndex = 151;
     this.labelControl11.Text = "Min Flat Rate";
     //
     // labelControl19
     //
     this.labelControl19.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl19.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl19.LineVisible = true;
     this.labelControl19.Location = new System.Drawing.Point(16, 180);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(96, 20);
     this.labelControl19.TabIndex = 158;
     this.labelControl19.Text = "Inventory Days";
     //
     // labelControl20
     //
     this.labelControl20.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl20.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl20.LineVisible = true;
     this.labelControl20.Location = new System.Drawing.Point(16, 198);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(96, 20);
     this.labelControl20.TabIndex = 159;
     this.labelControl20.Text = "Tabs in Pack";
     //
     // labelControl25
     //
     this.labelControl25.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl25.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl25.LineVisible = true;
     this.labelControl25.Location = new System.Drawing.Point(191, 10);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(100, 20);
     this.labelControl25.TabIndex = 164;
     this.labelControl25.Text = "Packs in Carton";
     //
     // labelControl24
     //
     this.labelControl24.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl24.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl24.LineVisible = true;
     this.labelControl24.Location = new System.Drawing.Point(191, 29);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(100, 20);
     this.labelControl24.TabIndex = 163;
     this.labelControl24.Text = "Max Qty/Customer";
     //
     // labelControl23
     //
     this.labelControl23.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl23.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl23.LineVisible = true;
     this.labelControl23.Location = new System.Drawing.Point(191, 48);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(100, 20);
     this.labelControl23.TabIndex = 162;
     this.labelControl23.Text = "Max Qty Days";
     //
     // labelControl22
     //
     this.labelControl22.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl22.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl22.LineVisible = true;
     this.labelControl22.Location = new System.Drawing.Point(191, 67);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(100, 20);
     this.labelControl22.TabIndex = 161;
     this.labelControl22.Text = "Balance Stock";
     //
     // labelControl21
     //
     this.labelControl21.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl21.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl21.LineVisible = true;
     this.labelControl21.Location = new System.Drawing.Point(191, 86);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(100, 20);
     this.labelControl21.TabIndex = 160;
     this.labelControl21.Text = "Balance Bonus";
     //
     // labelControl26
     //
     this.labelControl26.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl26.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl26.LineVisible = true;
     this.labelControl26.Location = new System.Drawing.Point(191, 104);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(100, 20);
     this.labelControl26.TabIndex = 165;
     this.labelControl26.Text = "Net Balance";
     //
     // labelControl52
     //
     this.labelControl52.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl52.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl52.LineVisible = true;
     this.labelControl52.Location = new System.Drawing.Point(191, 123);
     this.labelControl52.Name = "labelControl52";
     this.labelControl52.Size = new System.Drawing.Size(100, 20);
     this.labelControl52.TabIndex = 124267;
     this.labelControl52.Text = "Target";
     //
     // labelControl53
     //
     this.labelControl53.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl53.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl53.LineVisible = true;
     this.labelControl53.Location = new System.Drawing.Point(191, 142);
     this.labelControl53.Name = "labelControl53";
     this.labelControl53.Size = new System.Drawing.Size(100, 20);
     this.labelControl53.TabIndex = 124269;
     this.labelControl53.Text = "Transit";
     //
     // labelControl27
     //
     this.labelControl27.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl27.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl27.LineVisible = true;
     this.labelControl27.Location = new System.Drawing.Point(191, 162);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(100, 20);
     this.labelControl27.TabIndex = 166;
     this.labelControl27.Text = "Total Cost";
     //
     // labelControl28
     //
     this.labelControl28.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl28.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl28.LineVisible = true;
     this.labelControl28.Location = new System.Drawing.Point(191, 180);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(100, 20);
     this.labelControl28.TabIndex = 167;
     this.labelControl28.Text = "Special Rate";
     //
     // labelControl29
     //
     this.labelControl29.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl29.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl29.LineVisible = true;
     this.labelControl29.Location = new System.Drawing.Point(191, 199);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(100, 20);
     this.labelControl29.TabIndex = 168;
     this.labelControl29.Text = "Pure Rate";
     //
     // labelControl30
     //
     this.labelControl30.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl30.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl30.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl30.LineVisible = true;
     this.labelControl30.Location = new System.Drawing.Point(373, 10);
     this.labelControl30.Name = "labelControl30";
     this.labelControl30.Size = new System.Drawing.Size(82, 20);
     this.labelControl30.TabIndex = 169;
     this.labelControl30.Text = "Sale Rate";
     //
     // labelControl31
     //
     this.labelControl31.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl31.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl31.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl31.LineVisible = true;
     this.labelControl31.Location = new System.Drawing.Point(373, 29);
     this.labelControl31.Name = "labelControl31";
     this.labelControl31.Size = new System.Drawing.Size(82, 20);
     this.labelControl31.TabIndex = 182;
     this.labelControl31.Text = "Lead Time";
     //
     // labelControl32
     //
     this.labelControl32.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl32.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl32.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl32.LineVisible = true;
     this.labelControl32.Location = new System.Drawing.Point(373, 48);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(82, 20);
     this.labelControl32.TabIndex = 184;
     this.labelControl32.Text = "Tolerance Day";
     //
     // labelControl37
     //
     this.labelControl37.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl37.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl37.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl37.LineVisible = true;
     this.labelControl37.Location = new System.Drawing.Point(373, 67);
     this.labelControl37.Name = "labelControl37";
     this.labelControl37.Size = new System.Drawing.Size(82, 20);
     this.labelControl37.TabIndex = 186;
     this.labelControl37.Text = "Avg Rate";
     //
     // labelControl38
     //
     this.labelControl38.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl38.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl38.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl38.LineVisible = true;
     this.labelControl38.Location = new System.Drawing.Point(373, 86);
     this.labelControl38.Name = "labelControl38";
     this.labelControl38.Size = new System.Drawing.Size(82, 20);
     this.labelControl38.TabIndex = 103;
     this.labelControl38.Text = "Value Method";
     //
     // labelControl44
     //
     this.labelControl44.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl44.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl44.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl44.LineVisible = true;
     this.labelControl44.Location = new System.Drawing.Point(373, 105);
     this.labelControl44.Name = "labelControl44";
     this.labelControl44.Size = new System.Drawing.Size(82, 20);
     this.labelControl44.TabIndex = 124261;
     this.labelControl44.Text = "UOM-Sale";
     //
     // labelControl43
     //
     this.labelControl43.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl43.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl43.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl43.LineVisible = true;
     this.labelControl43.Location = new System.Drawing.Point(373, 124);
     this.labelControl43.Name = "labelControl43";
     this.labelControl43.Size = new System.Drawing.Size(82, 20);
     this.labelControl43.TabIndex = 124259;
     this.labelControl43.Text = "UOM-Size";
     //
     // labelControl41
     //
     this.labelControl41.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl41.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl41.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl41.LineVisible = true;
     this.labelControl41.Location = new System.Drawing.Point(373, 144);
     this.labelControl41.Name = "labelControl41";
     this.labelControl41.Size = new System.Drawing.Size(82, 20);
     this.labelControl41.TabIndex = 124263;
     this.labelControl41.Text = "UOM-Purchase";
     //
     // labelControl42
     //
     this.labelControl42.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl42.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl42.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl42.LineVisible = true;
     this.labelControl42.Location = new System.Drawing.Point(373, 161);
     this.labelControl42.Name = "labelControl42";
     this.labelControl42.Size = new System.Drawing.Size(82, 20);
     this.labelControl42.TabIndex = 124265;
     this.labelControl42.Text = "Factor";
     //
     // XtrabarBonus
     //
     this.XtrabarBonus.Controls.Add(this.datagridBonus);
     this.XtrabarBonus.Name = "XtrabarBonus";
     this.XtrabarBonus.Size = new System.Drawing.Size(695, 226);
     this.XtrabarBonus.Text = "Bonus";
     //
     // datagridBonus
     //
     this.datagridBonus.AllowAddNew = true;
     this.datagridBonus.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.datagridBonus.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.datagridBonus.Caption = "Product Bonus";
     this.datagridBonus.CaptionHeight = 20;
     this.datagridBonus.CollapseColor = System.Drawing.Color.Transparent;
     this.datagridBonus.ColumnFooters = true;
     this.datagridBonus.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.datagridBonus.ExpandColor = System.Drawing.Color.Transparent;
     this.datagridBonus.ForeColor = System.Drawing.SystemColors.Window;
     this.datagridBonus.Images.Add(((System.Drawing.Image)(resources.GetObject("datagridBonus.Images"))));
     this.datagridBonus.Location = new System.Drawing.Point(0, 1);
     this.datagridBonus.Name = "datagridBonus";
     this.datagridBonus.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.datagridBonus.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.datagridBonus.PreviewInfo.ZoomFactor = 75D;
     this.datagridBonus.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("datagridBonus.PrintInfo.PageSettings")));
     this.datagridBonus.RecordSelectors = false;
     this.datagridBonus.RowHeight = 20;
     this.datagridBonus.RowSubDividerColor = System.Drawing.Color.Black;
     this.datagridBonus.ScrollTips = true;
     this.datagridBonus.Size = new System.Drawing.Size(726, 304);
     this.datagridBonus.TabIndex = 32000;
     this.datagridBonus.Text = "c1TrueDBGrid1";
     this.datagridBonus.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2007Blue;
     this.datagridBonus.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.datagridBonus_AfterColUpdate);
     this.datagridBonus.KeyDown += new System.Windows.Forms.KeyEventHandler(this.datagridBonus_KeyDown);
     this.datagridBonus.PropBag = resources.GetString("datagridBonus.PropBag");
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.datagridProductAllocation);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage1.Text = "Territory Allocation";
     //
     // datagridProductAllocation
     //
     this.datagridProductAllocation.AllowAddNew = true;
     this.datagridProductAllocation.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.datagridProductAllocation.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.datagridProductAllocation.Caption = "Product Allocation";
     this.datagridProductAllocation.CaptionHeight = 20;
     this.datagridProductAllocation.CollapseColor = System.Drawing.Color.Transparent;
     this.datagridProductAllocation.ColumnFooters = true;
     this.datagridProductAllocation.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.datagridProductAllocation.ExpandColor = System.Drawing.Color.Transparent;
     this.datagridProductAllocation.ForeColor = System.Drawing.SystemColors.Window;
     this.datagridProductAllocation.Images.Add(((System.Drawing.Image)(resources.GetObject("datagridProductAllocation.Images"))));
     this.datagridProductAllocation.Location = new System.Drawing.Point(-1, 0);
     this.datagridProductAllocation.Name = "datagridProductAllocation";
     this.datagridProductAllocation.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.datagridProductAllocation.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.datagridProductAllocation.PreviewInfo.ZoomFactor = 75D;
     this.datagridProductAllocation.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("datagridProductAllocation.PrintInfo.PageSettings")));
     this.datagridProductAllocation.RecordSelectors = false;
     this.datagridProductAllocation.RowHeight = 20;
     this.datagridProductAllocation.RowSubDividerColor = System.Drawing.Color.Black;
     this.datagridProductAllocation.ScrollTips = true;
     this.datagridProductAllocation.Size = new System.Drawing.Size(696, 233);
     this.datagridProductAllocation.TabIndex = 1;
     this.datagridProductAllocation.Text = "c1TrueDBGrid1";
     this.datagridProductAllocation.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2007Blue;
     this.datagridProductAllocation.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.datagridProductAllocation_AfterColUpdate);
     this.datagridProductAllocation.KeyDown += new System.Windows.Forms.KeyEventHandler(this.datagridProductAllocation_KeyDown);
     this.datagridProductAllocation.PropBag = resources.GetString("datagridProductAllocation.PropBag");
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.groupControl5);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage2.Text = "Advance Information";
     //
     // groupControl5
     //
     this.groupControl5.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl5.Controls.Add(this.txtMaxLimit);
     this.groupControl5.Controls.Add(this.txtMinLimit);
     this.groupControl5.Controls.Add(this.txtBarCode);
     this.groupControl5.Controls.Add(this.txtShelfCode);
     this.groupControl5.Controls.Add(this.grdPresevasionStandard);
     this.groupControl5.Controls.Add(this.simpleButton8);
     this.groupControl5.Controls.Add(this.txtClaimPartnerID);
     this.groupControl5.Controls.Add(this.txtClaimPartnerName);
     this.groupControl5.Controls.Add(this.simpleButton7);
     this.groupControl5.Controls.Add(this.txtBussinessPartnerid);
     this.groupControl5.Controls.Add(this.businessPartnerName);
     this.groupControl5.Controls.Add(this.labelControl40);
     this.groupControl5.Controls.Add(this.labelControl48);
     this.groupControl5.Controls.Add(this.labelControl46);
     this.groupControl5.Controls.Add(this.labelControl47);
     this.groupControl5.Controls.Add(this.labelControl54);
     this.groupControl5.Controls.Add(this.labelControl55);
     this.groupControl5.Location = new System.Drawing.Point(0, 0);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.ShowCaption = false;
     this.groupControl5.Size = new System.Drawing.Size(695, 233);
     this.groupControl5.TabIndex = 0;
     this.groupControl5.Text = "Extra Information";
     //
     // txtMaxLimit
     //
     this.txtMaxLimit.Location = new System.Drawing.Point(103, 102);
     this.txtMaxLimit.Name = "txtMaxLimit";
     this.txtMaxLimit.Size = new System.Drawing.Size(209, 20);
     this.txtMaxLimit.TabIndex = 124268;
     this.txtMaxLimit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxLimit_PreviewKeyDown);
     //
     // txtMinLimit
     //
     this.txtMinLimit.Location = new System.Drawing.Point(103, 83);
     this.txtMinLimit.Name = "txtMinLimit";
     this.txtMinLimit.Size = new System.Drawing.Size(209, 20);
     this.txtMinLimit.TabIndex = 124266;
     this.txtMinLimit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMinLimit_PreviewKeyDown);
     //
     // txtBarCode
     //
     this.txtBarCode.Location = new System.Drawing.Point(103, 64);
     this.txtBarCode.Name = "txtBarCode";
     this.txtBarCode.Size = new System.Drawing.Size(209, 20);
     this.txtBarCode.TabIndex = 124261;
     this.txtBarCode.TabStop = false;
     this.txtBarCode.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBarCode_PreviewKeyDown);
     //
     // txtShelfCode
     //
     this.txtShelfCode.Location = new System.Drawing.Point(103, 45);
     this.txtShelfCode.Name = "txtShelfCode";
     this.txtShelfCode.Size = new System.Drawing.Size(209, 20);
     this.txtShelfCode.TabIndex = 124259;
     this.txtShelfCode.TabStop = false;
     this.txtShelfCode.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtShelfCode_PreviewKeyDown);
     //
     // grdPresevasionStandard
     //
     this.grdPresevasionStandard.AllowAddNew = true;
     this.grdPresevasionStandard.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.grdPresevasionStandard.CaptionHeight = 17;
     this.grdPresevasionStandard.Images.Add(((System.Drawing.Image)(resources.GetObject("grdPresevasionStandard.Images"))));
     this.grdPresevasionStandard.Location = new System.Drawing.Point(411, 5);
     this.grdPresevasionStandard.Name = "grdPresevasionStandard";
     this.grdPresevasionStandard.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdPresevasionStandard.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdPresevasionStandard.PreviewInfo.ZoomFactor = 75D;
     this.grdPresevasionStandard.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdPresevasionStandard.PrintInfo.PageSettings")));
     this.grdPresevasionStandard.RowHeight = 15;
     this.grdPresevasionStandard.Size = new System.Drawing.Size(277, 225);
     this.grdPresevasionStandard.TabIndex = 124270;
     this.grdPresevasionStandard.Text = "c1TrueDBGrid2";
     this.grdPresevasionStandard.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdPresevasionStandard_AfterColUpdate);
     this.grdPresevasionStandard.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdPresevasionStandard_PreviewKeyDown);
     this.grdPresevasionStandard.PropBag = resources.GetString("grdPresevasionStandard.PropBag");
     //
     // simpleButton8
     //
     this.simpleButton8.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton8.Appearance.Options.UseFont = true;
     this.simpleButton8.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton8.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton8.Location = new System.Drawing.Point(152, 26);
     this.simpleButton8.Name = "simpleButton8";
     this.simpleButton8.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton8.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.simpleButton8.SuperTip = superToolTip1;
     this.simpleButton8.TabIndex = 124264;
     this.simpleButton8.Click += new System.EventHandler(this.simpleButton8_Click);
     //
     // txtClaimPartnerID
     //
     this.txtClaimPartnerID.Location = new System.Drawing.Point(103, 25);
     this.txtClaimPartnerID.Mask = "000000";
     this.txtClaimPartnerID.Name = "txtClaimPartnerID";
     this.txtClaimPartnerID.Size = new System.Drawing.Size(49, 21);
     this.txtClaimPartnerID.TabIndex = 124262;
     this.txtClaimPartnerID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtClaimPartnerID_PreviewKeyDown);
     //
     // txtClaimPartnerName
     //
     this.txtClaimPartnerName.Location = new System.Drawing.Point(176, 26);
     this.txtClaimPartnerName.Name = "txtClaimPartnerName";
     this.txtClaimPartnerName.Size = new System.Drawing.Size(136, 20);
     this.txtClaimPartnerName.TabIndex = 124265;
     //
     // simpleButton7
     //
     this.simpleButton7.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton7.Appearance.Options.UseFont = true;
     this.simpleButton7.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton7.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton7.Location = new System.Drawing.Point(152, 6);
     this.simpleButton7.Name = "simpleButton7";
     this.simpleButton7.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton7.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip2.Items.Add(toolTipTitleItem2);
     this.simpleButton7.SuperTip = superToolTip2;
     this.simpleButton7.TabIndex = 124250;
     this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
     //
     // txtBussinessPartnerid
     //
     this.txtBussinessPartnerid.Location = new System.Drawing.Point(103, 6);
     this.txtBussinessPartnerid.Mask = "000000";
     this.txtBussinessPartnerid.Name = "txtBussinessPartnerid";
     this.txtBussinessPartnerid.Size = new System.Drawing.Size(49, 21);
     this.txtBussinessPartnerid.TabIndex = 124248;
     this.txtBussinessPartnerid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBussinessPartnerid_PreviewKeyDown);
     //
     // businessPartnerName
     //
     this.businessPartnerName.Location = new System.Drawing.Point(176, 7);
     this.businessPartnerName.Name = "businessPartnerName";
     this.businessPartnerName.Size = new System.Drawing.Size(136, 20);
     this.businessPartnerName.TabIndex = 124251;
     //
     // labelControl40
     //
     this.labelControl40.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl40.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl40.LineVisible = true;
     this.labelControl40.Location = new System.Drawing.Point(8, 6);
     this.labelControl40.Name = "labelControl40";
     this.labelControl40.Size = new System.Drawing.Size(103, 20);
     this.labelControl40.TabIndex = 124249;
     this.labelControl40.Text = "Business Partner ID";
     //
     // labelControl48
     //
     this.labelControl48.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl48.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl48.LineVisible = true;
     this.labelControl48.Location = new System.Drawing.Point(8, 26);
     this.labelControl48.Name = "labelControl48";
     this.labelControl48.Size = new System.Drawing.Size(103, 20);
     this.labelControl48.TabIndex = 124263;
     this.labelControl48.Text = "Claim Partner ID";
     //
     // labelControl46
     //
     this.labelControl46.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl46.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl46.LineVisible = true;
     this.labelControl46.Location = new System.Drawing.Point(8, 46);
     this.labelControl46.Name = "labelControl46";
     this.labelControl46.Size = new System.Drawing.Size(103, 20);
     this.labelControl46.TabIndex = 124258;
     this.labelControl46.Text = "Shelf Code";
     //
     // labelControl47
     //
     this.labelControl47.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl47.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl47.LineVisible = true;
     this.labelControl47.Location = new System.Drawing.Point(8, 65);
     this.labelControl47.Name = "labelControl47";
     this.labelControl47.Size = new System.Drawing.Size(103, 20);
     this.labelControl47.TabIndex = 124260;
     this.labelControl47.Text = "Bar Code";
     //
     // labelControl54
     //
     this.labelControl54.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl54.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl54.LineVisible = true;
     this.labelControl54.Location = new System.Drawing.Point(8, 85);
     this.labelControl54.Name = "labelControl54";
     this.labelControl54.Size = new System.Drawing.Size(103, 20);
     this.labelControl54.TabIndex = 124267;
     this.labelControl54.Text = "Min Limit";
     //
     // labelControl55
     //
     this.labelControl55.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl55.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl55.LineVisible = true;
     this.labelControl55.Location = new System.Drawing.Point(8, 103);
     this.labelControl55.Name = "labelControl55";
     this.labelControl55.Size = new System.Drawing.Size(103, 20);
     this.labelControl55.TabIndex = 124269;
     this.labelControl55.Text = "Max Limit";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.dgFileAttachments);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage3.Text = "Attachment & Remarks";
     //
     // dgFileAttachments
     //
     this.dgFileAttachments.AllowAddNew = true;
     this.dgFileAttachments.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.dgFileAttachments.CaptionHeight = 17;
     this.dgFileAttachments.Images.Add(((System.Drawing.Image)(resources.GetObject("dgFileAttachments.Images"))));
     this.dgFileAttachments.Location = new System.Drawing.Point(0, 0);
     this.dgFileAttachments.Name = "dgFileAttachments";
     this.dgFileAttachments.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.dgFileAttachments.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.dgFileAttachments.PreviewInfo.ZoomFactor = 75D;
     this.dgFileAttachments.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("dgFileAttachments.PrintInfo.PageSettings")));
     this.dgFileAttachments.RowHeight = 15;
     this.dgFileAttachments.Size = new System.Drawing.Size(698, 233);
     this.dgFileAttachments.TabIndex = 0;
     this.dgFileAttachments.Text = "c1TrueDBGrid1";
     this.dgFileAttachments.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.dgFileAttachments_AfterColUpdate);
     this.dgFileAttachments.ButtonClick += new C1.Win.C1TrueDBGrid.ColEventHandler(this.dgFileAttachments_ButtonClick);
     this.dgFileAttachments.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.dgFileAttachments_PreviewKeyDown);
     this.dgFileAttachments.PropBag = resources.GetString("dgFileAttachments.PropBag");
     //
     // Productid
     //
     this.Productid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.Productid.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.Productid.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.Productid.LineVisible = true;
     this.Productid.Location = new System.Drawing.Point(4, 12);
     this.Productid.Name = "Productid";
     this.Productid.Size = new System.Drawing.Size(72, 20);
     this.Productid.TabIndex = 1;
     this.Productid.Text = "Item Id";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.cmbProductCategory);
     this.groupControl1.Controls.Add(this.txtShortName);
     this.groupControl1.Controls.Add(this.txtArtical);
     this.groupControl1.Controls.Add(this.txtProductName);
     this.groupControl1.Controls.Add(this.cmbSkuType);
     this.groupControl1.Controls.Add(this.cmbGeneralName);
     this.groupControl1.Controls.Add(this.cmbProtoType);
     this.groupControl1.Controls.Add(this.btnPickList);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.txtProductId);
     this.groupControl1.Controls.Add(this.txtPack);
     this.groupControl1.Controls.Add(this.Productid);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl8);
     this.groupControl1.Controls.Add(this.labelControl14);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.labelControl49);
     this.groupControl1.Controls.Add(this.labelControl39);
     this.groupControl1.Location = new System.Drawing.Point(2, 3);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(405, 105);
     this.groupControl1.TabIndex = 11;
     this.groupControl1.Text = "Products";
     //
     // cmbProductCategory
     //
     this.cmbProductCategory.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbProductCategory.Location = new System.Drawing.Point(308, 67);
     this.cmbProductCategory.Name = "cmbProductCategory";
     this.cmbProductCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbProductCategory.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbProductCategory.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbProductCategory.Size = new System.Drawing.Size(91, 20);
     this.cmbProductCategory.TabIndex = 55;
     this.cmbProductCategory.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbProductCategory_PreviewKeyDown);
     //
     // txtShortName
     //
     this.txtShortName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtShortName.Location = new System.Drawing.Point(62, 69);
     this.txtShortName.Name = "txtShortName";
     this.txtShortName.Size = new System.Drawing.Size(169, 20);
     this.txtShortName.TabIndex = 6;
     this.txtShortName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtShortName_PreviewKeyDown);
     //
     // txtArtical
     //
     this.txtArtical.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtArtical.Location = new System.Drawing.Point(62, 50);
     this.txtArtical.Name = "txtArtical";
     this.txtArtical.Size = new System.Drawing.Size(169, 20);
     this.txtArtical.TabIndex = 5;
     this.txtArtical.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtArtical_PreviewKeyDown);
     //
     // txtProductName
     //
     this.txtProductName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtProductName.Location = new System.Drawing.Point(62, 31);
     this.txtProductName.Name = "txtProductName";
     this.txtProductName.Size = new System.Drawing.Size(169, 20);
     this.txtProductName.TabIndex = 4;
     this.txtProductName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtProductName_PreviewKeyDown);
     //
     // cmbSkuType
     //
     this.cmbSkuType.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbSkuType.Location = new System.Drawing.Point(308, 48);
     this.cmbSkuType.Name = "cmbSkuType";
     this.cmbSkuType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbSkuType.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbSkuType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbSkuType.Size = new System.Drawing.Size(91, 20);
     this.cmbSkuType.TabIndex = 57;
     this.cmbSkuType.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbSkuType_PreviewKeyDown);
     //
     // cmbGeneralName
     //
     this.cmbGeneralName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbGeneralName.Location = new System.Drawing.Point(308, 29);
     this.cmbGeneralName.Name = "cmbGeneralName";
     this.cmbGeneralName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbGeneralName.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbGeneralName.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbGeneralName.Size = new System.Drawing.Size(91, 20);
     this.cmbGeneralName.TabIndex = 3;
     this.cmbGeneralName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbGeneralName_PreviewKeyDown);
     //
     // cmbProtoType
     //
     this.cmbProtoType.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbProtoType.Location = new System.Drawing.Point(308, 11);
     this.cmbProtoType.Name = "cmbProtoType";
     this.cmbProtoType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbProtoType.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbProtoType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbProtoType.Size = new System.Drawing.Size(91, 20);
     this.cmbProtoType.TabIndex = 2;
     this.cmbProtoType.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbProtoType_PreviewKeyDown);
     //
     // btnPickList
     //
     this.btnPickList.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnPickList.Appearance.Options.UseFont = true;
     this.btnPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPickList.Location = new System.Drawing.Point(113, 12);
     this.btnPickList.Name = "btnPickList";
     this.btnPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnPickList.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem3.Text = "Add New Entry";
     superToolTip3.Items.Add(toolTipTitleItem3);
     this.btnPickList.SuperTip = superToolTip3;
     this.btnPickList.TabIndex = 47;
     this.btnPickList.TabStop = false;
     this.btnPickList.Click += new System.EventHandler(this.btnPickList_Click);
     //
     // labelControl3
     //
     this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl3.Location = new System.Drawing.Point(140, 15);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(22, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "Pack";
     //
     // txtProductId
     //
     this.txtProductId.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtProductId.Location = new System.Drawing.Point(62, 11);
     this.txtProductId.Mask = "000-000";
     this.txtProductId.Name = "txtProductId";
     this.txtProductId.Size = new System.Drawing.Size(51, 21);
     this.txtProductId.TabIndex = 0;
     this.txtProductId.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtProductId_KeyDown);
     this.txtProductId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtProductId_KeyPress);
     this.txtProductId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtProductId_PreviewKeyDown);
     //
     // txtPack
     //
     this.txtPack.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtPack.Location = new System.Drawing.Point(171, 12);
     this.txtPack.Name = "txtPack";
     this.txtPack.Size = new System.Drawing.Size(60, 20);
     this.txtPack.TabIndex = 1;
     this.txtPack.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPack_PreviewKeyDown);
     //
     // labelControl6
     //
     this.labelControl6.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl6.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl6.LineVisible = true;
     this.labelControl6.Location = new System.Drawing.Point(4, 32);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(79, 20);
     this.labelControl6.TabIndex = 7;
     this.labelControl6.Text = "Item Name";
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl2.LineVisible = true;
     this.labelControl2.Location = new System.Drawing.Point(4, 51);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(72, 20);
     this.labelControl2.TabIndex = 52;
     this.labelControl2.Text = "Artical No.";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl8.LineVisible = true;
     this.labelControl8.Location = new System.Drawing.Point(4, 70);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(72, 20);
     this.labelControl8.TabIndex = 59;
     this.labelControl8.Text = "Description";
     //
     // labelControl14
     //
     this.labelControl14.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl14.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl14.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl14.LineVisible = true;
     this.labelControl14.Location = new System.Drawing.Point(235, 11);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(90, 20);
     this.labelControl14.TabIndex = 52;
     this.labelControl14.Text = "Item Type";
     //
     // labelControl7
     //
     this.labelControl7.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl7.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl7.LineVisible = true;
     this.labelControl7.Location = new System.Drawing.Point(235, 30);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(90, 20);
     this.labelControl7.TabIndex = 54;
     this.labelControl7.Text = "Gen. Name";
     //
     // labelControl49
     //
     this.labelControl49.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl49.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl49.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl49.LineVisible = true;
     this.labelControl49.Location = new System.Drawing.Point(235, 48);
     this.labelControl49.Name = "labelControl49";
     this.labelControl49.Size = new System.Drawing.Size(77, 20);
     this.labelControl49.TabIndex = 58;
     this.labelControl49.Text = "SKU Type";
     //
     // labelControl39
     //
     this.labelControl39.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl39.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl39.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl39.LineVisible = true;
     this.labelControl39.Location = new System.Drawing.Point(235, 67);
     this.labelControl39.Name = "labelControl39";
     this.labelControl39.Size = new System.Drawing.Size(90, 20);
     this.labelControl39.TabIndex = 56;
     this.labelControl39.Text = "Item Category";
     //
     // labelControl4
     //
     this.labelControl4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl4.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl4.LineVisible = true;
     this.labelControl4.Location = new System.Drawing.Point(169, 9);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(54, 20);
     this.labelControl4.TabIndex = 5;
     this.labelControl4.Text = "Group Seq.";
     //
     // labelControl5
     //
     this.labelControl5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl5.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl5.LineVisible = true;
     this.labelControl5.Location = new System.Drawing.Point(5, 30);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(84, 20);
     this.labelControl5.TabIndex = 6;
     this.labelControl5.Text = "Group Name";
     //
     // labelControl10
     //
     this.labelControl10.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl10.LineVisible = true;
     this.labelControl10.Location = new System.Drawing.Point(5, 8);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(71, 20);
     this.labelControl10.TabIndex = 11;
     this.labelControl10.Text = "Group Id";
     //
     // txtGroupSeq
     //
     this.txtGroupSeq.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupSeq.Location = new System.Drawing.Point(224, 10);
     this.txtGroupSeq.Name = "txtGroupSeq";
     this.txtGroupSeq.Size = new System.Drawing.Size(62, 20);
     this.txtGroupSeq.TabIndex = 8;
     this.txtGroupSeq.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtGroupSeq_PreviewKeyDown);
     //
     // txtGroupName
     //
     this.txtGroupName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupName.Location = new System.Drawing.Point(85, 29);
     this.txtGroupName.Name = "txtGroupName";
     this.txtGroupName.Size = new System.Drawing.Size(201, 20);
     this.txtGroupName.TabIndex = 124244;
     this.txtGroupName.TabStop = false;
     //
     // txtGroupid
     //
     this.txtGroupid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupid.Location = new System.Drawing.Point(85, 9);
     this.txtGroupid.Mask = "000-000";
     this.txtGroupid.Name = "txtGroupid";
     this.txtGroupid.Size = new System.Drawing.Size(51, 21);
     this.txtGroupid.TabIndex = 7;
     this.txtGroupid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtGroupid_PreviewKeyDown);
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton1.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton1.Appearance.Options.UseFont = true;
     this.simpleButton1.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton1.Location = new System.Drawing.Point(137, 9);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton1.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem4.Text = "Add New Entry";
     superToolTip4.Items.Add(toolTipTitleItem4);
     this.simpleButton1.SuperTip = superToolTip4;
     this.simpleButton1.TabIndex = 48;
     this.simpleButton1.TabStop = false;
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.txtmanualgroup);
     this.groupControl2.Controls.Add(this.labelControl57);
     this.groupControl2.Controls.Add(this.txtdateto);
     this.groupControl2.Controls.Add(this.txtdatefrom);
     this.groupControl2.Controls.Add(this.simpleButton4);
     this.groupControl2.Controls.Add(this.simpleButton1);
     this.groupControl2.Controls.Add(this.labelControl10);
     this.groupControl2.Controls.Add(this.txtGroupName);
     this.groupControl2.Controls.Add(this.labelControl4);
     this.groupControl2.Controls.Add(this.txtGroupSeq);
     this.groupControl2.Controls.Add(this.txtGroupid);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.labelControl56);
     this.groupControl2.Controls.Add(this.labelControl51);
     this.groupControl2.Location = new System.Drawing.Point(411, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(291, 105);
     this.groupControl2.TabIndex = 12;
     this.groupControl2.Text = "Group";
     this.groupControl2.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl2_Paint);
     //
     // txtmanualgroup
     //
     this.txtmanualgroup.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtmanualgroup.Location = new System.Drawing.Point(85, 68);
     this.txtmanualgroup.Name = "txtmanualgroup";
     this.txtmanualgroup.Size = new System.Drawing.Size(201, 20);
     this.txtmanualgroup.TabIndex = 124245;
     this.txtmanualgroup.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtmanualgroup_PreviewKeyDown);
     //
     // labelControl57
     //
     this.labelControl57.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl57.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl57.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl57.LineVisible = true;
     this.labelControl57.Location = new System.Drawing.Point(168, 50);
     this.labelControl57.Name = "labelControl57";
     this.labelControl57.Size = new System.Drawing.Size(38, 20);
     this.labelControl57.TabIndex = 124252;
     this.labelControl57.Text = "Date To";
     //
     // txtdateto
     //
     this.txtdateto.Location = new System.Drawing.Point(211, 48);
     this.txtdateto.Mask = "00/00/0000";
     this.txtdateto.Name = "txtdateto";
     this.txtdateto.Size = new System.Drawing.Size(75, 21);
     this.txtdateto.TabIndex = 124251;
     this.txtdateto.ValidatingType = typeof(System.DateTime);
     this.txtdateto.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtdateto_PreviewKeyDown);
     //
     // txtdatefrom
     //
     this.txtdatefrom.Location = new System.Drawing.Point(85, 48);
     this.txtdatefrom.Mask = "00/00/0000";
     this.txtdatefrom.Name = "txtdatefrom";
     this.txtdatefrom.Size = new System.Drawing.Size(75, 21);
     this.txtdatefrom.TabIndex = 124250;
     this.txtdatefrom.ValidatingType = typeof(System.DateTime);
     this.txtdatefrom.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtdatefrom_PreviewKeyDown);
     //
     // simpleButton4
     //
     this.simpleButton4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton4.Location = new System.Drawing.Point(63, 9);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(21, 20);
     toolTipItem1.Text = "Save Module";
     superToolTip5.Items.Add(toolTipItem1);
     this.simpleButton4.SuperTip = superToolTip5;
     this.simpleButton4.TabIndex = 187;
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // labelControl56
     //
     this.labelControl56.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl56.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl56.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl56.LineVisible = true;
     this.labelControl56.Location = new System.Drawing.Point(5, 51);
     this.labelControl56.Name = "labelControl56";
     this.labelControl56.Size = new System.Drawing.Size(84, 20);
     this.labelControl56.TabIndex = 124249;
     this.labelControl56.Text = "Date From";
     //
     // labelControl51
     //
     this.labelControl51.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl51.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl51.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl51.LineVisible = true;
     this.labelControl51.Location = new System.Drawing.Point(5, 69);
     this.labelControl51.Name = "labelControl51";
     this.labelControl51.Size = new System.Drawing.Size(84, 20);
     this.labelControl51.TabIndex = 124246;
     this.labelControl51.Text = "Manual Groups";
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnAdd.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(3, 426);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(70, 23);
     toolTipItem2.Text = "Add New Module";
     superToolTip6.Items.Add(toolTipItem2);
     this.btnAdd.SuperTip = superToolTip6;
     this.btnAdd.TabIndex = 47;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(79, 426);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(70, 23);
     toolTipItem3.Text = "Cancel Current Operation";
     superToolTip7.Items.Add(toolTipItem3);
     this.btnCancel.SuperTip = superToolTip7;
     this.btnCancel.TabIndex = 50;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // groupControl4
     //
     this.groupControl4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl4.Controls.Add(this.simpleButton6);
     this.groupControl4.Controls.Add(this.simpleButton5);
     this.groupControl4.Controls.Add(this.chkCompanyDiscount);
     this.groupControl4.Controls.Add(this.txtCompanySeq);
     this.groupControl4.Controls.Add(this.simpleButton3);
     this.groupControl4.Controls.Add(this.labelControl35);
     this.groupControl4.Controls.Add(this.txtReportCompanyName);
     this.groupControl4.Controls.Add(this.txtReportCompanyid);
     this.groupControl4.Controls.Add(this.simpleButton2);
     this.groupControl4.Controls.Add(this.txtCompanyName);
     this.groupControl4.Controls.Add(this.txtCompanyid);
     this.groupControl4.Controls.Add(this.labelControl33);
     this.groupControl4.Controls.Add(this.labelControl34);
     this.groupControl4.Controls.Add(this.labelControl36);
     this.groupControl4.Controls.Add(this.labelControl1);
     this.groupControl4.Location = new System.Drawing.Point(3, 110);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.ShowCaption = false;
     this.groupControl4.Size = new System.Drawing.Size(699, 55);
     this.groupControl4.TabIndex = 49;
     this.groupControl4.Text = "Group";
     //
     // simpleButton6
     //
     this.simpleButton6.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton6.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton6.Image")));
     this.simpleButton6.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton6.Location = new System.Drawing.Point(110, 27);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(21, 20);
     toolTipItem4.Text = "Save Module";
     superToolTip8.Items.Add(toolTipItem4);
     this.simpleButton6.SuperTip = superToolTip8;
     this.simpleButton6.TabIndex = 124246;
     //
     // simpleButton5
     //
     this.simpleButton5.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton5.Location = new System.Drawing.Point(110, 6);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(21, 20);
     toolTipItem5.Text = "Save Module";
     superToolTip9.Items.Add(toolTipItem5);
     this.simpleButton5.SuperTip = superToolTip9;
     this.simpleButton5.TabIndex = 124245;
     //
     // chkCompanyDiscount
     //
     this.chkCompanyDiscount.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.chkCompanyDiscount.Location = new System.Drawing.Point(472, 26);
     this.chkCompanyDiscount.Name = "chkCompanyDiscount";
     this.chkCompanyDiscount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkCompanyDiscount.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkCompanyDiscount.Properties.Appearance.Options.UseFont = true;
     this.chkCompanyDiscount.Properties.Appearance.Options.UseForeColor = true;
     this.chkCompanyDiscount.Properties.Caption = "Company Discount";
     this.chkCompanyDiscount.Size = new System.Drawing.Size(136, 19);
     this.chkCompanyDiscount.TabIndex = 100001;
     this.chkCompanyDiscount.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkCompanyDiscount_PreviewKeyDown);
     //
     // txtCompanySeq
     //
     this.txtCompanySeq.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanySeq.Location = new System.Drawing.Point(542, 6);
     this.txtCompanySeq.Name = "txtCompanySeq";
     this.txtCompanySeq.Size = new System.Drawing.Size(62, 20);
     this.txtCompanySeq.TabIndex = 10;
     this.txtCompanySeq.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCompanySeq_PreviewKeyDown);
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton3.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton3.Appearance.Options.UseFont = true;
     this.simpleButton3.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton3.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton3.Location = new System.Drawing.Point(159, 27);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton3.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem5.Text = "Add New Entry";
     superToolTip10.Items.Add(toolTipTitleItem5);
     this.simpleButton3.SuperTip = superToolTip10;
     this.simpleButton3.TabIndex = 53;
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // labelControl35
     //
     this.labelControl35.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl35.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl35.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl35.LineVisible = true;
     this.labelControl35.Location = new System.Drawing.Point(17, 29);
     this.labelControl35.Name = "labelControl35";
     this.labelControl35.Size = new System.Drawing.Size(101, 20);
     this.labelControl35.TabIndex = 50;
     this.labelControl35.Text = "Report CompanyId";
     //
     // txtReportCompanyName
     //
     this.txtReportCompanyName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtReportCompanyName.Location = new System.Drawing.Point(264, 26);
     this.txtReportCompanyName.Name = "txtReportCompanyName";
     this.txtReportCompanyName.Size = new System.Drawing.Size(204, 20);
     this.txtReportCompanyName.TabIndex = 13;
     //
     // txtReportCompanyid
     //
     this.txtReportCompanyid.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtReportCompanyid.Location = new System.Drawing.Point(133, 27);
     this.txtReportCompanyid.Mask = "000";
     this.txtReportCompanyid.Name = "txtReportCompanyid";
     this.txtReportCompanyid.Size = new System.Drawing.Size(25, 21);
     this.txtReportCompanyid.TabIndex = 11;
     this.txtReportCompanyid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtReportCompanyid_PreviewKeyDown);
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton2.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton2.Appearance.Options.UseFont = true;
     this.simpleButton2.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton2.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton2.Location = new System.Drawing.Point(159, 6);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton2.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem6.Text = "Add New Entry";
     superToolTip11.Items.Add(toolTipTitleItem6);
     this.simpleButton2.SuperTip = superToolTip11;
     this.simpleButton2.TabIndex = 48;
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // txtCompanyName
     //
     this.txtCompanyName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanyName.Location = new System.Drawing.Point(264, 6);
     this.txtCompanyName.Name = "txtCompanyName";
     this.txtCompanyName.Size = new System.Drawing.Size(204, 20);
     this.txtCompanyName.TabIndex = 100000;
     //
     // txtCompanyid
     //
     this.txtCompanyid.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanyid.Location = new System.Drawing.Point(133, 6);
     this.txtCompanyid.Mask = "000";
     this.txtCompanyid.Name = "txtCompanyid";
     this.txtCompanyid.Size = new System.Drawing.Size(25, 21);
     this.txtCompanyid.TabIndex = 9;
     this.txtCompanyid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCompanyid_PreviewKeyDown);
     //
     // labelControl33
     //
     this.labelControl33.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl33.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl33.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl33.LineVisible = true;
     this.labelControl33.Location = new System.Drawing.Point(17, 7);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(101, 20);
     this.labelControl33.TabIndex = 11;
     this.labelControl33.Text = "Company Id";
     //
     // labelControl34
     //
     this.labelControl34.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl34.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl34.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl34.LineVisible = true;
     this.labelControl34.Location = new System.Drawing.Point(187, 6);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(95, 20);
     this.labelControl34.TabIndex = 6;
     this.labelControl34.Text = "Company Name";
     //
     // labelControl36
     //
     this.labelControl36.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl36.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl36.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl36.LineVisible = true;
     this.labelControl36.Location = new System.Drawing.Point(187, 26);
     this.labelControl36.Name = "labelControl36";
     this.labelControl36.Size = new System.Drawing.Size(95, 20);
     this.labelControl36.TabIndex = 49;
     this.labelControl36.Text = "Company Name";
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl1.LineVisible = true;
     this.labelControl1.Location = new System.Drawing.Point(471, 6);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(81, 20);
     this.labelControl1.TabIndex = 54;
     this.labelControl1.Text = "Company Seq.";
     //
     // frmProducts
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(704, 454);
     this.Controls.Add(this.groupControl4);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.btnCancel);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmProducts";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Products";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmProducts_FormClosing);
     this.Load += new System.EventHandler(this.frmProducts_Load);
     this.Enter += new System.EventHandler(this.frmProducts_Enter);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtrabarGeneralinformation.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtfactor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuompurchase.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsize.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsale.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbValueMethod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAvgRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtToleranceDay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoadTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSpecialRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCostRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTransit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTarget.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNetBalance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceBonus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceStock.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityPCustomer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInventoryDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSaleTaxCalculation.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxVale.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxSalesDisc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseDiscountPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRetailPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkwolallow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAutoBonus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleBase.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleTaxReg.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNonPharma.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkExcempted.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkUseFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNorCotics.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkHideinTabs.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowMaxQtyDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkProductDiscontinue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTradePrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInCarton.Properties)).EndInit();
     this.XtrabarBonus.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.datagridBonus)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.datagridProductAllocation)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     this.groupControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxLimit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinLimit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBarCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShelfCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPresevasionStandard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClaimPartnerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.businessPartnerName.Properties)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgFileAttachments)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProductCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShortName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtArtical.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtProductName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSkuType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbGeneralName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProtoType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPack.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupSeq.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmanualgroup.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkCompanyDiscount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanySeq.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReportCompanyName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyName.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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ucChiTiet));
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiXem = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSua = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatExcel = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.cHUNGTUCHITIETTheoNgayBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsCamDo = new Phan_Mem_Quan_Ly_Cam_Do.CamDo.DS.dsCamDo();
     this.gbList = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colMa_Chi_Tiet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colMa_Chung_Tu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colNgay = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTen_Khach_Hang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo_CMND = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colDia_Chi = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo_Tien_Cam = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptMayTinh = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colTen_Tai_San = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colLoai_Vang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colTrong_Luong_Vang_18k = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTrong_Luong_Vang_24k = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTrong_Luong_Khac = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTrong_Luong = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colChuan_Do = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colGia_Tri_Vat_Cam = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSap_Xep = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTinh_Trang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptMayTinhPhanTram = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.txtDen = new DevExpress.XtraEditors.DateEdit();
     this.txtTu = new DevExpress.XtraEditors.DateEdit();
     this.cbTuyChon = new DevExpress.XtraEditors.ComboBoxEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.cHUNG_TU_CHI_TIET_Theo_NgayTableAdapter = new Phan_Mem_Quan_Ly_Cam_Do.CamDo.DS.dsCamDoTableAdapters.CHUNG_TU_CHI_TIET_Theo_NgayTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cHUNGTUCHITIETTheoNgayBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCamDo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinhPhanTram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDen.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTu.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTuyChon.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     this.SuspendLayout();
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiSua,
     this.bbiDong,
     this.bbiXem,
     this.bbiXuatExcel});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 7;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiSua),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXuatExcel),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong)});
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // bbiXem
     //
     this.bbiXem.Caption = "Xem";
     this.bbiXem.Id = 5;
     this.bbiXem.ImageIndex = 35;
     this.bbiXem.Name = "bbiXem";
     this.bbiXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXem_ItemClick);
     //
     // bbiSua
     //
     this.bbiSua.Caption = "Sửa";
     this.bbiSua.Id = 1;
     this.bbiSua.ImageIndex = 29;
     this.bbiSua.Name = "bbiSua";
     this.bbiSua.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiSua.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiSua_ItemClick);
     //
     // bbiXuatExcel
     //
     this.bbiXuatExcel.Caption = "Xuất Excel";
     this.bbiXuatExcel.Id = 6;
     this.bbiXuatExcel.ImageIndex = 54;
     this.bbiXuatExcel.Name = "bbiXuatExcel";
     this.bbiXuatExcel.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXuatExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatExcel_ItemClick);
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 3;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiDong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiDong_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1133, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 636);
     this.barDockControlBottom.Size = new System.Drawing.Size(1133, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 612);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1133, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 612);
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     this.img.Images.SetKeyName(54, "Excel-icon.png");
     //
     // gcList
     //
     this.gcList.DataSource = this.cHUNGTUCHITIETTheoNgayBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 26);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rptMayTinh,
     this.rptMayTinhPhanTram});
     this.gcList.Size = new System.Drawing.Size(1129, 584);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // cHUNGTUCHITIETTheoNgayBindingSource
     //
     this.cHUNGTUCHITIETTheoNgayBindingSource.DataMember = "CHUNG_TU_CHI_TIET_Theo_Ngay";
     this.cHUNGTUCHITIETTheoNgayBindingSource.DataSource = this.dsCamDo;
     //
     // dsCamDo
     //
     this.dsCamDo.DataSetName = "dsCamDo";
     this.dsCamDo.EnforceConstraints = false;
     this.dsCamDo.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList
     //
     this.gbList.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.gbList.Appearance.GroupRow.ForeColor = System.Drawing.Color.Red;
     this.gbList.Appearance.GroupRow.Options.UseFont = true;
     this.gbList.Appearance.GroupRow.Options.UseForeColor = true;
     this.gbList.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand2,
     this.gridBand3});
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.colMa_Chi_Tiet,
     this.colMa_Chung_Tu,
     this.colNgay,
     this.colTen_Khach_Hang,
     this.colSo_CMND,
     this.colDia_Chi,
     this.colSo_Tien_Cam,
     this.colTen_Tai_San,
     this.colLoai_Vang,
     this.colTrong_Luong,
     this.colChuan_Do,
     this.colGia_Tri_Vat_Cam,
     this.colSap_Xep,
     this.colTinh_Trang,
     this.colTrong_Luong_Vang_18k,
     this.colTrong_Luong_Vang_24k,
     this.colTrong_Luong_Khac});
     this.gbList.CustomizationFormBounds = new System.Drawing.Rectangle(427, 278, 216, 199);
     styleFormatCondition1.Appearance.ForeColor = System.Drawing.Color.Red;
     styleFormatCondition1.Appearance.Options.UseForeColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "Iif([Tinh_Trang] == \'R\',True  ,False )";
     this.gbList.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.gbList.GridControl = this.gcList;
     this.gbList.GroupPanelText = "Kéo cột và thả vào đây để nhóm dữ liệu";
     this.gbList.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien", null, " - Thành Tiền - {0:##,##0,###}")});
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsBehavior.AutoExpandAllGroups = true;
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colMa_Chung_Tu, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     //
     // gridBand1
     //
     this.gridBand1.Columns.Add(this.colMa_Chi_Tiet);
     this.gridBand1.Columns.Add(this.colMa_Chung_Tu);
     this.gridBand1.Columns.Add(this.colNgay);
     this.gridBand1.Columns.Add(this.colTen_Khach_Hang);
     this.gridBand1.Columns.Add(this.colSo_CMND);
     this.gridBand1.Columns.Add(this.colDia_Chi);
     this.gridBand1.Columns.Add(this.colSo_Tien_Cam);
     this.gridBand1.Columns.Add(this.colTen_Tai_San);
     this.gridBand1.Columns.Add(this.colLoai_Vang);
     this.gridBand1.MinWidth = 20;
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.VisibleIndex = 0;
     this.gridBand1.Width = 659;
     //
     // colMa_Chi_Tiet
     //
     this.colMa_Chi_Tiet.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Chi_Tiet.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Chi_Tiet.FieldName = "Ma_Chi_Tiet";
     this.colMa_Chi_Tiet.Name = "colMa_Chi_Tiet";
     this.colMa_Chi_Tiet.OptionsColumn.ReadOnly = true;
     this.colMa_Chi_Tiet.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colMa_Chung_Tu
     //
     this.colMa_Chung_Tu.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Chung_Tu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Chung_Tu.Caption = "Mã Chứng Từ";
     this.colMa_Chung_Tu.FieldName = "Ma_Chung_Tu";
     this.colMa_Chung_Tu.Name = "colMa_Chung_Tu";
     this.colMa_Chung_Tu.OptionsColumn.ReadOnly = true;
     this.colMa_Chung_Tu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Chung_Tu.Visible = true;
     this.colMa_Chung_Tu.Width = 100;
     //
     // colNgay
     //
     this.colNgay.AppearanceHeader.Options.UseTextOptions = true;
     this.colNgay.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNgay.Caption = "Ngày";
     this.colNgay.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colNgay.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.colNgay.FieldName = "Ngay";
     this.colNgay.Name = "colNgay";
     this.colNgay.OptionsColumn.ReadOnly = true;
     this.colNgay.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colNgay.Visible = true;
     //
     // colTen_Khach_Hang
     //
     this.colTen_Khach_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Khach_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Khach_Hang.Caption = "Tên Khách Hàng";
     this.colTen_Khach_Hang.FieldName = "Ten_Khach_Hang";
     this.colTen_Khach_Hang.Name = "colTen_Khach_Hang";
     this.colTen_Khach_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Khach_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Khach_Hang.Visible = true;
     this.colTen_Khach_Hang.Width = 100;
     //
     // colSo_CMND
     //
     this.colSo_CMND.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_CMND.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_CMND.Caption = "Số CMND";
     this.colSo_CMND.FieldName = "So_CMND";
     this.colSo_CMND.Name = "colSo_CMND";
     this.colSo_CMND.OptionsColumn.ReadOnly = true;
     this.colSo_CMND.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_CMND.Visible = true;
     //
     // colDia_Chi
     //
     this.colDia_Chi.AppearanceHeader.Options.UseTextOptions = true;
     this.colDia_Chi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDia_Chi.Caption = "Địa Chỉ";
     this.colDia_Chi.FieldName = "Dia_Chi";
     this.colDia_Chi.Name = "colDia_Chi";
     this.colDia_Chi.OptionsColumn.ReadOnly = true;
     this.colDia_Chi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDia_Chi.Visible = true;
     //
     // colSo_Tien_Cam
     //
     this.colSo_Tien_Cam.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Tien_Cam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Tien_Cam.Caption = "Số Tiền Cầm";
     this.colSo_Tien_Cam.ColumnEdit = this.rptMayTinh;
     this.colSo_Tien_Cam.FieldName = "So_Tien_Cam";
     this.colSo_Tien_Cam.Name = "colSo_Tien_Cam";
     this.colSo_Tien_Cam.OptionsColumn.ReadOnly = true;
     this.colSo_Tien_Cam.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Tien_Cam.Visible = true;
     this.colSo_Tien_Cam.Width = 81;
     //
     // rptMayTinh
     //
     this.rptMayTinh.AutoHeight = false;
     this.rptMayTinh.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinh.DisplayFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.EditFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.Name = "rptMayTinh";
     //
     // colTen_Tai_San
     //
     this.colTen_Tai_San.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Tai_San.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Tai_San.Caption = "Tên Tài Sản";
     this.colTen_Tai_San.FieldName = "Ten_Tai_San";
     this.colTen_Tai_San.Name = "colTen_Tai_San";
     this.colTen_Tai_San.OptionsColumn.ReadOnly = true;
     this.colTen_Tai_San.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Tai_San.Visible = true;
     this.colTen_Tai_San.Width = 78;
     //
     // colLoai_Vang
     //
     this.colLoai_Vang.AppearanceHeader.Options.UseTextOptions = true;
     this.colLoai_Vang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLoai_Vang.Caption = "Loại Vàng";
     this.colLoai_Vang.FieldName = "Loai_Vang";
     this.colLoai_Vang.Name = "colLoai_Vang";
     this.colLoai_Vang.OptionsColumn.ReadOnly = true;
     this.colLoai_Vang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLoai_Vang.Visible = true;
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "Trọng Lượng";
     this.gridBand2.Columns.Add(this.colTrong_Luong_Vang_18k);
     this.gridBand2.Columns.Add(this.colTrong_Luong_Vang_24k);
     this.gridBand2.Columns.Add(this.colTrong_Luong_Khac);
     this.gridBand2.Columns.Add(this.colTrong_Luong);
     this.gridBand2.MinWidth = 20;
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.VisibleIndex = 1;
     this.gridBand2.Width = 308;
     //
     // colTrong_Luong_Vang_18k
     //
     this.colTrong_Luong_Vang_18k.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Vang_18k.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Vang_18k.Caption = "18k";
     this.colTrong_Luong_Vang_18k.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Vang_18k.FieldName = "Trong_Luong_Vang_18k";
     this.colTrong_Luong_Vang_18k.Name = "colTrong_Luong_Vang_18k";
     this.colTrong_Luong_Vang_18k.OptionsColumn.ReadOnly = true;
     this.colTrong_Luong_Vang_18k.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTrong_Luong_Vang_18k.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Vang_18k", "{0:##,##0.###}")});
     this.colTrong_Luong_Vang_18k.Visible = true;
     //
     // colTrong_Luong_Vang_24k
     //
     this.colTrong_Luong_Vang_24k.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Vang_24k.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Vang_24k.Caption = "24k";
     this.colTrong_Luong_Vang_24k.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Vang_24k.FieldName = "Trong_Luong_Vang_24k";
     this.colTrong_Luong_Vang_24k.Name = "colTrong_Luong_Vang_24k";
     this.colTrong_Luong_Vang_24k.OptionsColumn.ReadOnly = true;
     this.colTrong_Luong_Vang_24k.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTrong_Luong_Vang_24k.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Vang_24k", "{0:##,##0.###}")});
     this.colTrong_Luong_Vang_24k.Visible = true;
     //
     // colTrong_Luong_Khac
     //
     this.colTrong_Luong_Khac.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Khac.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Khac.Caption = "Khác";
     this.colTrong_Luong_Khac.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Khac.FieldName = "Trong_Luong_Khac";
     this.colTrong_Luong_Khac.Name = "colTrong_Luong_Khac";
     this.colTrong_Luong_Khac.OptionsColumn.ReadOnly = true;
     this.colTrong_Luong_Khac.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTrong_Luong_Khac.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Khac", "{0:##,##0.###}")});
     this.colTrong_Luong_Khac.Visible = true;
     //
     // colTrong_Luong
     //
     this.colTrong_Luong.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong.Caption = "Trọng Lượng";
     this.colTrong_Luong.FieldName = "Trong_Luong";
     this.colTrong_Luong.Name = "colTrong_Luong";
     this.colTrong_Luong.OptionsColumn.ReadOnly = true;
     this.colTrong_Luong.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTrong_Luong.Visible = true;
     this.colTrong_Luong.Width = 83;
     //
     // gridBand3
     //
     this.gridBand3.Columns.Add(this.colChuan_Do);
     this.gridBand3.Columns.Add(this.colGia_Tri_Vat_Cam);
     this.gridBand3.Columns.Add(this.colSap_Xep);
     this.gridBand3.Columns.Add(this.colTinh_Trang);
     this.gridBand3.MinWidth = 20;
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.VisibleIndex = 2;
     this.gridBand3.Width = 245;
     //
     // colChuan_Do
     //
     this.colChuan_Do.AppearanceHeader.Options.UseTextOptions = true;
     this.colChuan_Do.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colChuan_Do.Caption = "Chuẩn Độ";
     this.colChuan_Do.FieldName = "Chuan_Do";
     this.colChuan_Do.Name = "colChuan_Do";
     this.colChuan_Do.OptionsColumn.ReadOnly = true;
     this.colChuan_Do.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colChuan_Do.Visible = true;
     //
     // colGia_Tri_Vat_Cam
     //
     this.colGia_Tri_Vat_Cam.AppearanceHeader.Options.UseTextOptions = true;
     this.colGia_Tri_Vat_Cam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colGia_Tri_Vat_Cam.Caption = "Giá Trị Vật Cầm";
     this.colGia_Tri_Vat_Cam.ColumnEdit = this.rptMayTinh;
     this.colGia_Tri_Vat_Cam.FieldName = "Gia_Tri_Vat_Cam";
     this.colGia_Tri_Vat_Cam.Name = "colGia_Tri_Vat_Cam";
     this.colGia_Tri_Vat_Cam.OptionsColumn.ReadOnly = true;
     this.colGia_Tri_Vat_Cam.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colGia_Tri_Vat_Cam.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Gia_Tri_Vat_Cam", "{0:##,##0.###}")});
     this.colGia_Tri_Vat_Cam.Visible = true;
     this.colGia_Tri_Vat_Cam.Width = 95;
     //
     // colSap_Xep
     //
     this.colSap_Xep.AppearanceHeader.Options.UseTextOptions = true;
     this.colSap_Xep.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSap_Xep.Caption = "Sắp Xếp";
     this.colSap_Xep.FieldName = "Sap_Xep";
     this.colSap_Xep.Name = "colSap_Xep";
     this.colSap_Xep.OptionsColumn.ReadOnly = true;
     this.colSap_Xep.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSap_Xep.Visible = true;
     //
     // colTinh_Trang
     //
     this.colTinh_Trang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTinh_Trang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTinh_Trang.FieldName = "Tinh_Trang";
     this.colTinh_Trang.Name = "colTinh_Trang";
     //
     // rptMayTinhPhanTram
     //
     this.rptMayTinhPhanTram.AutoHeight = false;
     this.rptMayTinhPhanTram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinhPhanTram.DisplayFormat.FormatString = "{0:##,##0.###} %";
     this.rptMayTinhPhanTram.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinhPhanTram.EditFormat.FormatString = "{0:##,##0.###} %";
     this.rptMayTinhPhanTram.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinhPhanTram.Name = "rptMayTinhPhanTram";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.txtDen);
     this.layoutControl1.Controls.Add(this.txtTu);
     this.layoutControl1.Controls.Add(this.cbTuyChon);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 24);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1133, 612);
     this.layoutControl1.TabIndex = 5;
     this.layoutControl1.Text = "layoutControl1";
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(541, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(590, 20);
     this.layoutControl2.TabIndex = 8;
     this.layoutControl2.Text = "layoutControl2";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(590, 20);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // txtDen
     //
     this.txtDen.EditValue = null;
     this.txtDen.Location = new System.Drawing.Point(397, 2);
     this.txtDen.MenuManager = this.bm;
     this.txtDen.Name = "txtDen";
     this.txtDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtDen.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDen.Properties.DisplayFormat.FormatString = "{0:dd/MM/yyyy}";
     this.txtDen.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtDen.Properties.EditFormat.FormatString = "{0:dd/MM/yyyy}";
     this.txtDen.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtDen.Size = new System.Drawing.Size(140, 20);
     this.txtDen.StyleController = this.layoutControl1;
     this.txtDen.TabIndex = 7;
     //
     // txtTu
     //
     this.txtTu.EditValue = null;
     this.txtTu.Location = new System.Drawing.Point(217, 2);
     this.txtTu.MenuManager = this.bm;
     this.txtTu.Name = "txtTu";
     this.txtTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtTu.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtTu.Properties.DisplayFormat.FormatString = "{0:dd/MM/yyyy}";
     this.txtTu.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtTu.Properties.EditFormat.FormatString = "{0:dd/MM/yyyy}";
     this.txtTu.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtTu.Size = new System.Drawing.Size(141, 20);
     this.txtTu.StyleController = this.layoutControl1;
     this.txtTu.TabIndex = 6;
     //
     // cbTuyChon
     //
     this.cbTuyChon.EditValue = "Tùy chọn";
     this.cbTuyChon.Location = new System.Drawing.Point(57, 2);
     this.cbTuyChon.MenuManager = this.bm;
     this.cbTuyChon.Name = "cbTuyChon";
     this.cbTuyChon.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbTuyChon.Properties.Items.AddRange(new object[] {
     "Tùy chọn",
     "Tất cả",
     "Tháng 1",
     "Tháng 2",
     "Tháng 3",
     "Tháng 4",
     "Tháng 5",
     "Tháng 6",
     "Tháng 7",
     "Tháng 8",
     "Tháng 9",
     "Tháng 10",
     "Tháng 11",
     "Tháng 12"});
     this.cbTuyChon.Size = new System.Drawing.Size(121, 20);
     this.cbTuyChon.StyleController = this.layoutControl1;
     this.cbTuyChon.TabIndex = 5;
     this.cbTuyChon.SelectedIndexChanged += new System.EventHandler(this.cbTuyChon_SelectedIndexChanged);
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1133, 612);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1133, 588);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cbTuyChon;
     this.layoutControlItem2.CustomizationFormText = "Tùy Chọn";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(180, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(109, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(180, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Tùy Chọn";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(50, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.txtTu;
     this.layoutControlItem3.CustomizationFormText = "Từ";
     this.layoutControlItem3.Location = new System.Drawing.Point(180, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(180, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(151, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(180, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Từ";
     this.layoutControlItem3.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem3.TextToControlDistance = 5;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.txtDen;
     this.layoutControlItem4.CustomizationFormText = "Đến";
     this.layoutControlItem4.Location = new System.Drawing.Point(360, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(180, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(151, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(179, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Đến";
     this.layoutControlItem4.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem4.TextToControlDistance = 5;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(539, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(594, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // cHUNG_TU_CHI_TIET_Theo_NgayTableAdapter
     //
     this.cHUNG_TU_CHI_TIET_Theo_NgayTableAdapter.ClearBeforeFill = true;
     //
     // ucChiTiet
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "ucChiTiet";
     this.Size = new System.Drawing.Size(1133, 636);
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cHUNGTUCHITIETTheoNgayBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCamDo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinhPhanTram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDen.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTu.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTuyChon.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #57
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     this.panelControlTop = new DevExpress.XtraEditors.PanelControl();
     this.label1 = new System.Windows.Forms.Label();
     this.panelControlMemberPackage = new DevExpress.XtraEditors.PanelControl();
     this.GridControlMemberPackage = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GridColumn28 = 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.GridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridControlMemberCredit = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberCredit = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.panelControlPackage = new DevExpress.XtraEditors.PanelControl();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK1 = new DevExpress.XtraEditors.SimpleButton();
     this.gridControlPackage = new DevExpress.XtraGrid.GridControl();
     this.gridViewPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPackageCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colItemDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colItemPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colChecked = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridControlCredit = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlTop)).BeginInit();
     this.panelControlTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberCredit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCredit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPackage)).BeginInit();
     this.panelControlPackage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlCredit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // panelControlTop
     //
     this.panelControlTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlTop.Controls.Add(this.label1);
     this.panelControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControlTop.Location = new System.Drawing.Point(0, 6);
     this.panelControlTop.Name = "panelControlTop";
     this.panelControlTop.Size = new System.Drawing.Size(1050, 44);
     this.panelControlTop.TabIndex = 0;
     this.panelControlTop.Paint += new System.Windows.Forms.PaintEventHandler(this.panelControlTop_Paint);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(14, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(344, 27);
     this.label1.TabIndex = 0;
     this.label1.Text = "Upgrade Package";
     //
     // panelControlMemberPackage
     //
     this.panelControlMemberPackage.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlMemberPackage.Location = new System.Drawing.Point(0, 0);
     this.panelControlMemberPackage.Name = "panelControlMemberPackage";
     this.panelControlMemberPackage.Size = new System.Drawing.Size(1037, 254);
     this.panelControlMemberPackage.TabIndex = 1;
     //
     // GridControlMemberPackage
     //
     this.GridControlMemberPackage.Location = new System.Drawing.Point(0, -5);
     this.GridControlMemberPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridControlMemberPackage.MainView = this.gridViewMemberPackage;
     this.GridControlMemberPackage.Name = "GridControlMemberPackage";
     this.GridControlMemberPackage.Size = new System.Drawing.Size(1037, 333);
     this.GridControlMemberPackage.TabIndex = 8;
     this.GridControlMemberPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMemberPackage});
     this.GridControlMemberPackage.Click += new System.EventHandler(this.GridControlMemberPackage_Click);
     //
     // gridViewMemberPackage
     //
     this.gridViewMemberPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.GridColumn28,
     this.GridColumn30,
     this.GridColumn31,
     this.GridColumn32,
     this.GridColumn33,
     this.GridColumn34,
     this.GridColumn35,
     this.GridColumn44,
     this.GridColumn45,
     this.GridColumn49});
     this.gridViewMemberPackage.GridControl = this.GridControlMemberPackage;
     this.gridViewMemberPackage.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMemberPackage.Name = "gridViewMemberPackage";
     this.gridViewMemberPackage.OptionsView.ColumnAutoWidth = false;
     this.gridViewMemberPackage.OptionsView.ShowGroupPanel = false;
     this.gridViewMemberPackage.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberPackage_FocusedRowChanged);
     this.gridViewMemberPackage.CustomColumnDisplayText += new DevExpress.XtraGrid.Views.Base.CustomColumnDisplayTextEventHandler(this.gridViewMemberPackage_CustomColumnDisplayText);
     //
     // GridColumn28
     //
     this.GridColumn28.Caption = "Package ID";
     this.GridColumn28.FieldName = "nPackageID";
     this.GridColumn28.Name = "GridColumn28";
     this.GridColumn28.OptionsColumn.AllowEdit = false;
     this.GridColumn28.OptionsColumn.AllowFocus = false;
     this.GridColumn28.OptionsFilter.AllowFilter = false;
     this.GridColumn28.Visible = true;
     this.GridColumn28.VisibleIndex = 0;
     this.GridColumn28.Width = 69;
     //
     // GridColumn30
     //
     this.GridColumn30.Caption = "Package Code";
     this.GridColumn30.FieldName = "strPackageCode";
     this.GridColumn30.Name = "GridColumn30";
     this.GridColumn30.OptionsColumn.AllowEdit = false;
     this.GridColumn30.OptionsColumn.AllowFocus = false;
     this.GridColumn30.OptionsFilter.AllowFilter = false;
     this.GridColumn30.Visible = true;
     this.GridColumn30.VisibleIndex = 1;
     this.GridColumn30.Width = 90;
     //
     // GridColumn31
     //
     this.GridColumn31.Caption = "Package Description";
     this.GridColumn31.FieldName = "strDescription";
     this.GridColumn31.Name = "GridColumn31";
     this.GridColumn31.OptionsColumn.AllowEdit = false;
     this.GridColumn31.OptionsColumn.AllowFocus = false;
     this.GridColumn31.OptionsFilter.AllowFilter = false;
     this.GridColumn31.Visible = true;
     this.GridColumn31.VisibleIndex = 2;
     this.GridColumn31.Width = 108;
     //
     // GridColumn32
     //
     this.GridColumn32.Caption = "Purchase Date";
     this.GridColumn32.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn32.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn32.FieldName = "dtPurchaseDate";
     this.GridColumn32.Name = "GridColumn32";
     this.GridColumn32.OptionsColumn.AllowEdit = false;
     this.GridColumn32.OptionsColumn.AllowFocus = false;
     this.GridColumn32.OptionsFilter.AllowFilter = false;
     this.GridColumn32.Width = 84;
     //
     // GridColumn33
     //
     this.GridColumn33.Caption = "Receipt No";
     this.GridColumn33.FieldName = "strReceiptNo";
     this.GridColumn33.Name = "GridColumn33";
     this.GridColumn33.OptionsColumn.AllowEdit = false;
     this.GridColumn33.OptionsColumn.AllowFocus = false;
     this.GridColumn33.OptionsFilter.AllowFilter = false;
     this.GridColumn33.Visible = true;
     this.GridColumn33.VisibleIndex = 3;
     this.GridColumn33.Width = 82;
     //
     // GridColumn34
     //
     this.GridColumn34.Caption = "Balance";
     this.GridColumn34.FieldName = "Balance";
     this.GridColumn34.Name = "GridColumn34";
     this.GridColumn34.OptionsColumn.AllowEdit = false;
     this.GridColumn34.OptionsColumn.AllowFocus = false;
     this.GridColumn34.OptionsFilter.AllowFilter = false;
     this.GridColumn34.Width = 84;
     //
     // GridColumn35
     //
     this.GridColumn35.Caption = "Start Date";
     this.GridColumn35.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn35.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn35.FieldName = "dtStartDate";
     this.GridColumn35.Name = "GridColumn35";
     this.GridColumn35.OptionsColumn.AllowEdit = false;
     this.GridColumn35.OptionsColumn.AllowFocus = false;
     this.GridColumn35.OptionsFilter.AllowFilter = false;
     this.GridColumn35.Visible = true;
     this.GridColumn35.VisibleIndex = 4;
     this.GridColumn35.Width = 73;
     //
     // GridColumn44
     //
     this.GridColumn44.Caption = "Expiry Date";
     this.GridColumn44.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn44.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn44.FieldName = "dtExpiryDate";
     this.GridColumn44.Name = "GridColumn44";
     this.GridColumn44.OptionsColumn.AllowEdit = false;
     this.GridColumn44.OptionsColumn.AllowFocus = false;
     this.GridColumn44.OptionsFilter.AllowFilter = false;
     this.GridColumn44.Visible = true;
     this.GridColumn44.VisibleIndex = 5;
     this.GridColumn44.Width = 104;
     //
     // GridColumn45
     //
     this.GridColumn45.Caption = "Free Indicator";
     repositoryItemCheckEdit1.AutoHeight = false;
     repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.GridColumn45.ColumnEdit = repositoryItemCheckEdit1;
     this.GridColumn45.FieldName = "fFree";
     this.GridColumn45.Name = "GridColumn45";
     this.GridColumn45.OptionsColumn.AllowEdit = false;
     this.GridColumn45.OptionsColumn.AllowFocus = false;
     this.GridColumn45.OptionsFilter.AllowFilter = false;
     this.GridColumn45.Visible = true;
     this.GridColumn45.VisibleIndex = 6;
     this.GridColumn45.Width = 110;
     //
     // GridColumn49
     //
     this.GridColumn49.Caption = "Remark";
     this.GridColumn49.FieldName = "strRemarks";
     this.GridColumn49.Name = "GridColumn49";
     this.GridColumn49.OptionsColumn.AllowEdit = false;
     this.GridColumn49.OptionsColumn.AllowFocus = false;
     this.GridColumn49.OptionsFilter.AllowFilter = false;
     this.GridColumn49.Visible = true;
     this.GridColumn49.VisibleIndex = 7;
     this.GridColumn49.Width = 218;
     //
     // GridControlMemberCredit
     //
     this.GridControlMemberCredit.Dock = System.Windows.Forms.DockStyle.Top;
     this.GridControlMemberCredit.Location = new System.Drawing.Point(0, 0);
     this.GridControlMemberCredit.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridControlMemberCredit.MainView = this.gridViewMemberCredit;
     this.GridControlMemberCredit.Name = "GridControlMemberCredit";
     this.GridControlMemberCredit.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit4});
     this.GridControlMemberCredit.Size = new System.Drawing.Size(1050, 332);
     this.GridControlMemberCredit.TabIndex = 9;
     this.GridControlMemberCredit.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMemberCredit});
     this.GridControlMemberCredit.Click += new System.EventHandler(this.GridControlMemberCredit_Click);
     //
     // gridViewMemberCredit
     //
     this.gridViewMemberCredit.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn2,
     this.gridColumn1,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn12,
     this.gridColumn11});
     this.gridViewMemberCredit.GridControl = this.GridControlMemberCredit;
     this.gridViewMemberCredit.Name = "gridViewMemberCredit";
     this.gridViewMemberCredit.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn1, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gridViewMemberCredit.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberCredit_FocusedRowChanged);
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Code";
     this.gridColumn2.FieldName = "strCreditPackageCode";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsColumn.AllowFocus = false;
     this.gridColumn2.OptionsColumn.ReadOnly = true;
     this.gridColumn2.OptionsFilter.AllowFilter = false;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 68;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Credit Package";
     this.gridColumn1.FieldName = "nCreditPackageID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.AllowFocus = false;
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.OptionsFilter.AllowFilter = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 79;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Description";
     this.gridColumn3.FieldName = "strDesciption";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.AllowFocus = false;
     this.gridColumn3.OptionsColumn.ReadOnly = true;
     this.gridColumn3.OptionsFilter.AllowFilter = false;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 68;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Date";
     this.gridColumn4.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn4.FieldName = "dtPurchaseDate";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width = 68;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Receipt #";
     this.gridColumn5.FieldName = "strReceiptNo";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.AllowFocus = false;
     this.gridColumn5.OptionsColumn.ReadOnly = true;
     this.gridColumn5.OptionsFilter.AllowFilter = false;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 68;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Balance";
     this.gridColumn6.DisplayFormat.FormatString = "n2";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "Balance";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 68;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Start Date";
     this.gridColumn7.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn7.FieldName = "dtStartDate";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsColumn.AllowFocus = false;
     this.gridColumn7.OptionsColumn.ReadOnly = true;
     this.gridColumn7.OptionsFilter.AllowFilter = false;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 68;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Expiry Date";
     this.gridColumn8.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn8.FieldName = "dtExpiryDate";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowEdit = false;
     this.gridColumn8.OptionsColumn.AllowFocus = false;
     this.gridColumn8.OptionsColumn.ReadOnly = true;
     this.gridColumn8.OptionsFilter.AllowFilter = false;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 7;
     this.gridColumn8.Width = 68;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Free";
     this.gridColumn9.ColumnEdit = this.repositoryItemCheckEdit4;
     this.gridColumn9.FieldName = "fFree";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowEdit = false;
     this.gridColumn9.OptionsColumn.AllowFocus = false;
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     this.gridColumn9.OptionsFilter.AllowFilter = false;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 8;
     this.gridColumn9.Width = 68;
     //
     // repositoryItemCheckEdit4
     //
     this.repositoryItemCheckEdit4.AutoHeight = false;
     this.repositoryItemCheckEdit4.Name = "repositoryItemCheckEdit4";
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Status";
     this.gridColumn10.FieldName = "nStatusID";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowEdit = false;
     this.gridColumn10.OptionsColumn.AllowFocus = false;
     this.gridColumn10.OptionsColumn.ReadOnly = true;
     this.gridColumn10.OptionsFilter.AllowFilter = false;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 9;
     this.gridColumn10.Width = 68;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Employee";
     this.gridColumn12.FieldName = "strEmployeeName";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.AllowEdit = false;
     this.gridColumn12.OptionsColumn.AllowFocus = false;
     this.gridColumn12.OptionsColumn.ReadOnly = true;
     this.gridColumn12.OptionsFilter.AllowFilter = false;
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 10;
     this.gridColumn12.Width = 68;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Remarks";
     this.gridColumn11.FieldName = "strRemarks";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowEdit = false;
     this.gridColumn11.OptionsColumn.AllowFocus = false;
     this.gridColumn11.OptionsFilter.AllowFilter = false;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 11;
     //
     // splitterControl1
     //
     this.splitterControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.splitterControl1.Location = new System.Drawing.Point(0, 0);
     this.splitterControl1.Name = "splitterControl1";
     this.splitterControl1.Size = new System.Drawing.Size(1050, 6);
     this.splitterControl1.TabIndex = 2;
     this.splitterControl1.TabStop = false;
     //
     // panelControlPackage
     //
     this.panelControlPackage.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlPackage.Controls.Add(this.simpleButton2);
     this.panelControlPackage.Controls.Add(this.simpleButtonOK1);
     this.panelControlPackage.Controls.Add(this.GridControlMemberPackage);
     this.panelControlPackage.Controls.Add(this.GridControlMemberCredit);
     this.panelControlPackage.Controls.Add(this.gridControlPackage);
     this.panelControlPackage.Controls.Add(this.gridControlCredit);
     this.panelControlPackage.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControlPackage.Location = new System.Drawing.Point(0, 50);
     this.panelControlPackage.Name = "panelControlPackage";
     this.panelControlPackage.Size = new System.Drawing.Size(1050, 618);
     this.panelControlPackage.TabIndex = 4;
     //
     // simpleButton2
     //
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton2.Location = new System.Drawing.Point(934, 579);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(90, 27);
     this.simpleButton2.TabIndex = 12;
     this.simpleButton2.Text = "Cancel";
     //
     // simpleButtonOK1
     //
     this.simpleButtonOK1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK1.Location = new System.Drawing.Point(830, 579);
     this.simpleButtonOK1.Name = "simpleButtonOK1";
     this.simpleButtonOK1.Size = new System.Drawing.Size(90, 27);
     this.simpleButtonOK1.TabIndex = 11;
     this.simpleButtonOK1.Text = "OK";
     this.simpleButtonOK1.Click += new System.EventHandler(this.simpleButtonOK1_Click);
     //
     // gridControlPackage
     //
     gridLevelNode1.RelationName = "Level1";
     this.gridControlPackage.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.gridControlPackage.Location = new System.Drawing.Point(0, 332);
     this.gridControlPackage.MainView = this.gridViewPackage;
     this.gridControlPackage.Name = "gridControlPackage";
     this.gridControlPackage.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit2});
     this.gridControlPackage.Size = new System.Drawing.Size(1037, 233);
     this.gridControlPackage.TabIndex = 3;
     this.gridControlPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewPackage});
     this.gridControlPackage.Click += new System.EventHandler(this.gridControlPackage_Click);
     //
     // gridViewPackage
     //
     this.gridViewPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colPackageCode,
     this.colItemDescription,
     this.colItemPrice,
     this.colChecked});
     this.gridViewPackage.GridControl = this.gridControlPackage;
     this.gridViewPackage.Name = "gridViewPackage";
     //
     // colPackageCode
     //
     this.colPackageCode.Caption = "Package Code";
     this.colPackageCode.FieldName = "strPackageCode";
     this.colPackageCode.Name = "colPackageCode";
     this.colPackageCode.OptionsColumn.AllowEdit = false;
     this.colPackageCode.OptionsFilter.AllowFilter = false;
     this.colPackageCode.Visible = true;
     this.colPackageCode.VisibleIndex = 1;
     this.colPackageCode.Width = 221;
     //
     // colItemDescription
     //
     this.colItemDescription.Caption = "Description";
     this.colItemDescription.FieldName = "strDescription";
     this.colItemDescription.Name = "colItemDescription";
     this.colItemDescription.OptionsColumn.AllowEdit = false;
     this.colItemDescription.OptionsFilter.AllowFilter = false;
     this.colItemDescription.Visible = true;
     this.colItemDescription.VisibleIndex = 2;
     this.colItemDescription.Width = 276;
     //
     // colItemPrice
     //
     this.colItemPrice.Caption = "Unit Price";
     this.colItemPrice.FieldName = "mListPrice";
     this.colItemPrice.Name = "colItemPrice";
     this.colItemPrice.OptionsColumn.AllowEdit = false;
     this.colItemPrice.OptionsFilter.AllowFilter = false;
     this.colItemPrice.Visible = true;
     this.colItemPrice.VisibleIndex = 3;
     this.colItemPrice.Width = 285;
     //
     // colChecked
     //
     this.colChecked.ColumnEdit = this.repositoryItemCheckEdit2;
     this.colChecked.FieldName = "Checked";
     this.colChecked.Name = "colChecked";
     this.colChecked.Visible = true;
     this.colChecked.VisibleIndex = 0;
     this.colChecked.Width = 52;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.repositoryItemCheckEdit2.ValueGrayed = "";
     //
     // gridControlCredit
     //
     gridLevelNode2.RelationName = "Level1";
     this.gridControlCredit.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode2});
     this.gridControlCredit.Location = new System.Drawing.Point(0, 332);
     this.gridControlCredit.MainView = this.gridView1;
     this.gridControlCredit.Name = "gridControlCredit";
     this.gridControlCredit.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit3});
     this.gridControlCredit.Size = new System.Drawing.Size(1037, 238);
     this.gridControlCredit.TabIndex = 10;
     this.gridControlCredit.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn15,
     this.gridColumn16});
     this.gridView1.GridControl = this.gridControlCredit;
     this.gridView1.Name = "gridView1";
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "CreditPackage Code";
     this.gridColumn13.FieldName = "strCreditPackageCode";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.OptionsColumn.AllowEdit = false;
     this.gridColumn13.OptionsFilter.AllowFilter = false;
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 0;
     this.gridColumn13.Width = 221;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Description";
     this.gridColumn14.FieldName = "strDescription";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowEdit = false;
     this.gridColumn14.OptionsFilter.AllowFilter = false;
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 1;
     this.gridColumn14.Width = 276;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Unit Price";
     this.gridColumn15.FieldName = "mListPrice";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.OptionsFilter.AllowFilter = false;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 2;
     this.gridColumn15.Width = 285;
     //
     // gridColumn16
     //
     this.gridColumn16.ColumnEdit = this.repositoryItemCheckEdit3;
     this.gridColumn16.FieldName = "Checked";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Width = 52;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     this.repositoryItemCheckEdit3.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.repositoryItemCheckEdit3.ValueGrayed = "";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(12, 18);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(106, 19);
     this.label2.TabIndex = 11;
     this.label2.Text = "Upgrade Type :";
     this.label2.Click += new System.EventHandler(this.label2_Click);
     //
     // comboBoxEdit1
     //
     this.comboBoxEdit1.EditValue = "Normal Package";
     this.comboBoxEdit1.Location = new System.Drawing.Point(118, 16);
     this.comboBoxEdit1.Name = "comboBoxEdit1";
     this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEdit1.Size = new System.Drawing.Size(120, 22);
     this.comboBoxEdit1.TabIndex = 12;
     this.comboBoxEdit1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit1_SelectedIndexChanged);
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.label2);
     this.panelControl1.Controls.Add(this.comboBoxEdit1);
     this.panelControl1.Location = new System.Drawing.Point(-7, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(1037, 48);
     this.panelControl1.TabIndex = 5;
     this.panelControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.panelControl1_Paint);
     //
     // FormUpgradePackage
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.ClientSize = new System.Drawing.Size(1050, 668);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.panelControlPackage);
     this.Controls.Add(this.panelControlTop);
     this.Controls.Add(this.panelControlMemberPackage);
     this.Controls.Add(this.splitterControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormUpgradePackage";
     this.ShowInTaskbar = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Upgrade Selection";
     this.Load += new System.EventHandler(this.FormUpgradePackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControlTop)).EndInit();
     this.panelControlTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberCredit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCredit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPackage)).EndInit();
     this.panelControlPackage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlCredit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmIns_Services));
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
     this.bnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.lueIDServiceGroup = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.txtCost = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.cboType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtUnit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel5.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueIDServiceGroup.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCost.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUnit.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.tableLayoutPanel1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(366, 367);
     this.panelControl1.TabIndex = 0;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel5, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 1);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(2, 2);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 7F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 81F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(362, 363);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // tableLayoutPanel5
     //
     this.tableLayoutPanel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.tableLayoutPanel5.ColumnCount = 2;
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 36.74033F));
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 63.25967F));
     this.tableLayoutPanel5.Controls.Add(this.bnAdd, 1, 0);
     this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel5.Location = new System.Drawing.Point(0, 319);
     this.tableLayoutPanel5.Margin = new System.Windows.Forms.Padding(0);
     this.tableLayoutPanel5.Name = "tableLayoutPanel5";
     this.tableLayoutPanel5.RowCount = 1;
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel5.Size = new System.Drawing.Size(362, 44);
     this.tableLayoutPanel5.TabIndex = 12;
     //
     // bnAdd
     //
     this.bnAdd.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.bnAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.bnAdd.Appearance.Options.UseFont = true;
     this.bnAdd.Image = ((System.Drawing.Image)(resources.GetObject("bnAdd.Image")));
     this.bnAdd.Location = new System.Drawing.Point(138, 8);
     this.bnAdd.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
     this.bnAdd.Name = "bnAdd";
     this.bnAdd.Size = new System.Drawing.Size(97, 28);
     this.bnAdd.TabIndex = 13;
     this.bnAdd.Text = "Cập nhật";
     this.bnAdd.Click += new System.EventHandler(this.bnAdd_Click);
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 3;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.773585F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30.61798F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 65.73034F));
     this.tableLayoutPanel2.Controls.Add(this.cboType, 2, 0);
     this.tableLayoutPanel2.Controls.Add(this.lueIDServiceGroup, 2, 1);
     this.tableLayoutPanel2.Controls.Add(this.labelControl1, 1, 2);
     this.tableLayoutPanel2.Controls.Add(this.txtName, 2, 2);
     this.tableLayoutPanel2.Controls.Add(this.labelControl2, 1, 3);
     this.tableLayoutPanel2.Controls.Add(this.txtCost, 2, 3);
     this.tableLayoutPanel2.Controls.Add(this.labelControl3, 1, 4);
     this.tableLayoutPanel2.Controls.Add(this.txtUnit, 2, 4);
     this.tableLayoutPanel2.Controls.Add(this.labelControl7, 1, 1);
     this.tableLayoutPanel2.Controls.Add(this.labelControl5, 1, 0);
     this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 28);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 5;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14F));
     this.tableLayoutPanel2.Size = new System.Drawing.Size(356, 288);
     this.tableLayoutPanel2.TabIndex = 1;
     //
     // lueIDServiceGroup
     //
     this.lueIDServiceGroup.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lueIDServiceGroup.Location = new System.Drawing.Point(124, 75);
     this.lueIDServiceGroup.Name = "lueIDServiceGroup";
     this.lueIDServiceGroup.Properties.Appearance.Options.UseTextOptions = true;
     this.lueIDServiceGroup.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lueIDServiceGroup.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueIDServiceGroup.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lueIDServiceGroup.Properties.NullText = "";
     this.lueIDServiceGroup.Size = new System.Drawing.Size(197, 20);
     this.lueIDServiceGroup.TabIndex = 5;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Location = new System.Drawing.Point(16, 134);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(86, 17);
     this.labelControl1.TabIndex = 6;
     this.labelControl1.Text = "Tên Dịch Vụ ";
     //
     // txtName
     //
     this.txtName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtName.Location = new System.Drawing.Point(124, 132);
     this.txtName.Name = "txtName";
     this.txtName.Properties.Appearance.Options.UseTextOptions = true;
     this.txtName.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.txtName.Properties.MaxLength = 250;
     this.txtName.Properties.NullValuePrompt = "Nhập tối đa 250 ký tự.";
     this.txtName.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtName.Size = new System.Drawing.Size(200, 20);
     this.txtName.TabIndex = 7;
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(16, 191);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(23, 16);
     this.labelControl2.TabIndex = 8;
     this.labelControl2.Text = "Giá ";
     //
     // txtCost
     //
     this.txtCost.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCost.Location = new System.Drawing.Point(124, 189);
     this.txtCost.Name = "txtCost";
     this.txtCost.Properties.Appearance.Options.UseTextOptions = true;
     this.txtCost.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.txtCost.Properties.DisplayFormat.FormatString = "{0:0,0}";
     this.txtCost.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.txtCost.Properties.EditFormat.FormatString = "{0:0,0}";
     this.txtCost.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.txtCost.Properties.Mask.EditMask = "n0";
     this.txtCost.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txtCost.Properties.MaxLength = 10;
     this.txtCost.Properties.NullValuePrompt = "Chỉ nhập số.";
     this.txtCost.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtCost.Size = new System.Drawing.Size(200, 20);
     this.txtCost.TabIndex = 9;
     //
     // labelControl3
     //
     this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.labelControl3.Location = new System.Drawing.Point(16, 249);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(84, 17);
     this.labelControl3.TabIndex = 10;
     this.labelControl3.Text = "Đơn Vị Tính ";
     //
     // cboType
     //
     this.cboType.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.cboType.EditValue = "Phòng";
     this.cboType.Location = new System.Drawing.Point(124, 18);
     this.cboType.Name = "cboType";
     this.cboType.Properties.Appearance.Options.UseTextOptions = true;
     this.cboType.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.cboType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboType.Properties.Items.AddRange(new object[] {
     "Tiệc",
     "Phòng"});
     this.cboType.Size = new System.Drawing.Size(194, 20);
     this.cboType.TabIndex = 3;
     //
     // txtUnit
     //
     this.txtUnit.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtUnit.Location = new System.Drawing.Point(124, 248);
     this.txtUnit.Name = "txtUnit";
     this.txtUnit.Properties.Appearance.Options.UseTextOptions = true;
     this.txtUnit.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.txtUnit.Properties.MaxLength = 50;
     this.txtUnit.Properties.NullValuePrompt = "Nhập tối đa 50 ký tự.";
     this.txtUnit.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtUnit.Size = new System.Drawing.Size(200, 20);
     this.txtUnit.TabIndex = 11;
     //
     // labelControl7
     //
     this.labelControl7.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.labelControl7.Location = new System.Drawing.Point(16, 77);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(102, 17);
     this.labelControl7.TabIndex = 4;
     this.labelControl7.Text = "Nhóm Dịch Vụ ";
     //
     // labelControl5
     //
     this.labelControl5.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.labelControl5.Location = new System.Drawing.Point(16, 20);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(88, 17);
     this.labelControl5.TabIndex = 2;
     this.labelControl5.Text = "Loại Dịch Vụ ";
     //
     // frmIns_Services
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(366, 367);
     this.Controls.Add(this.panelControl1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmIns_Services";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Thêm Mới Dịch Vụ";
     this.Load += new System.EventHandler(this.frmAddServices_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel5.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueIDServiceGroup.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCost.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUnit.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #59
0
		/// <summary>
		/// 设计器支持所需的方法 - 不要使用代码编辑器修改
		/// 此方法的内容。
		/// </summary>
		private void InitializeComponent()
		{
			this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_BatchMode = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_BatchMode = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_TerminalMachine = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_TerminalMachine = new DevExpress.Utils.Frames.NotePanel();
			this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
			this.gridControl2 = new DevExpress.XtraGrid.GridControl();
			this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.timer_SetMachineVolumn = new System.Timers.Timer();
			((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
			this.groupControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchMode.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TerminalMachine.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.timer_SetMachineVolumn)).BeginInit();
			this.SuspendLayout();
			// 
			// groupControl2
			// 
			this.groupControl2.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
			this.groupControl2.AppearanceCaption.Options.UseFont = true;
			this.groupControl2.Controls.Add(this.comboBoxEdit_BatchMode);
			this.groupControl2.Controls.Add(this.notePanel_BatchMode);
			this.groupControl2.Controls.Add(this.comboBoxEdit_TerminalMachine);
			this.groupControl2.Controls.Add(this.notePanel_TerminalMachine);
			this.groupControl2.Controls.Add(this.simpleButton4);
			this.groupControl2.Controls.Add(this.gridControl2);
			this.groupControl2.Location = new System.Drawing.Point(24, 14);
			this.groupControl2.Name = "groupControl2";
			this.groupControl2.Size = new System.Drawing.Size(528, 178);
			this.groupControl2.TabIndex = 2;
			this.groupControl2.Text = "Step Two:设定容量";
			// 
			// comboBoxEdit_BatchMode
			// 
			this.comboBoxEdit_BatchMode.EditValue = "群分模式";
			this.comboBoxEdit_BatchMode.Location = new System.Drawing.Point(120, 72);
			this.comboBoxEdit_BatchMode.Name = "comboBoxEdit_BatchMode";
			// 
			// comboBoxEdit_BatchMode.Properties
			// 
			this.comboBoxEdit_BatchMode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_BatchMode.Properties.Items.AddRange(new object[] {
																				   "群分模式",
																				   "单分模式"});
			this.comboBoxEdit_BatchMode.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_BatchMode.TabIndex = 15;
			this.comboBoxEdit_BatchMode.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BatchMode_SelectedIndexChanged);
			// 
			// notePanel_BatchMode
			// 
			this.notePanel_BatchMode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.notePanel_BatchMode.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_BatchMode.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_BatchMode.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_BatchMode.ForeColor = System.Drawing.Color.Black;
			this.notePanel_BatchMode.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_BatchMode.Location = new System.Drawing.Point(32, 72);
			this.notePanel_BatchMode.MaxRows = 5;
			this.notePanel_BatchMode.Name = "notePanel_BatchMode";
			this.notePanel_BatchMode.ParentAutoHeight = true;
			this.notePanel_BatchMode.Size = new System.Drawing.Size(80, 22);
			this.notePanel_BatchMode.TabIndex = 14;
			this.notePanel_BatchMode.TabStop = false;
			this.notePanel_BatchMode.Text = "分配模式:";
			// 
			// comboBoxEdit_TerminalMachine
			// 
			this.comboBoxEdit_TerminalMachine.EditValue = "1";
			this.comboBoxEdit_TerminalMachine.Location = new System.Drawing.Point(120, 40);
			this.comboBoxEdit_TerminalMachine.Name = "comboBoxEdit_TerminalMachine";
			// 
			// comboBoxEdit_TerminalMachine.Properties
			// 
			this.comboBoxEdit_TerminalMachine.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_TerminalMachine.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_TerminalMachine.TabIndex = 13;
			this.comboBoxEdit_TerminalMachine.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TerminalMachine_SelectedIndexChanged);
			// 
			// notePanel_TerminalMachine
			// 
			this.notePanel_TerminalMachine.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.notePanel_TerminalMachine.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TerminalMachine.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TerminalMachine.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TerminalMachine.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TerminalMachine.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TerminalMachine.Location = new System.Drawing.Point(32, 40);
			this.notePanel_TerminalMachine.MaxRows = 5;
			this.notePanel_TerminalMachine.Name = "notePanel_TerminalMachine";
			this.notePanel_TerminalMachine.ParentAutoHeight = true;
			this.notePanel_TerminalMachine.Size = new System.Drawing.Size(80, 22);
			this.notePanel_TerminalMachine.TabIndex = 12;
			this.notePanel_TerminalMachine.TabStop = false;
			this.notePanel_TerminalMachine.Text = " 门口机:";
			// 
			// simpleButton4
			// 
			this.simpleButton4.Location = new System.Drawing.Point(56, 136);
			this.simpleButton4.Name = "simpleButton4";
			this.simpleButton4.Size = new System.Drawing.Size(128, 23);
			this.simpleButton4.TabIndex = 2;
			this.simpleButton4.Text = "设定门口机容量";
			this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
			// 
			// gridControl2
			// 
			this.gridControl2.Dock = System.Windows.Forms.DockStyle.Right;
			// 
			// gridControl2.EmbeddedNavigator
			// 
			this.gridControl2.EmbeddedNavigator.Name = "";
			this.gridControl2.Location = new System.Drawing.Point(229, 18);
			this.gridControl2.MainView = this.gridView2;
			this.gridControl2.Name = "gridControl2";
			this.gridControl2.Size = new System.Drawing.Size(296, 157);
			this.gridControl2.TabIndex = 3;
			this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																										this.gridView2});
			// 
			// gridView2
			// 
			this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn5,
																							 this.gridColumn6});
			this.gridView2.GridControl = this.gridControl2;
			this.gridView2.Name = "gridView2";
			this.gridView2.OptionsCustomization.AllowFilter = false;
			this.gridView2.OptionsCustomization.AllowGroup = false;
			this.gridView2.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
			this.gridView2.OptionsView.ShowFilterPanel = false;
			this.gridView2.OptionsView.ShowFooter = true;
			this.gridView2.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn5
			// 
			this.gridColumn5.Caption = "班级编号";
			this.gridColumn5.FieldName = "machine_address";
			this.gridColumn5.Name = "gridColumn5";
			this.gridColumn5.Visible = true;
			this.gridColumn5.VisibleIndex = 0;
			// 
			// gridColumn6
			// 
			this.gridColumn6.Caption = "班级容量";
			this.gridColumn6.FieldName = "machine_volumn";
			this.gridColumn6.Name = "gridColumn6";
			this.gridColumn6.Visible = true;
			this.gridColumn6.VisibleIndex = 1;
			// 
			// timer_SetMachineVolumn
			// 
			this.timer_SetMachineVolumn.SynchronizingObject = this;
			this.timer_SetMachineVolumn.Elapsed += new System.Timers.ElapsedEventHandler(this.timer_SetMachineVolumn_Elapsed);
			// 
			// SetMachineVol
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
			this.BackColor = System.Drawing.Color.WhiteSmoke;
			this.ClientSize = new System.Drawing.Size(568, 221);
			this.Controls.Add(this.groupControl2);
			this.Name = "SetMachineVol";
			this.ShowInTaskbar = false;
			this.Text = "SetMachineVol";
			this.Closing += new System.ComponentModel.CancelEventHandler(this.SetMachineVol_Closing);
			this.Load += new System.EventHandler(this.SetMachineVol_Load);
			((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
			this.groupControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchMode.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TerminalMachine.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.timer_SetMachineVolumn)).EndInit();
			this.ResumeLayout(false);

		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.cmbtendertype = new DevExpress.XtraEditors.ComboBoxEdit();
     this.btnFile = new DevExpress.XtraEditors.SimpleButton();
     this.txtattachment = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtDocName = new DevExpress.XtraEditors.TextEdit();
     this.txtDescription = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.btnPickList = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.txtDocId = new System.Windows.Forms.MaskedTextBox();
     this.Productid = new DevExpress.XtraEditors.LabelControl();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbtendertype.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtattachment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescription.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.cmbtendertype);
     this.groupControl2.Controls.Add(this.btnFile);
     this.groupControl2.Controls.Add(this.txtattachment);
     this.groupControl2.Controls.Add(this.labelControl1);
     this.groupControl2.Controls.Add(this.txtDocName);
     this.groupControl2.Controls.Add(this.txtDescription);
     this.groupControl2.Controls.Add(this.labelControl8);
     this.groupControl2.Controls.Add(this.btnPickList);
     this.groupControl2.Controls.Add(this.labelControl2);
     this.groupControl2.Controls.Add(this.labelControl6);
     this.groupControl2.Controls.Add(this.txtDocId);
     this.groupControl2.Controls.Add(this.Productid);
     this.groupControl2.Location = new System.Drawing.Point(2, 0);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(332, 146);
     this.groupControl2.TabIndex = 93;
     //
     // cmbtendertype
     //
     this.cmbtendertype.EnterMoveNextControl = true;
     this.cmbtendertype.Location = new System.Drawing.Point(107, 91);
     this.cmbtendertype.Name = "cmbtendertype";
     this.cmbtendertype.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbtendertype.Properties.Items.AddRange(new object[] {
     "Form",
     "Report"});
     this.cmbtendertype.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbtendertype.Size = new System.Drawing.Size(168, 20);
     this.cmbtendertype.TabIndex = 107;
     //
     // btnFile
     //
     this.btnFile.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnFile.Location = new System.Drawing.Point(244, 111);
     this.btnFile.Name = "btnFile";
     this.btnFile.Size = new System.Drawing.Size(31, 21);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.btnFile.SuperTip = superToolTip1;
     this.btnFile.TabIndex = 94;
     this.btnFile.Text = "&File";
     this.btnFile.Click += new System.EventHandler(this.btnFile_Click);
     //
     // txtattachment
     //
     this.txtattachment.Location = new System.Drawing.Point(107, 111);
     this.txtattachment.Name = "txtattachment";
     this.txtattachment.Size = new System.Drawing.Size(136, 20);
     this.txtattachment.TabIndex = 105;
     //
     // labelControl1
     //
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl1.LineVisible = true;
     this.labelControl1.Location = new System.Drawing.Point(45, 113);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(72, 20);
     this.labelControl1.TabIndex = 106;
     this.labelControl1.Text = "Attachment";
     //
     // txtDocName
     //
     this.txtDocName.Location = new System.Drawing.Point(107, 51);
     this.txtDocName.Name = "txtDocName";
     this.txtDocName.Size = new System.Drawing.Size(169, 20);
     this.txtDocName.TabIndex = 98;
     this.txtDocName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtDocName_PreviewKeyDown);
     //
     // txtDescription
     //
     this.txtDescription.Location = new System.Drawing.Point(107, 71);
     this.txtDescription.Name = "txtDescription";
     this.txtDescription.Size = new System.Drawing.Size(169, 20);
     this.txtDescription.TabIndex = 99;
     this.txtDescription.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtDescription_PreviewKeyDown);
     //
     // labelControl8
     //
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl8.LineVisible = true;
     this.labelControl8.Location = new System.Drawing.Point(45, 93);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(72, 20);
     this.labelControl8.TabIndex = 104;
     this.labelControl8.Text = "Tender Type";
     //
     // btnPickList
     //
     this.btnPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnPickList.Appearance.Options.UseFont = true;
     this.btnPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPickList.Location = new System.Drawing.Point(154, 30);
     this.btnPickList.Name = "btnPickList";
     this.btnPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnPickList.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip2.Items.Add(toolTipTitleItem2);
     this.btnPickList.SuperTip = superToolTip2;
     this.btnPickList.TabIndex = 102;
     this.btnPickList.TabStop = false;
     this.btnPickList.Click += new System.EventHandler(this.btnPickList_Click);
     //
     // labelControl2
     //
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl2.LineVisible = true;
     this.labelControl2.Location = new System.Drawing.Point(45, 73);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(72, 20);
     this.labelControl2.TabIndex = 103;
     this.labelControl2.Text = "Description";
     //
     // labelControl6
     //
     this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl6.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl6.LineVisible = true;
     this.labelControl6.Location = new System.Drawing.Point(45, 53);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(79, 20);
     this.labelControl6.TabIndex = 101;
     this.labelControl6.Text = "Doc Name";
     //
     // txtDocId
     //
     this.txtDocId.Location = new System.Drawing.Point(107, 30);
     this.txtDocId.Mask = "000000";
     this.txtDocId.Name = "txtDocId";
     this.txtDocId.Size = new System.Drawing.Size(45, 21);
     this.txtDocId.TabIndex = 94;
     this.txtDocId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtDocId_PreviewKeyDown);
     //
     // Productid
     //
     this.Productid.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.Productid.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.Productid.LineVisible = true;
     this.Productid.Location = new System.Drawing.Point(45, 33);
     this.Productid.Name = "Productid";
     this.Productid.Size = new System.Drawing.Size(72, 20);
     this.Productid.TabIndex = 96;
     this.Productid.Text = "Doc Id";
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnAdd.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(2, 150);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(70, 23);
     toolTipItem1.Text = "Add New Module";
     superToolTip3.Items.Add(toolTipItem1);
     this.btnAdd.SuperTip = superToolTip3;
     this.btnAdd.TabIndex = 94;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(78, 150);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(70, 23);
     toolTipItem2.Text = "Cancel Current Operation";
     superToolTip4.Items.Add(toolTipItem2);
     this.btnCancel.SuperTip = superToolTip4;
     this.btnCancel.TabIndex = 95;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // frmTenderDocument
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(337, 177);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.groupControl2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox = false;
     this.Name = "frmTenderDocument";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Tender Document";
     this.Load += new System.EventHandler(this.frmTenderDocument_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbtendertype.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtattachment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescription.Properties)).EndInit();
     this.ResumeLayout(false);
 }