PDA

View Full Version : Solved: Yes/No Check boxes



BarkersIT
04-03-2007, 02:20 AM
Hello,

I have a table with a yes/no check box. On the design view of the table under type it says yes/no.

If I want to use VBA to do some checking on this value, what is the returned value from this field?

Is it a boolean yes = true, no = false or is it a string "yes" & "no"

Thankyou

mdmackillop
04-03-2007, 05:25 AM
They have numerical values
Yes = True = -1
No = False = 0

BarkersIT
04-03-2007, 05:57 AM
Thanks