Error en oBrw:ToExcel()

Post Reply
User avatar
acuellar
Posts: 1647
Joined: Tue Oct 28, 2008 6:26 pm
Location: Santa Cruz-Bolivia

Error en oBrw:ToExcel()

Post by acuellar »

Buenas tardes Estimados

Con Office 2021 me sale el siguiente error:
No se puede asignar la propiedad FreezePanes de la clase Window. (0x800A03EC): Microsoft Excel
TXBROWSE:TOEXCEL( 9335 )

Con Office 2019 me sale el siguiente error:
No se puede obtener la propiedad Paste de la clase Worksheet. (0x800A03EC): Microsoft Excel
TXBROWSE:TOEXCEL( 9241 )

Gracias por la ayuda
Saludos,

Adhemar C.
User avatar
Jimmy
Posts: 1740
Joined: Thu Sep 05, 2019 5:32 am
Location: Hamburg, Germany
Has thanked: 2 times

Re: Error en oBrw:ToExcel()

Post by Jimmy »

hi,

which Version of FiveWin are you using :?:

Line 9241 or 9335, in Version 22.06, have nothing todo with Excel.

Code: Select all | Expand

9241          if ::lSqlRDD

9335                ::oSeek:SetPos( Len( ::cSeek ) + 1 )


---

how "big" (Row/Col) is your Excel Sheet ? more that 64 Kb ?
greeting,
Jimmy
User avatar
acuellar
Posts: 1647
Joined: Tue Oct 28, 2008 6:26 pm
Location: Santa Cruz-Bolivia

Re: Error en oBrw:ToExcel()

Post by acuellar »

Thanks friend

FWH1804

9335 oWin:FreezePanes := .t. //I put it as a comment it passes

9241 oSheet:Paste() //This is the problem
Saludos,

Adhemar C.
User avatar
nageswaragunupudi
Posts: 10729
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Been thanked: 10 times
Contact:

Re: Error en oBrw:ToExcel()

Post by nageswaragunupudi »

oSheet:Paste()


Try

Code: Select all | Expand

oBrw:lExcelCellWise := .t.
Regards

G. N. Rao.
Hyderabad, India
Post Reply