Search found 29 matches: asizes

Return to advanced search

Re: Ancho de pestañas de una RibbonBar

Estimado José,

oRb:ASizes es un array con el ancho de cada pestaña
by Antonio Linares
Mon Feb 12, 2024 8:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ancho de pestañas de una RibbonBar
Replies: 2
Views: 130

Re: TFolder -> TFolderEx Difference

... is "too much" ... just want that hole Text "fit" p.s. "where" is the CODE for it --- CLASS TFolderEx() have    DATA aSizes but i can not "see" Value assign to aSizes := --- METHOD PaintLR() have   nTextW = GetTextWidth() but PaintTB() not ... --- ...
by Jimmy
Tue Jan 31, 2023 6:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TFolder -> TFolderEx Difference
Replies: 5
Views: 440

TRIBBON.PRG - New nQuickHigh (DEFINE QUICKBUTTON )

CLASS TRibbonBar FROM TControl CLASSDATA lRegistered AS LOGICAL DATA oBold, oFont DATA aLeft DATA aPrompts DATA aDialogs DATA aSizes DATA aGrad DATA aGradFld DATA aGradOver DATA aGradHigh DATA aQuickRGrad DATA nQuickHigh INIT 32 <---- New METHOD Paint() CLASS TRibbonBar ... if ::aQuickRGrad ...
by MGA
Wed Nov 23, 2022 9:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TRIBBON.PRG - New nQuickHigh (DEFINE QUICKBUTTON )
Replies: 1
Views: 315

Re: How to make TFolderEx excel-like?

Dear Hua,

Please check DATA aSizes
by Antonio Linares
Thu Nov 10, 2022 7:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make TFolderEx excel-like?
Replies: 16
Views: 926

Re: Ribbon Theme

... last artifact goes away: We change this: case nType == 1 ...          GradientFill( hDCMem, nRow, nCol + 1 , nRow + ::nHeightFld - 1, nCol +  ::aSizes[ nPrompt ], aGradFld )   into this:          GradientFill( hDCMem, nRow, nCol, nRow + ::nHeightFld - 1, nCol +  ::aSizes[ nPrompt ], aGradFld ...
by Antonio Linares
Tue May 07, 2019 6:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 28229

Re: funciones de FWH y Harbour en un archivo .txt

... ADel(<aArray>,<nElement>,[<lShrink>])->aTarget ADir([<cFileSpec>],[<aFilenames>],[<aSizes>],[<aDates>],[<aTimes>],[<aAttributes>])->nFiles ADSBlob2File(cFileName,cFieldName)->lSuccess ADSClearAOF()->Nil ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5707

Re: TBarTabs Tamaño de los tabs

... ), 16, 16 ) */ Sería interesante poder modificar el BARHEIGHT de la clase con un parametro para poder hacer el cambio sin tocar la clase. el oTab:aSizes solo guarda el ancho del tab pero no el alto muchas gracias
by rterraz
Tue Sep 20, 2016 2:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TBarTabs Tamaño de los tabs
Replies: 3
Views: 738

Re: TBarTabs Tamaño de los tabs

Prueba a modificar:

oTabs:aSizes[ nTab ] := nNuevoAncho
...
oTabs:Refresh()

tendrás que hacerlo para cada una de los tabs
by Antonio Linares
Tue Sep 20, 2016 10:58 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TBarTabs Tamaño de los tabs
Replies: 3
Views: 738

Lista de funciones de [x]harbour con sus parametros para edi

... ) -> dNewDate ADel(<aArray>, <nElement>, [<lShrink>]) -> aTarget ADir([<cFileSpec>], [<aFilenames>], [<aSizes>], [<aDates>], [<aTimes>], [<aAttributes>]) -> nFiles AEval(<aArray>, <bBlock>, [<nStart>], [<nCount>]) ...
by carlos vargas
Wed Feb 11, 2015 2:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Lista de funciones de [x]harbour con sus parametros para edi
Replies: 2
Views: 1024

Re: Nuevo Grupo en Ribbonbar

... de la CLASE) Sin embargo, luego aparece en el METHOD CalcPos (linea 976 en mi version FWH 12.03) METHOD CalcPos() CLASS TRibbonBar local n, j ::ASizes := {} AFill( ::aLeft, 0 ) for n = 1 to Len( ::aDialogs ) AAdd( ::aSizes, If( ::aVisible[ n ], GetTextWidth( 0, StrTran( ::aPrompts[ n ], "&", ...
by cnavarro
Thu May 09, 2013 6:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo Grupo en Ribbonbar (Solucionado)
Replies: 7
Views: 1200

Re: Detect Memo Field

... Memo Ihave a xbrowse with .... @ 0, 0 XBROWSE oBrwLook OF oDlgLook SIZE -1,-20 PIXEL ; DATASOURCE cdbf ; COLUMNS aFields HEADERS aNames COLSIZES aSizes for n := 1 to Len( oBrwLook:aCols ) if oBrwLook:aCols[ n ]:cDataType == 'M' oBrwLook:aCols[ n ]:bStrData = GenLocalBlock( oBrwLook:aCols, n ) ...
by Silvio.Falconi
Thu May 02, 2013 10:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Detect Memo Field
Replies: 8
Views: 1292

to Nages:also for Vertical Xbrowse

... explain you I made this test : On this test I open clienti.dbf and set array for the field I wish to show I need to have this arrays (aCampi,aNomi,aSizes) to create the xbrowse Main Function test() aCampi := { "CODCF", "RAGSOC", "RAGSOC1", "INDIR" } aNomi:= ...
by Silvio.Falconi
Tue Apr 30, 2013 3:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages:also for Vertical Xbrowse
Replies: 6
Views: 1692

Re: Change on Vertical show with xbrowse

... and how I can to create acols from xbrowse ? I thiked this : LOCAL nLen := Len( oBrowse:aCols ) LOCAL aHeader [ nLen ] LOCAL aShow [ nlen ] LOCAL aSizes [ nLen ] LOCAL aArray [ nLen ] FOR n := 1 TO nLen aHeader [ n ] := oBrowse:aCols[ n ]:cHeader aShow [ n ] := ! oBrowse:aCols[ n ]:value aArray ...
by Silvio.Falconi
Mon Apr 29, 2013 9:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change on Vertical show with xbrowse
Replies: 5
Views: 1631

SHOW A SIMPLY XBROWSE

... } aNomi:={"Codice","Ragione Sociale","Ragione Sociale2","Indirizzo Legale"} aSizes:= {50,250 ,200,100 } the test run but it not show the records #Include "Fivewin.ch"#include 'xbrowse.ch'#include "constant.ch"Function ...
by Silvio.Falconi
Sun Apr 28, 2013 10:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SHOW A SIMPLY XBROWSE
Replies: 2
Views: 458

Problemas al crear la libreria TWBROWSE

... HB_FUNC( WBRWSELBOX )// ( hWnd, hDC, nRow, nFirstCol, nCurCol,; // lFocus, aSizes, hFont) { HWND hWnd = (HWND) hb_parnl( 1 ); HDC hDC = (HDC) hb_parnl( 2 ); WORD wRow = hb_parni( 3 ); WORD wIndex = hb_parni( 4 ); WORD wCol ...
by ander7319
Fri Jan 04, 2013 9:55 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas al crear la libreria TWBROWSE
Replies: 6
Views: 2853
Next

Return to advanced search