Search found 150 matches: isappthemed

Return to advanced search

Re: WBrowse - color fondo cabecera y Congelar columnas- consulta

... siguiente forma: Color de fondo diferente para la cabecera de columna de ordenamiento actual (WBrowse.prg) ..... if ! lTree if nRowPos == 0 if ! IsAppThemed() WndBox( hDC, nTop - 1, nLeft - 1, nBottom, nRight ) WndBoxRaised( hDC, nTop, nLeft, nBottom - 1, nRight - 1 ) ---> José Concha, desde ...
by José
Tue Mar 21, 2023 2:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: WBrowse - color fondo cabecera y Congelar columnas- consulta
Replies: 6
Views: 646

Re: pending: xbrowse() translate

PLEASE ADD fwstring on each word sample

@ nRow - 1, 10 COMBOBOX nFilter SIZE 60, If( IsAppThemed(), 14, 60 ) PIXEL OF oDlg ;
ITEMS { Fwstring("Search For"), FwString("Show Only") } ;
by Silvio.Falconi
Mon Jan 06, 2020 12:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: pending: xbrowse() translate
Replies: 2
Views: 585

Re: A possible adjustment of a GET-action bmp ?

Silvio, in class tGet line 963 I moved the bmp 2 pixel to the top and adjusted the height that seems to work if ! IsAppThemed() ::oBtn:SetPos( -2 , ::oBtn:nLeft + 2 ) ::oBtn:nHeight = ::nHeight + 2 // otherwise You get space at the bottom endif[/color] http://www.pflegeplus.com/IMAGES/Testget2.jpg ...
by ukoenig
Fri Oct 04, 2019 6:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A possible adjustment of a GET-action bmp ?
Replies: 6
Views: 970

Re: Cómo dar color al Texto de CheckBox y Group Box?

... El último mensaje del hilo parece ser que conduce a una solución para aquél entonces, que suponía inhabilitar la funcion isAppThemed()
by AngelSalom
Wed Jul 17, 2019 7:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cómo dar color al Texto de CheckBox y Group Box?
Replies: 5
Views: 1117

Re: Problema en el refresco Checkbox

... diferente que realizan las clases de FW en el repintado en el caso de que este incluído esta información el los Recursos, presupongo que con el isAppThemed() ... pero no me he puesto a investigar más a fondo de momento .... estoy acabando de ajustar más código para el cambio de versión. Respecto ...
by AngelSalom
Mon Jul 15, 2019 5:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema en el refresco Checkbox (solucionado)
Replies: 24
Views: 3180

Re: Override Two

any solution please ? I change on Rpreview class this line : ( and it seems to run ok) if ! IsAppThemed() instead of if ! lRebar on these methods : TwoPages( lMenu ) Zoom( lMenu ) on Oldest rpreview there is wroten if ! IsAppThemed() it is the bug or I make a mistake ...
by Silvio.Falconi
Sun Nov 12, 2017 10:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Override Two
Replies: 4
Views: 910

Re: Ayuda DLL

Antonio, aquí la segunda parte: Error: Unresolved external '_HB_FUN_DRAWTHEMED' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|DIALOG Error: Unresolved external '_HB_FUN_GETDLGBASEUNITS' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|DIALOG Error: Unresolved external '_HB_FUN_CDLG2CHR' referenced from P...
by ricardog
Thu Aug 31, 2017 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda DLL
Replies: 24
Views: 6540

Re: Ayuda DLL

Antonio buenos dias, gracias por la ayuda Agrego la VM.LIB (xharbour), y me manda estos errorres :( :( Proyecto: Kept5, Entorno: BorlandDLL: [1]:Harbour.Exe Source\Tseguro.prg /m /n /es2 /ki /iP:\32bits\xharbour\include;P:\32bits\FWH\INCLUDE /i /oObj\Tseguro.c xHarbour Compiler build 1.2.1 (SimpLex)...
by ricardog
Thu Aug 31, 2017 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda DLL
Replies: 24
Views: 6540

Re: Themed vs Un-Themed ( classic desktop )

AppHasManifest() --> .t. if application is linked with manifest, whether or not themes are enabled on PC

IsThemeActive() --> .t. if theme is active on the PC

IsAppThemed() --> .t. only when both the above are true
by nageswaragunupudi
Fri Dec 18, 2015 3:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Themed vs Un-Themed ( classic desktop )
Replies: 4
Views: 924

Re: Error compiling with latest Xharbour commercial

Thanks Antonio. Now those errors went away. Now I'm starting to convert some old libraries that I'm using in a lot of places. I know that I must change them, but now I want to see this old procedure running. Then I'll make all the changes. One of them is the canal5 menu. One source, on c language, i...
by Massimo Linossi
Sat Jul 11, 2015 3:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error compiling with latest Xharbour commercial
Replies: 7
Views: 2132

Wbrowse Mejorado para probar

... nDataLines AS NUMERIC INIT 1.5 // Número de líneas según altura del font que será de alta la línea de datos METHOD setLook2007() INLINE ::l2007 := IsAppThemed(), ::l2007 // Activa el look 2007 en las cabeceras METHOD setLookOff() INLINE ::l2007 := .F., ::l2007 // Desactiva el look 2007 en las cabeceras ...
by jmartial
Mon Sep 15, 2014 5:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Wbrowse Mejorado para probar
Replies: 5
Views: 1087

Mejoras WBrowse

... izquierda congeladas DATA l2007 AS LOGICAL INIT .F. PROTECTED // 2007 look METHOD isL2007() INLINE ::l2007 METHOD setLook2007() INLINE ::l2007 := IsAppThemed(), ::l2007 METHOD setLookOff() INLINE ::l2007 := .F., ::l2007 I mplementado también el centrado de columnas si es nil el parámetro de aJustify.
by jmartial
Sat Sep 13, 2014 8:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mejoras WBrowse
Replies: 1
Views: 532

Re: Error de pintado Treeview

... aspirinas y de dar un paseo en coche regrese con animos recargados y he podido solucionar el primer problema de pintado.. agregando esto: FUNCTION IsAppThemed()RETURN .F. Tomado desde aqui despues de revisar varios mensajes y de darle vuelta al asunto: http://forums.fivetechsupport.com/viewtopic.php?f=3&t=23387&hilit=isappthemed ...
by cuatecatl82
Wed Aug 20, 2014 1:04 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error de pintado Treeview
Replies: 36
Views: 5991

FWH 1312 Radios transparentes SOLUCIONADO

Estimados amigos: Tengo problemas con los radio transparentes, no se pintan bien.Todo desde recursos. Alguna idea? Muchas gracias.

Con esto se soluciona, comentando esta funcion.
//FUNCTION IsAppThemed()
//RETURN .f.
by D.Fernandez
Wed Jan 29, 2014 3:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWH 1312 Radios transparentes SOLUCIONADO
Replies: 0
Views: 336

Re: Buton estilo 2010

... nombre que el ejecutable pero con extensión RC, he incuido el Windowsxp.Manifest que hay en la carpeta de FWH, también he incluido una función IsAppThemed y no he notado diferencias. Hay que hacer algo para usar ese tema. Un saludo Carlos
by colthop
Fri Nov 01, 2013 9:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Buton estilo 2010
Replies: 8
Views: 1175
Next

Return to advanced search