| View previous topic :: View next topic |
| Author |
Message |
dpap Guest
|
Posted: Fri Nov 03, 2006 8:39 pm Post subject: Hint manualy activation |
|
|
Hi,
how can i activate manualy the hint of a TDrawGrid ?
thanks in advance |
|
| Back to top |
|
 |
JD Guest
|
Posted: Sat Nov 04, 2006 3:52 pm Post subject: Re: Hint manualy activation |
|
|
"dpap" <dpap (AT) softwaypro (DOT) gr> wrote:
| Quote: |
how can i activate manualy the hint of a TDrawGrid ?
|
TApplication has an ActivateHint method.
~ JD |
|
| Back to top |
|
 |
Peter Below (TeamB) Guest
|
Posted: Sat Nov 04, 2006 4:54 pm Post subject: Re: Hint manualy activation |
|
|
dpap wrote:
| Quote: | how can i activate manualy the hint of a TDrawGrid ?
|
The sequence
Application.CancelHint;
Application.ActivateHint(aScreenPositionInsideTheGrid);
should do that. But note that the hint may vanish on the next mouse
move if the mouse does not happen to sit above the grid. If you need a
hint window that is idependent of the VCL hint system you have to
create and manage your own instance of THintWindow.
--
Peter Below (TeamB)
Don't be a vampire (http://slash7.com/pages/vampires),
use the newsgroup archives :
http://www.tamaracka.com/search.htm
http://groups.google.com
http://www.prolix.be |
|
| Back to top |
|
 |
|