把这个函数返回类型改为bool,然后在其它页面判断其返回值再决定是否执行之后的代码。
例如:
protected bool judgec(int money,string username)
{
int moneyn;
DBTranction db = new DBTranction();
string sql = "select xjsl from gs where gsname='" + username + "'";
DataSet ds = new DataSet();
ds = db.Select(sql);
moneyn = Int32.Parse(ds.Tables[0].Rows[0][0].ToString());
if (moneyn < money)
{
MessageBox.Show("你的现金不够!", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
return false;
}
return true;
}
我觉得可以把这个方法改为返回bool类型的方法,如果moneyn
框并返回FALSE,否则返回TRUE。
然后其他页面调用的时候,判断一下,如果方法返回TRUE,才执行之后代码!
MessageBox.Show("你的现金不够!", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;