Search found 141 matches: saytext

Return to advanced search

Re: Problem with memo text printout

Thanks for pointing out. The problem is in the method SayText(). While methods Say(), cmSay() print the & character as expected, the method SayText() converts & as underscore of the next character (default behaviour of DrawTextEx()). This is ...
by nageswaragunupudi
Sat Feb 15, 2020 12:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with memo text printout
Replies: 5
Views: 1518

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

... está rectificado. Ahora es posible usar pinceles de color alfa y degradados alfa también. - Texto con fuentes perfiladas (fuentes huecas): METHOD SayText( nRow, nCol, cText, nWidth, nHeight, oFont, cAlign, nClrText, nClrBack, cUnits, nOutLineClr, nPenSize ) Se añaden los dos últimos parámetros, ...
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: 2902

New FTDN September/Septiembre 2019 (FWH 19.09)

... Now, this is rectified. It is now possible to use alpha color and alpha gradient brushes also. - Text with outlined fonts (hollow fonts): METHOD SayText( nRow, nCol, cText, nWidth, nHeight, oFont, cAlign, nClrText, nClrBack, cUnits, nOutLineClr, nPenSize ) The last 2 parameters, nOutlineClr and ...
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: 2902

Re: A METRO image-background without FREEIMAGE ?

... GDIP_IMAGEBRUSH( aPalBmp[ 1 ] ) -- -- oMetro:Show() oMetro:bPainted := {|| oMetro:DrawImage( c_Pfad1 + "Sea.jpg", , nil, 1 ), ; oMetro:SayText( "Stammdaten", { 30, 150, 120, 650 }, "L", oFontLarge, pBrush ) } http://www.pflegeplus.com/IMAGES/Metro15.jpg ...
by ukoenig
Sat Sep 07, 2019 7:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A METRO image-background without FREEIMAGE ?
Replies: 5
Views: 960

Re: FW_SayText error

Uwe, I made oBtn[1]:bPainted := { |hDC| FW_DrawImage( hDC, ".\bitmaps\ombrellone.bmp", { 2, 1, 124, 62 } ), ; FW_SayText( hDC, str(nOmbrellone1), { 7, 45, 98, 75 },,oBold2, CLR_BLACK, CLR_BLUE),; FW_SayText( hDC, cPrice, { 117, 91, 95, 155 },,oBold, CLR_HRED, CLR_YELLOW),; FW_SayText( hDC,...
by Silvio.Falconi
Wed Jul 17, 2019 4:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_SayText error
Replies: 2
Views: 509

Re: FW_SayText error

Silvio, oBtn[1]:bPainted := { |hDC| FW_DrawImage( hDC, ".\bitmaps\ombrellone.bmp", { 2, 1, 124, 62 } ), ; FW_SayText( hDC, str(nOmbrellone1), { 7, 45, 98, 75 },,oBold2, CLR_BLUE, CLR_BLUE),; FW_SayText( hDC, cPrice, { 117, 91, 95, 155 },,oBold, CLR_HRED, CLR_YELLOW),; FW_SayText( hDC, ggio...
by ukoenig
Wed Jul 17, 2019 3:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_SayText error
Replies: 2
Views: 509

FW_SayText error

Compiling a procedure with the fwh release April/May 2019 I have an error with FW_SayText https://i.postimg.cc/7P9GBTBF/errore-fw-txt.png in fact, a number was printed in the blue spot on source I made : //FW_SayText( ::hDCOut, cText, aRect, cAlign, oFont, nClrText, nClrBack ) oBtn[1...
by Silvio.Falconi
Tue Jul 16, 2019 4:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_SayText error
Replies: 2
Views: 509

Re: New FTDN May/Mayo 2019 (FWH 19.05)

... clase TRibbonBar para eliminar un mal efecto de pintado en algunas circustancias. * Corrección: En source\function\imgtxtio.prg: Las funciones FW_SayText() y FW_DrawImage() no estaban devolviendo el "BkMode" del contexto del dispositivo después de cambiar a transparente. Corregido ahora. ...
by Antonio Linares
Fri Jun 07, 2019 11:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2019 (FWH 19.05)
Replies: 4
Views: 3169

New FTDN May/Mayo 2019 (FWH 19.05)

... Class TRibbonBar Method PaintFld() to remove a painting artifact under some circunstances. * Fix: source\function\imgtxtio.prg: The functions FW_SayText() and FW_DrawImage() are not restoring the BkMode of the device context, after changing to transparent. Fixed now. * Enhancement: TPrinter class: ...
by Antonio Linares
Mon Jun 03, 2019 12:54 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2019 (FWH 19.05)
Replies: 4
Views: 3169

Re: Rpreview issues - PDF

... have worked quite well. The PDF's created with Img2Pdf were small and created quickly. When I decided to add color, I had some problems. So I used SayText( ) instead of Say( ) method and this created problems with my older version of Img2Pdf. Those issues were improved with the newer release of ...
by TimStone
Wed May 08, 2019 5:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rpreview issues - PDF
Replies: 58
Views: 7458

Re: ColCharts in xBrowse with percent

You can draw text using FW_SayText() over the same rectangle after drawing with FW_DrawShape()
by nageswaragunupudi
Sun May 05, 2019 6:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ColCharts in xBrowse with percent
Replies: 4
Views: 688

Re: Rpreview issues - PDF CONCLUSIONS

... I was able to get it working, there were issues still between that library and the View display of the document. I needed to use tPrinter's SayText() to display color properly, but this was causing issues in the ultimate PDF ( which is related to the no longer supported .dll functions ). ...
by TimStone
Tue Apr 30, 2019 6:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rpreview issues - PDF
Replies: 58
Views: 7458

Re: Problem with FW_SayText

thanks
by Silvio.Falconi
Thu Apr 25, 2019 3:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FW_SayText RESOLVED
Replies: 8
Views: 961

Re: Problem with FW_SayText

Code: Select all  Expand view
aBmps[nY,nX]:bPainted:= { |hDC,ps,oBtn| FW_SayText( hDC, ;
   ltrim( str( oBtn:Cargo[ 1 ] ) ), ;
   { 30, 2, 48, 25 },,oFontOmbrelloni, CLR_WHITE, nARGB(255,COLOR_ARANCIONE) , .t. ) }
 
by nageswaragunupudi
Thu Apr 25, 2019 3:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FW_SayText RESOLVED
Replies: 8
Views: 961

Re: Problem with FW_SayText

yes I write it on the same coordinates for each btnbmp If I set aBmps[nY,nX]:ccaption := ALLTRIM(STR(nElemento)) I see the numbers on btnbmp as you can see here but as cCaption https://i.postimg.cc/4x0H4szS/mmm.png I not Understood with old fwh it run ok , is there something modified...
by Silvio.Falconi
Thu Apr 25, 2019 2:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FW_SayText RESOLVED
Replies: 8
Views: 961
PreviousNext

Return to advanced search