我的项目分配需要使用使用 If 语句的输入验证。此外,如果用户将贸易津贴字段留空,则应使用默认的 $0。我的教科书根本没有帮助我理解这些是如何工作的,它只会显示一小部分代码,并且没有显示任何实际用途。我的整个项目按预期工作,但是当我尝试输入非数字数据或将字段留空时,程序崩溃。它确实显示了我设置的消息,但它没有让用户有机会修复他们的错误。
'Having a problem here...
AccessoriesTextBox.Text = AccessoriesAndFinish.ToString()
If CarSalesTextBox.Text <> " " Then
Try
CarSalesPrice = Decimal.Parse(CarSalesTextBox.Text)
Catch CarSalesException As FormatException
MessageBox.Show("Nonnumeric data entered for Car Sales Price.", "Data Entry Error",
MessageBoxButtons.OK)
CarSalesTextBox.Focus()
End Try
ElseIf CarSalesTextBox.Text <> "" Then
MessageBox.Show("Enter the Car Sales Price.", "Data Entry Error",
MessageBoxButtons.OK)
CarSalesTextBox.Focus()
End If
'Also having a problem here...
If TradeTextBox.Text <> "" Then
TradeAllowance = 0D
If TradeTextBox.Text <> " " Then
TradeAllowance = 0D
End If
End If
'Convert Trade Allowance to Decimal
TradeAllowance = Decimal.Parse(TradeTextBox.Text)