B
baoyun
Unregistered / Unconfirmed
GUEST, unregistred user!
if rst.fields['AA].value<>NULL then x := VarToStr(rst.fields['AA].value) else x :='9999'; if rst.fields['BB].value<>NULL then y := VarToStr(rst.fields['BB].value) else y :='9999'; if rst.fields['CC].value<>NULL then z := VarToStr(rst.fields['CC].value) else zs :='9999';AA为字符串类型,BB为整型;CC为浮点类型。取AA、BB的代码无问题,取CC则出现invalid variant operation错误。晕菜。菜鸟求教,望指点。