Check Boxes

northernbreaks

Registered User.
Local time
Today, 07:59
Joined
Sep 5, 2005
Messages
19
Hi
In my tables I have set a field to Yes/No and the format to be True/False.
When I activate the table it shows the field as a checkbox, however when I create a List Box on a form to that table it displays the fields as True/False, how can I get the list box to also display the field as a checkbox.


dave
 
Put a query between your form and table.
Use an expression like this for a query field:
Code:
MyCheckBox: IIf([MyTrueFalseFieldName],"√","")
Now you can refer to that field from anywhere on your form.

Get the checkmark character from Excel or Word if this doesn't copy correctly.
 
check boxes

Thanks for the tip


Dave
 

Users who are viewing this thread

Back
Top Bottom