Ejemplo n.º 1
0
        private void FormTopUpCredit_Load(object sender, System.EventArgs e)
        {
            DataRow r = GridView11.GetDataRow(GridView11.FocusedRowHandle);

            if (r != null)
            {
                if (System.Convert.ToInt32(r["Balance"]) > 0)
                {
                    tblCreditPackageRestrictionTableAdapter.Fill(this.dsCreditPackageRestrition.tblCreditPackageRestriction, r["strCreditPackageCode"].ToString(), System.Convert.ToDecimal(r["Balance"]));
                    //this.dsCreditPackageRestrition.tblCreditPackageRestriction.Select("mListPrice = " + r["Balance"].ToString());
                }
            }
        }