FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour TEXT ON BITMAP
Posts: 3107
Joined: Fri Oct 07, 2005 06:28 PM
TEXT ON BITMAP
Posted: Fri Sep 08, 2006 12:11 PM
I have problem with a txt
 @ 0, 0 BITMAP oHeader OF oAgenda FILE ".\bitmaps\zonelab.bmp" NOBORDER PIXEL SIZE 1572, 80
                           oHeader:oBrush := oBrush

                           oHeader:bPainted = { || SetBkMode( oHeader:hDC, TRANSPARENT ),;
                                                   SetTextColor(oHeader:hDC,CLR_WHITE),;
                                                   TextOut( oBmp:hDC, 5, 5, "V D S W I N   " ) }


I can see the bitmap but I cannot see the text on bitmap
Can you help me pls.
-----------------------------------------------------------------------
Best Regards, Saludos



Falconi Silvio
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
TEXT ON BITMAP
Posted: Fri Sep 08, 2006 04:50 PM
Silvio,
oHeader:bPainted = { | hDC | SetBkMode( hDC, TRANSPARENT ),; 
                                                   SetTextColor( hDC,CLR_WHITE),; 
                                                   TextOut( hDC, 5, 5, "V D S W I N   " ) }
regards, saludos

Antonio Linares
www.fivetechsoft.com

Continue the discussion