gpt4 book ai didi

mysql - mysql 中的 vb.net 组合框值

转载 作者:行者123 更新时间:2023-11-29 20:56:39 25 4
gpt4 key购买 nike

最近我创建了一个 pos,但我想使用组合框而不是单选按钮来选择税收选项,但我如何选择我想要的税收并进行数学计算:这是我的单选按钮代码,我想这样做,但是使用组合框

Dim SellPrice as Double
Dim Tax as Double
Dim FinalPrice


if radiobutton1=checked=true than
Final price *=Sellprice *0.18
else if radiobutton2=checked=true than
Final price *=Sellprice *0.5
end if

我想做同样的事情,但使用组合框而不是单选按钮

最佳答案

在您的表单中加载:

 Private Sub Form2_Load(sender As Object, e As EventArgs) Handles MyBase.Load
ComboBox1.Items.Add("0.18")
ComboBox1.Items.Add("0.5")
'Add other values if you wan
End sub

在您的验证按钮中:

 Private Sub BtnValidate_Click(sender As Object, e As EventArgs) Handles BtnValidate.Click

Dim SellPrice As Double
Dim Tax As Double
Dim FinalPrice
If ComboBox1.SelectedIndex > -1 Then
Tax = Convert.ToDouble(ComboBox1.Text)
FinalPrice *= SellPrice * Tax
End If
End Sub

关于mysql - mysql 中的 vb.net 组合框值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37569818/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com