W
_wxxmlx
Unregistered / Unconfirmed
GUEST, unregistred user!
我在一个edit1.text中输入数字。当触发OnExit事件后
edit2.text等于adoquery3的单价字段乘以折扣字段再乘以edit1.text的值
我用的sql sver7.0 单价字段是smallmoney类型,折扣字段是decimal 类型
我现在的代码如下。
procedure Tkfba5.Edit1Exit(Sender: TObject);
begin
edit2.Text := Floattostr(strToint(edit1.Text) * (adoquery1.fieldbyname('danjia').AsInteger) *
(1 +(adoquery1.fieldbyname('zhekou').AsFloat)) );
end;
错误信息:
access vialation at addess 0987f097 in the module. 'coreide60.bpl' read of addess
谢谢帮忙。
edit2.text等于adoquery3的单价字段乘以折扣字段再乘以edit1.text的值
我用的sql sver7.0 单价字段是smallmoney类型,折扣字段是decimal 类型
我现在的代码如下。
procedure Tkfba5.Edit1Exit(Sender: TObject);
begin
edit2.Text := Floattostr(strToint(edit1.Text) * (adoquery1.fieldbyname('danjia').AsInteger) *
(1 +(adoquery1.fieldbyname('zhekou').AsFloat)) );
end;
错误信息:
access vialation at addess 0987f097 in the module. 'coreide60.bpl' read of addess
谢谢帮忙。