我正在使用 PowerBuilder 12.5 Classic 开发计费系统,我需要为文本框设置 0;就像在 vb.net txtchange.Text = 0
我有两个下拉列表框
- ddlb_price(定义商品的价格值)
- ddlb_cash(客户给的现金金额)
- sle_change(收银员要给客户的零钱)
当收银员输入现金时,系统应设置 sle_change 的值。
1.这给了我语法错误;
if cash=price then
sle_fare.settext=0
end if
2. 这给出了“不兼容的类型”
if cash=price then
sle_fare.text=0
end if