Contol tip text question (1 Viewer)

arage

Registered User.
Local time
Today, 05:30
Joined
Dec 30, 2000
Messages
537
Control tip text only runs when the mouse runs over a field. Can I do something so that when a control has the focus, to then run it’s Contol tip text. This way I get functionality of control tip text when a user TABS through controls also. Possible?
 

Robert Dunstan

Mr Data
Local time
Today, 05:30
Joined
Jun 22, 2000
Messages
291
Hi Arage,

Not sure if that is possible.

However one solution I use is making use of each controls tag property. Place your control tip text in here, add a label to your form and then in the On GotFocus event of each control you can set the caption property of your label to that control's tag

i.e MyLabel.Caption = MyControl.Tag

That way each time a user tabs through each control the label's caption will be updated

HTH
Rob
 

Users who are viewing this thread

Top Bottom