ToolTip question

  • Thread starter Thread starter JezB
  • Start date Start date
J

JezB

How do I make a tooltip remain visible until the user moves the mouse ?
Currently it stays visible for a few seconds and then disappears.
 
I think the best you can do (in round numbers) is set the tooltip's
AutoPopDelay to 30000 to hold the tooltip visible for 30 seconds. There may
be some coded value that means infinite or indefinite, but I don't know what
it would be (it isn't 0 or -1). If you go higher than 32767 (I guess), some
bounds checking reverts to a default values.
 
Cheers, that's good enough I guess.

AMercer said:
I think the best you can do (in round numbers) is set the tooltip's
AutoPopDelay to 30000 to hold the tooltip visible for 30 seconds. There
may
be some coded value that means infinite or indefinite, but I don't know
what
it would be (it isn't 0 or -1). If you go higher than 32767 (I guess),
some
bounds checking reverts to a default values.
 
Back
Top