vote up 3 vote down star
2

In variants.pas, there is several VarIsXXX( )-functions for type-checking a variant. There is no VarIsBoolean( ), though.

What's your preferred way of checking if a variant is of type boolean?

flag

55% accept rate

2 Answers

vote up 12 vote down check

Try

varIsType(v, varBoolean);

It is easy then to write your own VarIsBoolean function

function VarIsBoolean(const V: Variant): Boolean;
begin
   result := varIsType(v, varBoolean);
end;
link|flag
vote up 0 vote down

Unfortunately when converting a variant to a boolean, the Delphi rtl first tries boolean and after that tries integer. Thus the error "Cannot convert variant xxx to integer" when you are actually converting a null variant to a boolean.

link|flag
How is that answer to this question? – Rob Kennedy Jun 12 at 14:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.