Search found 67 matches: acolors

Return to advanced search

Re: cyclometric circle

... I saw that it can not do them automatically I do not understand why if I associate a button with the function Mostra_Form(aCicloSmall,aColors,oBrw) then it create the form but then there is the erro U see on snapshot In the class I'm going to memorize the graph points where the numbers ...
by Silvio.Falconi
Wed Aug 03, 2022 8:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cyclometric circle
Replies: 46
Views: 3028

Re: To Mister Nages - xBrowser

... := { || HTMLPOP( GetActiveWindow(), nil, 0x000E, RTrim( oMensagem:getValueByPos( 13 ) ) ) } :bPaintText := <|oCol, hDC, cText, aRect, aColors| FW_SayTextHilite( hDC, cText, aRect, oFonte_Browse, aColors[ 1 ], aColors[ 2 ], ; aHilite, oCol ) Return NIL > END :nMarqueeStyle := MARQSTYLE_HIGHLROW ...
by oliveiros junior
Mon Aug 17, 2020 7:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Mister Nages - xBrowser
Replies: 21
Views: 2268

Re: To Mister Nages - xBrowser

Thank you mister nages, 1) how would this refresh occur? WITH OBJECT :aCols[ 3 ] :bPaintText := <|oCol, hDC, cText, aRect, aColors| FW_SayTextHilite( hDC, cText, aRect, oFonte_Browse, aColors[ 1 ], aColors[ 2 ], ; { aHilite } ) Return NIL > END There are two browsers when the first ...
by oliveiros junior
Sat Aug 15, 2020 1:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Mister Nages - xBrowser
Replies: 21
Views: 2268

Re: error on xbrowse footer

... see that cFooter := ::footerStr() and ::PaintBmpAndText( { nRow, nCol, nRow + nHeight, nRight }, ; cFooter, ::nFootStrAlign, ::bLeftText, oFont, aColors[ 1 ], ; nBmpNo, ::nFootBmpAlign, .t., ::nAlphaLevelFooter, .f. ) paints your footer. If you trace ::footerStr() you have to check if cEditPicture ...
by Otto
Thu Apr 30, 2020 8:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: error on xbrowse footer - RESOLVED! -
Replies: 33
Views: 3636

Re: Xbrowse button size

Can you try making this change in XBrowse.prg? Please locate the method METHOD PaintCellBtn( hDC, oRect, aColors ) CLASS TXBrwColumn The method looks like this: METHOD PaintCellBtn( hDC, oRect, aColors ) CLASS TXBrwColumn   local oBtn, oBrush   if ...
by nageswaragunupudi
Thu Nov 14, 2019 8:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse button size
Replies: 3
Views: 776

Re: Missing images in xBrowse

... another solution instead of using :SaveToBmp ? I tested : hBmp := FW_MakeYourBitmap( 64, 64, { |hDC,w,h| GradientFill( hDC, 0, 0, h, w, ; {{ 1, aColors[2] , aColors[4] }} ) } ) FW_SaveImage( hBmp, AllTrim( c_path2 + "Img64_" + ALLTRIM(STR(nCount[1])) + ".bmp" ) ) but the ...
by ukoenig
Fri Nov 08, 2019 8:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Missing images in xBrowse
Replies: 12
Views: 1924

Re: New FTDN September/Septiembre 2019 (FWH 19.09)

... otro control, sin crear realmente un control de medidor, utilizando esta función: PaintCircularMeter( oWnd, aRect, nInnerDia, nActual, nTotal, aColors, aPen ) viewtopic.php?f=3&t=37806 Ejemplos: \fwh\samples\meter01.prg, meter02.prg, meter03.prg * TBrush: - Nuevo método GdipBrush() --> ...
by Antonio Linares
Fri Oct 18, 2019 8:38 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2019 (FWH 19.09)
Replies: 1
Views: 2899

New FTDN September/Septiembre 2019 (FWH 19.09)

... any other control, without actually creating a meter contol, by using this function: PaintCircularMeter( oWnd, aRect, nInnerDia, nActual, nTotal, aColors, aPen ) http://forums.fivetechsupport.com/viewtopic.php?f=3&t=37806 \fwh\samples\meter01.prg, meter02.prg, meter03.prg * TBrush: - New method ...
by Antonio Linares
Sun Oct 13, 2019 11:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2019 (FWH 19.09)
Replies: 1
Views: 2899

