string strOperateType = "";  //操作方式 人工,升序,降序

        public IC_Initial()
        {
            InitializeComponent();

            try
            {
                strKeyA = CryptDes.DecryptDES(ini.IniReadValue("Key", "KeyA"), "EncryDes");
                strKeyB = CryptDes.DecryptDES(ini.IniReadValue("Key", "KeyB"), "EncryDes");
                DbHelperSQL.ComboxBind(this.cbxCoalKind, "TT_CoalKind", "CoalKindName", "CoalKindCode", "1=1", "CoalKindName");
                this.lblBeginCardNO.Visible = false;
                this.txtBeginCardNO.Visible = false;
            }
            catch
            {
                MessageBox.Show("请确认App.config文件中数据库设置是否正确!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }