I want to create an event procedure in ACCESS under 'Events' to display a message on a form when the user gets to a certain field by tabbing.
1. Would 'On Got Focus' be the correct item to use? I tried in Code Builder to add the following text in the On Got Focus for the Check Box, but when I do the following, save it and tab through the form, nothing happens when I tab to that field.
Private Sub Check57_GotFocus()
Text = "You can use the space bar to easily select or deselect the check box."
End Sub
1. Would 'On Got Focus' be the correct item to use? I tried in Code Builder to add the following text in the On Got Focus for the Check Box, but when I do the following, save it and tab through the form, nothing happens when I tab to that field.
Private Sub Check57_GotFocus()
Text = "You can use the space bar to easily select or deselect the check box."
End Sub