Search found 37 matches: btooltip

Return to advanced search

Re: Xbrowse : Tooltips timers

... CodeBlock to return tooltip text. To show tooltip when mouse hovers over a cell. This supercedes oCol:bTooTip, which is depricated. Using bToolTip requires the programmer to write a separate function to naviato the mouse over row, pick the text and re- navicate to the current row, which ...
by nageswaragunupudi
Mon Jun 12, 2023 2:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : Tooltips timers
Replies: 3
Views: 229

Re: Xbrowse : Tooltips timers

... with XBrowse. Instead, please use this simple one line code: oBrw:bCellToolTips := { |o| o:Value } Use oCol:bCellToolTip instead of oCol:bToolTip. This does what your lengthy code does automatically. If you want to set the time, oBrw:bCellToolTips := { |o| { o:Value, nil, nil, ...
by nageswaragunupudi
Mon Jun 12, 2023 12:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : Tooltips timers
Replies: 3
Views: 229

Re: xbrowse - Tooltip

Dear Mr. Rao, It seems to me that bTooltip from xBrowse always selects the highlighted row. Is there a way to make it take the row your mouse hovers the pointer over? Best regard, Otto You are right about oCol:bToolTip. Please do not use ...
by nageswaragunupudi
Sat Mar 26, 2022 5:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse - Tooltip
Replies: 7
Views: 489

xbrowse - Tooltip

Dear Mr. Rao,

It seems to me that bTooltip from xBrowse always selects the highlighted row.
Is there a way to make it take the row your mouse hovers the pointer over?

Best regard,
Otto
by Otto
Sat Mar 26, 2022 8:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse - Tooltip
Replies: 7
Views: 489

Re: xbrowse old version (2015) oCol:bToolTip

ThankYou Mark
I hope this works out
oCol:bToolTip      := { |oBrw,nRow,nCol| If( oBrw:nArrayAt <= Len( aIncident[ 1 ] ), aIncident[ 1 , oBrw:MouseRowPos( nRow ) ], "" ) }

many thanks
by MarcoBoschi
Mon Jun 15, 2020 12:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse old version (2015) oCol:bToolTip
Replies: 2
Views: 453

Re: xbrowse old version (2015) oCol:bToolTip

Maybe here is something that can help...       oBrw:kleur:bToolTip :=  { | oBrw,r,c,f,oMouseCol,nMouseRow| MyColToolTip( oBrw,r,c,f,oMouseCol,nMouseRow ) }      oBrw:memotxt:bToolTip :=  { | oBrw,r,c,f,oMouseCol,nMouseRow| MyColToolTip( ...
by Marc Venken
Mon Jun 15, 2020 11:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse old version (2015) oCol:bToolTip
Replies: 2
Views: 453

xbrowse old version (2015) oCol:bToolTip

... using and old version of xbrowse (2015) Is it possible to modify this code in order to activate tooltip only if the cell has focus?   oCol:bToolTip      := { || If( oBrw:nArrayAt <= Len( aIncident[ 1 ] ), aIncident[ 1 , oBrw:nArrayAt ], ...
by MarcoBoschi
Mon Jun 15, 2020 8:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse old version (2015) oCol:bToolTip
Replies: 2
Views: 453

Re: show tooltip on btnbmp

nageswaragunupudi wrote:Please stop using bToolTip. This requires very complex code and now it is obsolete.

Instead use, bCellTooltip

Code: Select all  Expand view

oBrw:bCellToolTips := { |oMouseCol| oMouseCol:StrData }
 


Is it possible to set showtime in bCellToolTips?
by Horizon
Thu Jul 05, 2018 5:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: show tooltip on btnbmp
Replies: 13
Views: 1888

Re: show tooltip on btnbmp

Please stop using bToolTip. This requires very complex code and now it is obsolete.

Instead use, bCellTooltip

Code: Select all  Expand view

oBrw:bCellToolTips := { |oMouseCol| oMouseCol:StrData }
 
by nageswaragunupudi
Thu Jul 05, 2018 3:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: show tooltip on btnbmp
Replies: 13
Views: 1888

Re: show tooltip on btnbmp

... [cHeader], [Icon], [nClrFore], [nClrBack], [nWidth], [nDelayInSeconds] } Note: Color settings do not seem to work in Windows 10  oBrw:bToolTips   := ;         { | oBrw,r,c,f,oMouseCol,nMouseRow| MyColToolTip( oBrw,r,c,f,oMouseCol,nMouseRow ) }Function MyColToolTip( ...
by Horizon
Thu Jul 05, 2018 12:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: show tooltip on btnbmp
Replies: 13
Views: 1888

Re: Reservation Nages Test with New Xbrowse

... 1 ) next n and I have the same result https://s17.postimg.cc/5zo4j525b/image.png it is right or not ? If I insert also a tooltip :bToolTip := { | oBrw, nRow, nCol, nFlags | MyToolTip( oBrw, nRow, nCol, nFlags,aRes) } when I click on one clumn it hide the other columns.... why ?
by Silvio.Falconi
Thu May 03, 2018 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reservation Nages Test with New Xbrowse
Replies: 8
Views: 1717

Re: Tooltip of the selector column

Mr Natter This is not possible now. Now that you raised the issue, we shall keep it in our TODO list. Mr Armando and Mr Karinha Now oCol:bToolTip is superceded by oCol:bCellToolTip. We recommend using this and stop using bToolTip. When we use bCellToolTip, we do not need to create another ...
by nageswaragunupudi
Thu May 11, 2017 3:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tooltip of the selector column
Replies: 9
Views: 1170

Re: Change Layout of content of the tooltip

In FWH 17.01, we introduced bCellToolTip, which is extremely easier to implement than bToolTip. We recommend using bCellToolTip in the place of bToolTip and deprecate using bToolTip. The sample above is re-written using bCellToolTip #include "fivewin.ch"function ...
by nageswaragunupudi
Wed Jan 25, 2017 3:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change Layout of content of the tooltip
Replies: 10
Views: 2393

New FTDN January/Enero 2017 (FWH 17.01)

... CodeBlock to return tooltip text. To show tooltip when mouse hovers over a cell. This supercedes oCol:bTooTip, which is depricated. Using bToolTip requires the programmer to write a separate function to naviato the mouse over row, pick the text and re- navicate to the current row, which ...
by Antonio Linares
Wed Jan 25, 2017 8:37 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2017 (FWH 17.01)
Replies: 1
Views: 2040

Re: Show colsize togetter with colnames on rightclick

Marc, You can add the info at the bottom of Your defined tooltip-text oBrw1:aCols[ 2 ]:bToolTip := { | oBrw, nRow, nCol, nFlags | ; "Tooltip Col 2" + CRLF + "width : " + LTRIM(STR(oBrw1:aCols[ 2 ]:nWidth)) } http://www.pflegeplus.com/IMAGES/Xbrwseek7.jpg ...
by ukoenig
Sat Jan 21, 2017 10:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Show colsize togetter with colnames on rightclick
Replies: 7
Views: 1200
Next

Return to advanced search