FWH 1908: TPrinter class Enhancements: Charts, Tables, more

... "CM", "MM" or "PIXEL". If omitted, defaults to PIXEL. New methods: METHOD PieChart( aRect, aValues, [aColors], [aPen], [nStartAngle], [cUnits] )  For quickly diplaying a Piechart of values given in aValues array. aColors: ...
by nageswaragunupudi
Sun Sep 29, 2019 3:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 1908: TPrinter class Enhancements: Charts, Tables, more
Replies: 2
Views: 730

Re: resize a position with fw_drawimage

//------------- BMP-Brush ----------- FUNCTION DRAW_BMP( hDC, oBitmap, aColors, nColorSel ) LOCAL oBMPBrush, aGrad LOCAL aRect := GETCLIENTRECT( oBitmap:hWnd ) IF nColorSel = 1 aGrad := { { .5, CLR_WHITE, aColors[2] }, { .5, aColors[2], CLR_BLACK } } ELSE aGrad ...
by ukoenig
Mon May 20, 2019 9:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: resize a position with fw_drawimage
Replies: 12
Views: 1571

New FTDN July 2017 (FWH 17.07)

... (15) Setting a higher value produces a increase in item height - Added parameter lPop to METHOD AddEdit, for use as MENU POPUP AddEdit( aColors, cFile, cRes, lPop ) Sample: Function MyEditMnu( nR, nC, nF, oDlg ) local oMnu MENU oMnu POPUP oMnu:AddEdit(,,,.T.) ENDMENU ACTIVATE MENU oMnu ...
by Antonio Linares
Sun Aug 13, 2017 8:19 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN July 2017 (FWH 17.07)
Replies: 5
Views: 2911

New FTDN May/Mayo 2017 (FWH 17.05)

... bitmaps in items of menu principal and popups * Enhancement: CLASS TMENU, allow resource of file image to menuitems in methods METHOD AddEdit( aColors, cFile, cRes ) METHOD AddFile( aColors, cFile, cRes ) METHOD AddHelp( cAbout, cCopyRight, aColors, cFile, cRes ) METHOD AddMdi( aColors, cFile, ...
by Antonio Linares
Sat May 20, 2017 10:15 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2017 (FWH 17.05)
Replies: 1
Views: 2432

Re: como saber si un objeto tomó el :end() o no ??

... bitmap oBmpLogo filename _cBmpLogo ID 180 of oDlg on right click fChangeLogo(@oBmpLogo) oBmpLogo:lTransparent:=.t. fDefineSays(@oDlg,aSays,aColors[3],aColors[1],oFontDlg) Redefine get oGet00 Var cNombreEmpresa Id 100 of oDlg READONLY oGet00:SetColor( _nCd_Black,_nCd_LBlue) Redefine get ...
by JoseAlvarez
Wed Mar 08, 2017 11:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: como saber si un objeto tomó el :end() o no ??
Replies: 10
Views: 1325

New FTDN February/Febrero 2017 (FWH 17.02)

... an array of Headers to be shown in xbrowse. oTree:Cargo contains an array of grand aggregates. * New function ADORollupTreeBrowse( oRs, [bSetup], [aColors], [aFonts], [aPictures] ) Prepares a tree from a Rs with result of GROUP BY .. WITH ROLLUP and browses the tree. The above two functions work ...
by Antonio Linares
Fri Feb 24, 2017 12:37 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2017 (FWH 17.02)
Replies: 2
Views: 2107

Re: oBrw:bClrStd error in 16.04

... Please locate METHOD CreateBarGet() CLASS TXBrwColumn ( Line 12450 ) METHOD CreateBarGet() CLASS  TXBrwColumn   local aColors  := Eval( ::bClrEdit )   local lRight   := .f.   if ::uBarGetVal != nil .and. ::oBarGet == nil    ...
by nageswaragunupudi
Tue May 17, 2016 1:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBrw:bClrStd error in 16.04
Replies: 2
Views: 553
Next

Return to advanced search