C
cw via AccessMonster.com
I have a Check Box (Check465) with it's associated Label (Label466) on my
form.
with this code:
-----------------------
Private Sub Check465_AfterUpdate()
If MsgBox("Checking this box means the Customer has authorized Clearwave to
obtain credit info?", vbYesNo, "Confirm") <> vbYes Then
Cancel = True
Me.Undo
End If
End Sub
----------------------
How change it to do the following when a User tabs to it:
1) Make the Label466 text go to Red
2) Force user to check the box
3) Don't allow user to tab past, click past with mouse etc.
I have the Tab order of the Form set to the correct order, but it's very hard
to see which Check Box your on.
Thanks,
cw
form.
with this code:
-----------------------
Private Sub Check465_AfterUpdate()
If MsgBox("Checking this box means the Customer has authorized Clearwave to
obtain credit info?", vbYesNo, "Confirm") <> vbYes Then
Cancel = True
Me.Undo
End If
End Sub
----------------------
How change it to do the following when a User tabs to it:
1) Make the Label466 text go to Red
2) Force user to check the box
3) Don't allow user to tab past, click past with mouse etc.
I have the Tab order of the Form set to the correct order, but it's very hard
to see which Check Box your on.
Thanks,
cw