Search found 14 matches: freezepanes

Return to advanced search

New FTDN April 2024 (FWH 24.04)

... datetime values with fraction of seconds. Also increased column size to fit the contents. * FWMariaRowSet: - Method ToExcel(): (1) Enclosed :FreezePanes in TRY/CATCH block to avoid runtime errors in some installtions. (2) Date and DateTime values are exported as character data when the Year ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 568

Re: FWMARIA TOEXCEL ERROR FREEZEPANES

In the next version to be released.

1. :lFreezePanes does not raise runtime error.
2. Dates and TimeStamps earlier than the year 1900 are exported as text to avoid loss of data and export errors.
by nageswaragunupudi
Tue Apr 09, 2024 6:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWMARIA TOEXCEL ERROR FREEZEPANES
Replies: 3
Views: 3279

Re: FWMARIA TOEXCEL ERROR FREEZEPANES

It appears you are using
Code: Select all  Expand view
oRowSet:ToExcel()

of FWMaria lib.
We will now include this code in TRY/CATCH block for future.

But we advise you to use oBrw:ToExcel() which is safer.
by nageswaragunupudi
Sat Apr 06, 2024 2:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWMARIA TOEXCEL ERROR FREEZEPANES
Replies: 3
Views: 3279

FWMARIA TOEXCEL ERROR FREEZEPANES

Estimado Foro Al realizar la exportacion a Excel desde un browse me muestra el siguiente error desde algunas consultas Error description: Error Excel.Application:ACTIVEWINDOW/3 DISP_E_MEMBERNOTFOUND: _FREEZEPANES Args: [ 1] = L .T. Stack Calls =========== Called from: => TOLEAUTO:_FREEZEPANES( 0 ...
by cjcardoza
Fri Apr 05, 2024 6:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWMARIA TOEXCEL ERROR FREEZEPANES
Replies: 3
Views: 3279

error oBrw:ToExcel

Hi, My app run on 15 pcs but I get error only on 2 pcs when I call function oBrw:ToExcel() I get this error: Application =========== Path and name: myexe.exe (32 bits) Size: 7,345,664 bytes Compiler version: xHarbour 1.2.3 Intl. (SimpLex) (Build 20161218) FiveWin version: FWHX 17.09 C compiler versi...
by damianodec
Tue Jan 09, 2024 4:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: error oBrw:ToExcel
Replies: 2
Views: 556

Re: Error en oBrw:ToExcel()

Thanks friend

FWH1804

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

9241 oSheet:Paste() //This is the problem
by acuellar
Mon Jul 25, 2022 6:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error en oBrw:ToExcel()
Replies: 3
Views: 300

Error en oBrw:ToExcel()

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 ...
by acuellar
Mon Jul 25, 2022 6:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en oBrw:ToExcel()
Replies: 0
Views: 208

Error en oBrw:ToExcel()

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 ...
by acuellar
Mon Jul 25, 2022 4:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error en oBrw:ToExcel()
Replies: 3
Views: 300

Re: Inmovilizar filas en excel

if (oExcel:=ExcelObj())== nil
mensaje('Excel no esta instalado!!')
endif

oExcel:ScreenUpdating := .f.
oExcel:Application:DisplayAlerts:=.f.
..
..
..

// Congelamos encabezado
oWin := oExcel:ActiveWindow
oWin:SplitRow := 7
oWin:FreezePanes := .t.

Saludos
Joel Andujo
by Joel Andujo
Mon Jan 03, 2022 8:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inmovilizar filas en excel
Replies: 2
Views: 306

Re: Error in txbrowse:ToExcel

nageswaragunupudi wrote:May we know the Excel version of your customer?
The code works well from version 2003 onwards.


From customer :
newest version Office 2013

I will try to omit the line :

oWin:FreezePanes := .t. <--- Gives error

Or , can it be changed in another line ?

Frank
by Franklin Demont
Mon Jul 28, 2014 10:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error in txbrowse:ToExcel
Replies: 3
Views: 759

Error in txbrowse:ToExcel

... the last month's , one off mine custumers reports a error the last days in xbrowse:toexcel : oWin := oExcel:ActiveWindow oWin:SplitRow := 1 oWin:FreezePanes := .t. <--- Gives error Error description: Error Excel.Application:ACTIVEWINDOW/3 DISP_E_MEMBERNOTFOUND: _FREEZEPANES Args: [ 1] = L ...
by Franklin Demont
Thu Jul 10, 2014 9:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error in txbrowse:ToExcel
Replies: 3
Views: 759

Create a Excel-Sheet of any DBF-File with AutoOle (Update)

... oSheet := oExcel:Get( "ActiveSheet" ) oWin := oExcel:Get( "ActiveWindow" ) oSheet:Name := "Show" oSheet:Cells( nDataStart, 1 ):Select() oWin:Set( "FreezePanes", .t. ) oWin:Set( "SplitColumn", 2 ) // Freeze Rows and Cols oSheet:Cells:Font:Size := 10 oSheet:Cells:Font:Name := "Arial" For i := 1 to ...
by ukoenig
Mon Feb 04, 2008 7:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Excel-Sheet of any DBF-File with AutoOle (Update)
Replies: 4
Views: 1639

Hello,

I am using the following code and getting an error.

oAs := oExcel:ActiveSheet()

oAs:FreezePanes := .T.

Any ideas?

Thank you,
by cdmmaui
Mon Aug 21, 2006 2:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Excel Help
Replies: 3
Views: 1306

Return to advanced search