我创建了一个应用程序,其中的信息基于我在数据库中的信息。
当用户键入数据库中存在该代码的代码时,信息将出现并填满剩余的文本框。
这是我的数据库:
这是我输入“ SM0001”时程序的屏幕截图。
请注意,在我在“产品代码文本框”、“数量文本框”、“描述文本框”、“小计文本框”和“总计文本框”中键入“ SM0001 ”之前是空的。
当我在“产品代码文本框”中键入“ SM0001 ”时,它会显示属于我输入的该代码的所有数据。
注:数据库中的价格是程序中的小计
这是我的问题:当我在“产品代码文本框”中键入“ SM0002 ”时(我输入的代码不在数据库中,数据库中的产品代码只有“ SM0001 ”),程序停止并给了我错误“输入字符串格式不正确”,它指向这里:
price = Convert.ToDecimal(this.numericTextBox2.Text);
这是必要的代码:
private void textBox_TextChanged(object sender, EventArgs e)
{
UpdatePrice(sender, e);
}
private void UpdatePrice(object sender, EventArgs e)
{
decimal quantity = 0;
decimal price = 0;
int total = 0;
if (numericTextBox1.TextLength == 6)
{
this.numericUpDown1.Enabled = true;
quantity = Convert.ToInt32(this.numericUpDown1.Value);
price = Convert.ToDecimal(this.numericTextBox2.Text);
total = Convert.ToInt32(quantity * price);
if (numericUpDown1.Value > 0)
{
this.numericTextBox3.Text = total.ToString();
}
}
else if (numericTextBox1.TextLength != 6)
{
this.numericUpDown1.Enabled = false;
this.textBox5.Text = "";
this.numericUpDown1.Value = 0;
this.numericTextBox2.Text = "";
this.numericTextBox3.Text = "";
}
else
{
quantity = 0;
price = 0;
total = 0;
MessageBox.Show("There is no data based on your selection", "Error");
}
有人可以帮我吗?
“产品代码文本框是 NumericTextBox1”、“小计文本框是 NumericTextBox2”和“总文本框是 NumericTextBox3”