You can set the field to display Yes/No, True/False, On/Off. If you want to display other values, you can create a text box with an IIF statement: IIF(chkbx=-1,"True value","False Value" where chkbx is the name of the checkbox field and "True Value" and "False Value" are the labels you want to use.
If you want to STORE values other than -1 and 0, then you will have to use a text or numeric Data Type.
one more addition to this. You can set up an option group using check boxes and then via code set the value
select case frame1
case 1
field.value = "this"
case 2
field.value = "that"
case 3
filed.value = "anythingelse"
end select
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.