TPRINTER problem

Post Reply
ask
Posts: 99
Joined: Wed Nov 02, 2005 10:40 am

TPRINTER problem

Post by ask »

I have a problem when i use the say method from tprinter (fwh february 2006 build xharbour 0.99.60) .

I see that the error is at EraseBkGnd:

"METHOD EraseBkGnd( hDC ) CLASS TSay

if IsAppThemed() .or. ::lTransparent
return 1
endif

return Super:EraseBkGnd( hDC )"

If i comment the ".or. ::lTransparent" everything is ok. Is this the problem and if it is what is the solution?
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Ask,

Code: Select all

METHOD EraseBkGnd( hDC ) CLASS TSay 

   DEFAULT ::lTransparent := .f.

   if IsAppThemed() .or. ::lTransparent 
      return 1 
   endif 

return Super:EraseBkGnd( hDC ) 
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply