この関数は私に問題を与え続けます。私はそれを機能させるための正しい組み合わせを見つけることができないようです. 一定の金額に達したら割引を適用しようとしていますが、変換エラーが発生し続けます。機能するようにすべてを定義するには、何をする必要がありますか?
Function coupon() As Decimal
Dim decdiscount As Decimal
Dim inta, intb, intc As Decimal
inta = 20.0
intb = 40.0
intc = 60.0
If lblSubtotal.Text > inta Then
decdiscount = 0.05
End If
If lblSubtotal.Text > intb Then
decdiscount = 0.1
End If
If lblSubtotal.Text > intc Then
decdiscount = 0.2
End If
Return decdiscount
End Function