you can use checkmarks, not sure about 'x'. The checkbox is one of the
standard controls in the form building toolbox. It can be bound to a
true/false field.
Place the transparent command buttons directly over the little square
text boxes. This is will prevent the "I" cursor from parking in
the text box.
Put the following code in each of the transparent command button click
events:
If IsNull(Me!tbxYesCheckBox.Value) = True Then
Me!tbxYesCheckBox.Value = "X"
Me!tbxNoCheckBox.Value = Null
Else
Me!tbxYesCheckBox.Value = Null
Me!tbxNoCheckBox.Value = "X"
End If
This code should put an "X" in either the Yes or No text box check
box, but not both.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.