I have several check boxes (Tick Boxes) on a form for Yes/No answers. The
problem is that when the user is using the Tab Key or Enter key to move
though the fields, it is not obvious when the cursor moves to a Check box.
Is there any way the Check Box can be changed so that it is obvious that
this is where the cursor is?
Thanks for any help
SteveM - 31 Oct 2007 11:11 GMT
You could place a box behind the control and use the GotFocus/LostFocus
events to set the BackColor but I usually set the TabStop property to 'No'
for these controls since they require input via mouse from the user.
Steve

Signature
Steve McGuire
MCSD, MCAD, MCP
> I have several check boxes (Tick Boxes) on a form for Yes/No answers. The
> problem is that when the user is using the Tab Key or Enter key to move
[quoted text clipped - 4 lines]
>
> Thanks for any help
John Spencer - 31 Oct 2007 12:09 GMT
If there is a label involved, you can use the checkbox's Got Focus event to
bold the label / change the text color of the label and the Lost Focus event
to set the label back to normal. Disadvantage is that if you are using a
continuous form any label will be bolded for all records.
By the way, pressing the space bar when the checkbox has the focus will
toggle the checkbox value.

Signature
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
.
>I have several check boxes (Tick Boxes) on a form for Yes/No answers. The
> problem is that when the user is using the Tab Key or Enter key to move
[quoted text clipped - 4 lines]
>
> Thanks for any help