Change 'control tip text' in mouse event ??

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have several buttons which do double-duty. I change the captions as I need to. When I do this, I need to change the control tip text. Can I change the control tip text in one of the mouse events and will this get control before the control tip text is displayed?
 
Yes, you can change the Control Tip text the same way you
are changing other things.

Try:

me.YourButtonName.ControlTipText = "Whatever"

HTH

Byron
-----Original Message-----
I have several buttons which do double-duty. I change
the captions as I need to. When I do this, I need to
change the control tip text. Can I change the control tip
text in one of the mouse events and will this get control
before the control tip text is displayed?
 
David,

Sorry if I did not understand completey.

I have not used the Mouse events much, however, I would
assume that if you have the same code as I described
previously in any event that fires, that event will make
the change to the tip.

HTH

Byron
 
Back
Top