gpt4 book ai didi

vb.net - 未为 '<='和 'Integer'类型定义运算符 'System.Windows.Forms.TextBox'

转载 作者:行者123 更新时间:2023-12-03 08:15:16 26 4
gpt4 key购买 nike

这是我正在尝试的代码:

If txtMonths >= 1 And txtMonths <= 6 Then
additionalDiscount = 0

最佳答案

intMonthsTextBox,而不是int,因此您不能仅将其用作int。您必须提取其文本值并将其首先转换为int:

Dim intMonthsVal As Integer = Integer.Parse(txtMonths.Text)
If intMonthsVal >= 1 AndAlso intMonthsVal <= 6 Then
additionalDiscount = 0
End If

关于vb.net - 未为 '<='和 'Integer'类型定义运算符 'System.Windows.Forms.TextBox',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33004103/

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