F1 Help for Field

Novice1

Registered User.
Local time
Today, 00:04
Joined
Mar 9, 2004
Messages
385
Is there a simple way of creating F1 help messages for individual fields?

I don't want to use the status bar ... easily overlooked.

I searched (F1, field, help) without luck
 
what about the ControltipText property? Activated when the user hovers the mouse over the control
 
Easy way? No. The "Help" compiler that once existed is no longer so easily available and is not included with Office any more.

Here's the short and (not so) sweet of it. You can put a Key Down event to determine that a key was pressed and can use various functions to determine WHICH key was pressed. So there is the mechanical starting point. But the next logical question is, so now you know that F1 has been pressed. What are you going to do about it? What would you LIKE to do about it? There is where we can help.

CJ's advice is good and if all you want is really short help messages, the ControlTipText property is the easiest thing to use - and is built-in as a common property of controls. If you want more, then think about what more you want and tell us. We might have tips for you.
 
There is a slight delay before ControlTip text appears so users can overlook that as well
Another way is to use the Mouse Move event to display info text in a text box elsewhere on the form. This appears instantly and can be made more prominent than the Control Tip text. For example:

s!Aj6uvNR5L_ZkgsV1fMtLYBw4sa9aQw
 

Users who are viewing this thread

Back
Top Bottom