HELLO,
HOW DO I KNOW WHEN THE MOUSE is PLACED ON DBBROWSE:HEADER?
FRANK
In order for this site to work correctly we need to store a small file (called a cookie) on your computer. Most every site in the world does this, however since the 25th of May 2011, by law we have to get your permission first. Please abandon the forum if you disagree.
Para que este foro funcione correctamente es necesario guardar un pequeño fichero (llamado cookie) en su ordenador. La mayoría de los sitios de Internet lo hacen, no obstante desde el 25 de Marzo de 2011 y por ley, necesitamos de su permiso con antelación. Abandone este foro si no está conforme.
Para que este foro funcione correctamente es necesario guardar un pequeño fichero (llamado cookie) en su ordenador. La mayoría de los sitios de Internet lo hacen, no obstante desde el 25 de Marzo de 2011 y por ley, necesitamos de su permiso con antelación. Abandone este foro si no está conforme.
OnMouseMove Browse:Header
OnMouseMove Browse:Header
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
> 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
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
I have no experience to do this alone, you can give me a little help?
Thanks in advance
Frank
OnMouseMove Browse:Header
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
> 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
Jose,
thanks so much
Frank
thanks so much
Frank