Página 1 de 1

OnMouseMove Browse:Header

Publicado: Jue Jun 14, 2012 7:32 pm
por franksoft
HELLO,
HOW DO I KNOW WHEN THE MOUSE is PLACED ON DBBROWSE:HEADER?
FRANK

OnMouseMove Browse:Header

Publicado: Vie Jun 15, 2012 2:02 pm
por jfgimenez
Franco,
> HOW DO I KNOW WHEN THE MOUSE is PLACED ON DBBROWSE:HEADER?
The browse has a DATA called oHeader which is the THeader object itself.
You may use it as desired, but becareful to not break normal browse
behaviour.
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info

OnMouseMove Browse:Header

Publicado: Vie Jun 15, 2012 4:05 pm
por franksoft
My need is to generate a specific cToolTip, when the mouse cursor on the header or footer.
I have no experience to do this alone, you can give me a little help?
Thanks in advance
Frank

OnMouseMove Browse:Header

Publicado: Sab Jun 16, 2012 9:17 pm
por jfgimenez
Franco,
> My need is to generate a specific cToolTip, when the mouse
> cursor on the header or footer.
> I have no experience to do this alone, you can give me a
> little help?
simply, select the column in design mode, and set its property called
cTooltip. ITOH, if you want to set the tooltip dinamically, that is,
when it will be shown, you have to set the event OnDispTooltip for the
header manually, so:
::oArrayBrowse1:oHeader:OnDispTooltip := {| oSender, cText, cTitle,
nIcon, nItem | cText := "This is the text", Nil }
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info

OnMouseMove Browse:Header

Publicado: Mié Jun 20, 2012 9:44 pm
por franksoft
Jose,
thanks so much
Frank