accvbalearner
Registered User.
- Local time
- Today, 02:11
- Joined
- Jan 3, 2013
- Messages
- 42
Hi All,
Thanks in advance for any help that you can provide.
I have a form with many fields (25+), some with list boxes, some combo boxes and some regular text boxes. What I would like to do is have a label or text box in the form that will display the controltip text for the active control on the form. As the user moves from field to field completing the form the label/text box will change to that fields controltip. Users don't always use the mouse, sometimes they tab through so the hover event isn't effective in providing the help they may need to complete the form.
I'm not even sure where I should start this in VBA Code because I don't want the focus to ever be on this "help" label, it should just update as the user moves through the form.
I have tried using a Text Box with the Data Control Source set as '=[Screen].[ActiveControl].[Name]', but all this shows is the name of the Active box, is there a way to reference the ControlTip Text this way? I cannot use the Other Tag feature in Object Properties because it is already being used as a null check to make sure that the required information in the form is entered before taking the record.
Any help or ideas would be much appreciated.
Take Care.
Thanks in advance for any help that you can provide.
I have a form with many fields (25+), some with list boxes, some combo boxes and some regular text boxes. What I would like to do is have a label or text box in the form that will display the controltip text for the active control on the form. As the user moves from field to field completing the form the label/text box will change to that fields controltip. Users don't always use the mouse, sometimes they tab through so the hover event isn't effective in providing the help they may need to complete the form.
I'm not even sure where I should start this in VBA Code because I don't want the focus to ever be on this "help" label, it should just update as the user moves through the form.
I have tried using a Text Box with the Data Control Source set as '=[Screen].[ActiveControl].[Name]', but all this shows is the name of the Active box, is there a way to reference the ControlTip Text this way? I cannot use the Other Tag feature in Object Properties because it is already being used as a null check to make sure that the required information in the form is entered before taking the record.
Any help or ideas would be much appreciated.
Take Care.