C#中numericUpDown控件问题
代码如下:privatevoidlistBox1_SelectedIndexChanged(objectsender,EventArgse){intindex=this....
代码如下:private void listBox1_SelectedIndexChanged(object sender, EventArgs e) { int index = this.listBox1.SelectedIndex; if (index >= 0) { ds = MenuInfoOperation.selectAllMenuInfo(); this.txtMenuId.Text = ds.Tables["MenuAll"].Rows[index]["菜谱编码"].ToString(); this.txtMenuName.Text = ds.Tables[0].Rows[index]["菜谱名称"].ToString(); this.cmbMenuLevel.Text = ds.Tables[0].Rows[index]["菜谱类型"].ToString(); this.txtMenuName.Text = ds.Tables[0].Rows[index]["菜谱价格"].ToString(); string number=ds.Tables[0].Rows[index]["菜谱折扣"].ToString(); if (number != null&&number!="") { this.numericUpDown1.Value = (decimal)ds.Tables[0].Rows[index]["菜谱折扣"]; } else { this.numericUpDown1.Value = 0; }错误提示:每次到了 this.numericUpDown1.Value = (decimal)ds.Tables[0].Rows[index]["菜谱折扣"];就发生错误,不知道哪错了。。。各位大侠,帮帮忙。。。
展开
展开全部
楼上说的对。你的number定义成string了,然后用的时候做了装箱操作,decimal,如果实际数据中出来非数值类型的,那么肯定报错。或者是数值类型的源数据,但是长度超过了decimal 了,也会报错。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询