Search found 375 matches: tooltips

Return to advanced search

Re: Tooltip sobre TSButton disabled no funciona

Victor, Este es el código que usa FWH para los tooltips: #define FKG_FORCED_USAGE#include <Windows.h>#include <CommCtrl.h>#include <hbapi.h>#ifndef TTS_BALLOON   #define TTS_BALLOON           ...
by Antonio Linares
Thu Oct 17, 2024 9:13 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tooltip sobre TSButton disabled no funciona
Replies: 11
Views: 405

Re: DBF editors

En cuanto al idioma, es bastante débil. El portugués está "mezclado" con el inglés, pero todo. También se echa en falta TOOLTIPS explicativos y que la RESOLUCIÓN DEL VIDEO sea automática, o que se pueda cambiar en TIEMPO REAL a la RESOLUCIÓN que utilice cada usuario. ¿Puede ser? ...
by karinha
Mon Jul 01, 2024 4:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF editors
Replies: 78
Views: 8772

Re: Control EDIT y readonly.

Perdonad que no haya respondido antes, estoy en otros asuntos y he tenido que dejar aparcado este. También he descubierto que los Tooltips no funcionan para este control EDIT. En las pantallas acostumbro a usar Xbrowse muy sencillos que el usuario recorre buscando su registro, cuando se ...
by FiveWiDi
Thu Mar 28, 2024 7:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Control EDIT y readonly.
Replies: 5
Views: 1428

Re: hb_cdxPageSeekKey how to intercept this error

... It is a false positive. Anyway, I just update the release to 2.75 (with a little fix to the messagebar tooltips). Please check, although I think that it will receive the same false alert. :-( I'll check on Enrico. Thanks. I'll tell you now. Iré a ver ...
by karinha
Tue Mar 12, 2024 2:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_cdxPageSeekKey how to intercept this error
Replies: 18
Views: 2277

Re: hb_cdxPageSeekKey how to intercept this error

... It is a false positive. Anyway, I just update the release to 2.75 (with a little fix to the messagebar tooltips). Please check, although I think that it will receive the same false alert. :-(
by Enrico Maria Giordano
Tue Mar 12, 2024 2:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_cdxPageSeekKey how to intercept this error
Replies: 18
Views: 2277

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

UTF8 encoding fails - switches to Ansi - in 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( ...
by nageswaragunupudi
Sat Nov 25, 2023 6:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBtn:ToolTip - UTF8 encoding fails [Unsolved]
Replies: 11
Views: 1347

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

We will look into the issue of tooltips. :D Display of Utf8 depends purely on FWH Does this mean that we can only use chars provided by FWH, even if we use a different font? I tried it with the font 'unscii' from http://viznut.fi/unscii/ ...
by frose
Sat Nov 25, 2023 12:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBtn:ToolTip - UTF8 encoding fails [Unsolved]
Replies: 11
Views: 1347

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

We will look into the issue of tooltips. Display of Utf8 depends purely on FWH This has nothing to do with HB_CDPSELECT( "UTF8" ). This setting is useful only for Harbour file and directory functions when these names are in UTF8, ...
by nageswaragunupudi
Fri Nov 24, 2023 4:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBtn:ToolTip - UTF8 encoding fails [Unsolved]
Replies: 11
Views: 1347

oBtn:ToolTip - UTF8 encoding fails [Unsolved]

UTF8 encoding fails - switches to Ansi - in BUTTON/ TButton () and TBtnBmp () ToolTips! Sample: REQUEST HB_CODEPAGE_UTF8FUNCTION Main()   LOCAL oDlg, oBtn   FW_SetUnicode( .T. )   DEFINE DIALOG oDlg TITLE "UTF8 encoding fails in Button ToolTips ...
by frose
Fri Nov 24, 2023 10:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBtn:ToolTip - UTF8 encoding fails [Unsolved]
Replies: 11
Views: 1347

xbrowse and tooltip

... 15 ]    :bCellToolTip := { |oCol| "My ToolTip" }    end  I would like there to be a sign in those cells or column with tooltips like excel with comment (see example below): http://i.imgur.com/35PuOI6.png
by damianodec
Wed Nov 22, 2023 3:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse and tooltip
Replies: 5
Views: 779

Re: Xbrowse : Tooltips timers

bCellToolTip was introduced from FWH1701 ( January 2017 ) From whatsnew.txt * XBROWSE: - New: XBrColumn new DATA bCellToolTip: 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...
by nageswaragunupudi
Mon Jun 12, 2023 2:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : Tooltips timers
Replies: 3
Views: 308

Re: Xbrowse : Tooltips timers

This is for afther FW 21.06.. ? Will upgrade for some of the new stuff ))) I'm using a function because I need the value of the cell to be formatted in some kind. cell = Black,White,Green,Blue,Orange Tooltip needs to show 1. Black 2. White 3. Green 4. Blue ... Time will be there afther upgrade.
by Marc Venken
Mon Jun 12, 2023 1:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : Tooltips timers
Replies: 3
Views: 308

Re: Xbrowse : Tooltips timers

This long code is not at all required 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 := &...
by nageswaragunupudi
Mon Jun 12, 2023 12:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : Tooltips timers
Replies: 3
Views: 308

Xbrowse : Tooltips timers

I was looking into xbrowse for showing the tooltip as long as i'm on a cell, so the tooltip should stay, or If I could set a timer then I set it a long time. I'm using it to show information that needs to be longer on screen. In xbrowse code I don't see a timer code for it ? This I use now :    oBrw...
by Marc Venken
Mon Jun 12, 2023 8:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : Tooltips timers
Replies: 3
Views: 308

Re: Fivewin Uxtheme

... "Toolbar" "Status" "Menu" "ListView" "Progress" "Tab" "Trackbar" "Tooltips" "TreeView" "Spin" "Page" "Scrollbar" "Edit" "ComboBox" "Taskbar Clock" ...
by Jimmy
Sat Oct 29, 2022 10:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin Uxtheme
Replies: 8
Views: 1108
Next

Return to advanced search