FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin para Harbour/xHarbour PREVIEW. ERROR BASE/1079
Posts: 152
Joined: Mon Feb 13, 2006 08:23 PM
PREVIEW. ERROR BASE/1079
Posted: Thu Feb 23, 2006 06:03 PM

Hola a todos.

Cuando trato de sacar un listado con la cl谩usula PREVIEW me lanza el siguiente error:

Error description: Error BASE/1079 Argument error: .OR.
Args:
[ 1] = L .F.
[ 2] = U

Sin embargo, si lo lanzo directamente a la impresora sale perfectamente.

He tratado de compilar el TESTRPT2 que hay en SAMPLES y tambi茅n me da el mismo error.

Application

Path and name: E:\FWH\SAMPLES\TESTRPT2.exe (32 bits)
Size: 1,079,296 bytes
Time from start: 0 hours 0 mins 7 secs
Error occurred at: 02/22/06, 18:17:04
Error description: Error BASE/1079 Argument error: .OR.
Args:
[ 1] = L .F.
[ 2] = U

Stack Calls

Called from: => TWINDOW:ERASEBKGND(0)
Called from: => TWINDOW:HANDLEEVENT(0)
Called from: => TWINDOW:HANDLEEVENT(0)
Called from: => TWINDOW:HANDLEEVENT(0)
Called from: => _FWH(0)
Called from: => SHOWWINDOW(0)
Called from: => TWINDOW:ACTIVATE(0)
Called from: => RPREVIEW(0)
Called from: => (b)NEW(0)
Called from: => TREPORT:ACTIVATE(0)
Called from: => MAIN(51)

C贸mo se soluciona?

Gracias

FWH 20.12 BCC7
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
PREVIEW. ERROR BASE/1079
Posted: Thu Feb 23, 2006 08:23 PM
Ram贸n,

Es un error que se ha colado en el build de Febrero de FWH. Para solucionarlo hay que modificar la Clase TSay en classes\say.prg de la siguiente forma:
METHOD EraseBkGnd( hDC ) CLASS TSay

   DEFAULT ::lTransparent := .f.

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

return Super:EraseBkGnd( hDC )

Recompilas la clase y a帽ades el OBJ resultante a los OBJs de tu aplicaci贸n. A comienzos de Marzo publicaremos un nuevo build que corrige este problema.
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 152
Joined: Mon Feb 13, 2006 08:23 PM
PREVIEW. ERROR BASE/1079
Posted: Thu Feb 23, 2006 09:48 PM

Gracias, Antonio

Saludos

FWH 20.12 BCC7

Continue the discussion