Search found 58 matches: showtooltip

Return to advanced search

Re: oBtn:ToolTip - UTF8 encoding fails [Unsolved]

... BUTTON/TButton() and TBtnBmp() ToolTips! Can you please make this modification in "window.prg" and try? Locate these lines in the METHOD ShowToolTip() of Window.prg:       if IsWindowUnicode( ::hWnd )//         cText = HB_UTF8LEFT( cText, 98 ...
by nageswaragunupudi
Sat Nov 25, 2023 6:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBtn:ToolTip - UTF8 encoding fails [Unsolved]
Replies: 11
Views: 943

Re: ¿Se puede poner ctooltip en items de un combobox?

Se me ocurre que llames a los metodos ( DestroyToolTip() y ShowToolTip( nRow, nCol, cToolTip ) ) en el evento ON CHANGE del combo, a ver como se comporta
by cnavarro
Thu Nov 18, 2021 10:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Se puede poner ctooltip en items de un combobox?
Replies: 7
Views: 1143

Re: c5tooltip and btnbmp

... ValType( cToolTip ) == "B" cToolTip = Eval( cToolTip,self ) endif it call the action on eval() ok but then it Open a window ( see METHOD ShowToolTip) DEFINE WINDOW oToolTip,,,,,,, Perhaps Antonio can insert an option when the user call the eval action then window not create internal tooltip ...
by Silvio.Falconi
Mon Jul 16, 2018 4:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: c5tooltip and btnbmp
Replies: 6
Views: 890

Re: c5tooltip and btnbmp

it not found otooltip any solution pls ? When cTooltip DATA is evaluate, not send object to codeblock Please see method of Window CLASS METHOD ShowToolTip( nRow, nCol, cToolTip ) CLASS TWindow local aToolTip, nLenToolTip, oTemp, hWnd local cIcon, hIcon, cText, cTitle, nClrFore, nClrBack, nWidth ...
by cnavarro
Mon Jul 16, 2018 11:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: c5tooltip and btnbmp
Replies: 6
Views: 890

Re: show tooltip on btnbmp

... NOBORDER ; TOOLTIP cPosNome next ACTIVATE DIALOG oDlg CENTERED ; on init Mostra(aBtn) RETURN NIL Function Mostra(aBtn) for n= 1 to 4 aBtn[n]:showtooltip() next return nil
by Silvio.Falconi
Wed Jun 27, 2018 5:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: show tooltip on btnbmp
Replies: 13
Views: 1911

Re: show tooltip on btnbmp

Silvio,

oBtn:ShowTooltip()
by Antonio Linares
Mon Jun 25, 2018 7:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: show tooltip on btnbmp
Replies: 13
Views: 1911

Re: problema con ::Super:ShowToolTip()

Moises,

En FWH\samples está el ejemplo vistamnu1.prg

Si busco por VMENU me aparece ese ejemplo y otro en samples\menu\vmenu.prg
by Antonio Linares
Mon Dec 29, 2014 6:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: problema con ::Super:ShowToolTip()
Replies: 3
Views: 531

Re: problema con ::Super:ShowToolTip()

Antonio,

¿Tienes la clase VMENU de Paco García?. Muchas gracias.

Un saludo
by MOISES
Sun Dec 28, 2014 7:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: problema con ::Super:ShowToolTip()
Replies: 3
Views: 531

Re: problema con ::Super:ShowToolTip()

Moises,

Podrías proporcionar un pequeño ejemplo que lo reproduzca ? gracias :-)
by Antonio Linares
Sun Dec 28, 2014 1:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: problema con ::Super:ShowToolTip()
Replies: 3
Views: 531

problema con ::Super:ShowToolTip()

Antonio,

En una clase que tengo, cuando llamo a ::Super:ShowToolTip() resulta que se me cambia la fuente que tengo marcada.

No debe liberarse bien la fuente de ShowToolTip().

Muchas gracias.
by MOISES
Sun Dec 28, 2014 11:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: problema con ::Super:ShowToolTip()
Replies: 3
Views: 531

Re: TGRAPH Technical Question

George,

I just checked Class TWindow method ShowToolTip( nRow, nCol, cToolTip ) and it supports row and column, so it seems as we have all that we need :-)

Today I have to go out of the office, but I will review it later today.
by Antonio Linares
Tue Dec 23, 2014 7:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGRAPH Technical Question
Replies: 38
Views: 9369

Re: xBrowse - Tooltip

... la cantidad de cambios y hackings que tiene. Basicamente, como lo tengo, es interviniendo el metodo :MouseMove() donde se llama al metodo (padre) :ShowToolTip(). Es necesario una Data tipo codeblock por cada objeto oCol que tenga la descripcion a mostrar. El codeblock deberia recibir como parametro ...
by hmpaquito
Thu Dec 19, 2013 2:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse - Tooltip
Replies: 11
Views: 1637

Re: ejemplo c5Tooltip

... SUPER JUST AND iDEA also you can insert to windows class CLASSDATA oToolTip CLASSDATA lSuperTooltips and when you create the tooltip on METHOD ShowToolTip If :: lSuperTooltips ::oToolTip := TC5Tip():New( ............... ) else DEFINE WINDOW ::oToolTip FROM 0, 0 TO 1, 5 ; STYLE nOr( WS_POPUP, ...
by Silvio.Falconi
Sun Sep 15, 2013 9:03 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ejemplo c5Tooltip
Replies: 60
Views: 23893

Re: Antonio,need help!How to ShowToolTip without move the mouse

I recenty made this trick: Function UserShowToolTip(cText) oBrowse:DestroyToolTip() oBrowse:cToolTip:=cText // Create and destoy a dialog Define dialog odlg00 from 2,2 to 3,3 STYLE WS_POPUP Activate dialog oDlg00 NOWAIT oDlg00:end() ; oBrowse:setfocus() // Show de tooltip oBrowse:CheckToolTip()
by cladron
Mon Sep 20, 2010 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Antonio,need help!How to ShowToolTip without move the mouse
Replies: 24
Views: 4936

Re: Antonio,need help!How to ShowToolTip without move the mouse

How to change the time the tooltip is displayed and the time the tooltip take to appear, I saw on the MSDN that the tooltip has this atributes, but don't know how to change them... I think that with this 2 properties, 3 seconds for the first, and 0 miliseconds to the second, plus mousemove + SysRefr...
by sambomb
Fri Jun 11, 2010 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Antonio,need help!How to ShowToolTip without move the mouse
Replies: 24
Views: 4936
Next

Return to advanced search