我想乘文本值和組合框的值,並在orderprice文本 顯示它,我在SQL中使用的數據類型是所有這些輸入字符串是不正確的格式C#
「浮動」private void cb_oqty_SelectedIndexChanged(object sender, EventArgs e)
{
int orderprice;
int proprice=Convert.ToInt16(txt_oprice.Text);
int quantity = Convert.ToInt16(cb_oqty.SelectedItem);
orderprice = proprice * quantity;
txt_orderprice.Text = Convert.ToString(orderprice);
txt_orderprice.Update();
}
您需要放置斷點並調試個別行。只有這樣你才能找出哪個語句拋出異常。 – Yahya
我覺得組合填充所有項目時,它會拋出異常。 它是在選擇組合值之前還是選擇之後? –
我在這一行上收到錯誤int proprice = Convert.ToInt16(txt_oprice.Text); –