Search found 37 matches: exttextout

Return to advanced search

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

... nRight }, hBrush ) DeleteObject( hBrush ) SetBkColor( hDC, CLR_BRWHS ) if aJustify != nil .and. aJustify[ n ] SetTextAlign( hDC, TA_RIGHT ) ExtTextOut( hDC, nTop, nRight - 2, { nTop, nLeft, nBottom, nRight }, cValToChar( aValues[ n ] ) ) else SetTextAlign( hDC, TA_LEFT ) ExtTextOut( hDC, ...
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: 616

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: 6329

Re: Label new

Silvio,

Use ExtTextOut() instead of TextOut(), so you can specify the width and height
by Antonio Linares
Tue Jan 31, 2017 8:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Label new
Replies: 16
Views: 4484

Imprimir texto con brush (SOLUCIONADO)

... hBrush)oBrush:End() ¿ Permite la clase printer imprimir textos con brush ? ¿ Hay que usar/ funcionara con la funcion API ExtTextOut() ? Saludos
by hmpaquito
Mon Oct 10, 2016 11:48 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imprimir texto con brush (SOLUCIONADO)
Replies: 6
Views: 844

Re: To Antonio

... 2015-10-15 NAGESWARARAO GUNUPUDI ce50b4e c5cnew.c: function GetFontMenu() made compatible with 64 bit 2015-10-13 Antonio Linares f030f1d * Fix for ExtTextOut() * Removed MinGW warning 2015-09-29 Cristobal Navarro e2e13e5 * Cleaning unnecessary code * Enhancement: TMenu, Font to the window does ...
by Antonio Linares
Wed Feb 03, 2016 9:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Antonio
Replies: 10
Views: 3103

Re: New FTDN September/Septiembre 2015 (FWH 15.09)

... shown in a different way from 32 bits. Now it is ok. September 2015 (revised build) ============================== * Fix: Fixed bug in function ExtTextOut(). * Unicode support extended to messagebar, TOutlook (all versions), TTreeView, TExplorerbar, TVistamenu, Tooltips, c5tooltips, etc * Enhancement: ...
by Antonio Linares
Thu Oct 15, 2015 2:57 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2015 (FWH 15.09)
Replies: 52
Views: 14905

Re: New FTDN September/Septiembre 2015 (FWH 15.09)

Antonio, yes, just tested. Unfortunately there are the following problems: 1. The ExtTextOut() bug is still there, or there is something similar for DrawText() (the background of the browse cell is not fully painted). 2. Menu width is not correctly calculated (sometimes ...
by Enrico Maria Giordano
Sat Oct 03, 2015 9:20 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2015 (FWH 15.09)
Replies: 52
Views: 14905

Re: New FTDN September/Septiembre 2015 (FWH 15.09)

September 2015 (revised build)
==============================

* Fix: Fixed bug in function ExtTextOut().

* Unicode support extended to messagebar, TOutlook (all versions), TTreeView, TExplorerbar, TVistamenu, Tooltips, c5tooltips, etc

* Enhancement: Tooltip of oBtn TGet
by Antonio Linares
Sat Oct 03, 2015 7:35 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2015 (FWH 15.09)
Replies: 52
Views: 14905

Re: Urgent : Listbox problem in FWH 15.09

Antonio,

Antonio Linares wrote:Fixed, it was a little bug in function ExtTextOut()


Great! I thought to a bug in ExtTextOut() from the beginning but I didn't know that it was been changed.

EMG
by Enrico Maria Giordano
Tue Sep 29, 2015 4:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Urgent : Listbox problem in FWH 15.09
Replies: 25
Views: 4793

Re: Urgent : Listbox problem in FWH 15.09

Fixed, it was a little bug in function ExtTextOut() Michel, do you need the libs for Borland ? Working code: HB_FUNC( EXTTEXTOUT ) // ( hDC, nRow, nCol, aRect, cText, nStyle )  --> lSuccess{   RECT     ...
by Antonio Linares
Tue Sep 29, 2015 4:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Urgent : Listbox problem in FWH 15.09
Replies: 25
Views: 4793

Re: para Antonio : Sobre BTNBMP... oBtn:bPainted

... recursos y al final incluso podria tirar la aplicación. La forma de escribir texto es usando la función DrawText() ó tambien serviría la función ExtTextOut(): oBtn:bPainted = { | hDC | DrawText( hDC, "Hola", { 0, 0, oBtnBmp:nWidth, oBtnBmp:nHeight }, nStyle ) Ese array de cuatro elementos ...
by Antonio Linares
Sun Jul 27, 2014 9:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: para Antonio : Sobre BTNBMP... oBtn:bPainted (RESUELTO)
Replies: 9
Views: 1159

Re: Help for extextout

... The lines 4 - 11 are using < TEXTOUT > and < EXTEXTOUT >, showing the usage ( don't forget < 0 > !!! ) ExtTextOut( hDC, aPoints[1][1] - 80, aPoints[1][2] + 300, { 50, 50, 100, 200}, "ExTextout", 0 ) TextOut( hDC, aPoints[1][1] - 30, aPoints[1][2] ...
by ukoenig
Fri Jun 06, 2014 11:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for extextout
Replies: 8
Views: 2108

Re: Help for extextout

Sorry, I use this command : hOldFnt := SelectObject( hDc, oFont:hFont ) ExtTextOut( hDc, nLinea, 22, {nLinea,22,nLinea+16,22+nwidth}, aText[nCont,1] ) I not remeber but exit a selectobject command to make trasparent ... I'm trying to create a class to simulate ...
by Silvio.Falconi
Fri Jun 06, 2014 7:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for extextout
Replies: 8
Views: 2108

Re: set font using TextOut or ExtTextOut

don lowenstein wrote:I need to "paint" text "over" a bitmap.

Using the tsay() classes I get white background.


FWH 14.04 fixes the problem.
by nageswaragunupudi
Wed May 21, 2014 5:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: set font using TextOut or ExtTextOut
Replies: 3
Views: 596

Re: set font using TextOut or ExtTextOut

Don, http://www.pflegeplus.com/IMAGES/Textout1.jpg External font- and text-define from multiline gets http://www.pflegeplus.com/IMAGES/Textout2.jpg The code-part, extracted from the tool : ( there is still more included in the function, it is just the basic to underst...
by ukoenig
Tue May 20, 2014 4:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: set font using TextOut or ExtTextOut
Replies: 3
Views: 596
Next

Return to advanced search