Search found 16 matches: activewindow

Return to advanced search

error oBrw:ToExcel

... 6.2, Build 9200 Time from start: 0 hours 2 mins 31 secs Error occurred at: 09-01-2024, 17:20:24 Error description: Error Excel.Application:ACTIVEWINDOW/3 DISP_E_MEMBERNOTFOUND: _FREEZEPANES Args: [ 1] = L .T. Stack Calls =========== Called from: => TOLEAUTO:_FREEZEPANES( 0 ) Called from: ...
by damianodec
Tue Jan 09, 2024 4:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: error oBrw:ToExcel
Replies: 2
Views: 513

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: 290

Error in txbrowse:ToExcel

Hello, Without changing the code 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: ...
by Franklin Demont
Thu Jul 10, 2014 9:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error in txbrowse:ToExcel
Replies: 3
Views: 757

Re: Saber Metodos de un CREATEOBJECT

... PROPERTYGET USERDEFINED FeatureInstall() STDCALL dispatch PROPERTYPUT void FeatureInstall( [in] USERDEFINED ) STDCALL dispatch FUNC IDispatch ActiveWindow() STDCALL dispatch FUNC IDispatch CopyFile( [in] BSTR, [in] BSTR ) STDCALL dispatch FUNC PTR AdvancedSearch( [in] BSTR, [optional] VARIANT, ...
by Antonio Linares
Sun May 12, 2013 10:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Saber Metodos de un CREATEOBJECT
Replies: 62
Views: 32040

Re: Saber Metodos de un CREATEOBJECT

... STDCALL dispatch PROPERTYPUT void ActivePrinter( [in] BSTR ) STDCALL dispatch PROPERTYGET IDispatch ActiveSheet() STDCALL dispatch PROPERTYGET PTR ActiveWindow() STDCALL dispatch PROPERTYGET PTR ActiveWorkbook() STDCALL dispatch PROPERTYGET PTR AddIns() STDCALL dispatch PROPERTYGET PTR Assistant() ...
by Antonio Linares
Sun May 12, 2013 9:54 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Saber Metodos de un CREATEOBJECT
Replies: 62
Views: 32040

Re: Saber Metodos de un CREATEOBJECT

... PTR Documents() STDCALL dispatch PROPERTYGET PTR Windows() STDCALL dispatch PROPERTYGET PTR ActiveDocument() STDCALL dispatch PROPERTYGET PTR ActiveWindow() STDCALL dispatch PROPERTYGET PTR Selection() STDCALL dispatch PROPERTYGET IDispatch WordBasic() STDCALL dispatch PROPERTYGET PTR RecentFiles() ...
by Antonio Linares
Sun May 12, 2013 9:52 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Saber Metodos de un CREATEOBJECT
Replies: 62
Views: 32040

Error usando la clase TWORD

... Error description: Error Microsoft Word/-1 Este comando sólo está disponible en la vista Diseño de impresión.: Word.Application:ActiveDocument:ActiveWindow:View:SeekView Args: [ 1] = O Object [ 2] = C Object [ 3] = N Object [ 4] = U Object [ 5] = U Object [ 6] = U Object [ 7] = U Object [ 8] ...
by Vladimir Zorrilla
Wed Apr 28, 2010 3:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error usando la clase TWORD
Replies: 0
Views: 650

switch data between FWH and excel 2007

... ? I have this code: DEFINE WINDOW m_get[40] // ownd @ 0, 0 ACTIVEX m_get[41]; // oOWc PROGID "OWC11.Spreadsheet" m_get[44] = m_get[41]:GetProp( "ActiveWindow" ) OleSetProperty( m_get[44], "ColumnHeadings", 1, "Descrizione" ) OleSetProperty( m_get[44], "ColumnHeadings", 2, "Vendita Euro" ) OleSetProperty( ...
by damianodec
Thu Oct 09, 2008 2:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: switch data between FWH and excel 2007
Replies: 0
Views: 387

... .xls tarda muchisimo (10 /20 minutos) ¿que puede ser? Gracias. Atte. //--------------------- FUNCTION IMPO_LCOS(XLISPRE, odlg) LOCAL oWnd, oOwc, hActiveWindow, nCounter, hsheet, x, cell, font, xfila, xfin, format LOCAL XVERSION, xcompleta // en la base ini guardo un parametro con la version del ...
by diegopolverelli
Tue Aug 19, 2008 3:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: olesetproperty
Replies: 12
Views: 2587

... COPIE oclip:paste() *PARA CORTAR LA SELECCION oclip:CUT() oWord:Set("WindowState", 1 ) // Maximizado oWord:Set("PrintPreview",1) oZoom:=oWord:get("ActiveWindow"):get("ActivePane"):get("View"):get ("zoom") oZoom:pagefit := 2 oWord:Visible := .T. oTexto:End() oword:end() //Esto NO va en xharbour ...
by alex_cyr
Wed Mar 26, 2008 12:08 am
 
Forum: FiveWin para CA-Clipper
Topic: Manipular ficheros Word desde Five
Replies: 10
Views: 6353

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

... to nSheets - 1 oExcel:Worksheets( n ):Delete() next oExcel:Set( "DisplayAlerts", .f. ) 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 ...
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: 1612

Antonio Linares wrote:You are missing this:

With .ActiveWindow


I already tried it and unfortunately it doesn't work for me (Office 2000). :(

EMG
by Enrico Maria Giordano
Sun Apr 08, 2007 7:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: excel tactivex
Replies: 16
Views: 4410

You are missing this: With .ActiveWindow Here you have it working: #include "Fivewin.ch" FUNCTION MAIN() LOCAL oWnd, oOwc, oActiveWindow, nCounter DEFINE WINDOW oWnd @ 0, 0 ACTIVEX oOwc; PROGID "OWC11.Spreadsheet" ...
by Antonio Linares
Sun Apr 08, 2007 6:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: excel tactivex
Replies: 16
Views: 4410

... TRY oWord = GETACTIVEOBJECT( "Word.Application" ) CATCH oWord = CREATEOBJECT( "Word.Application" ) END oWord:Documents:Add() oWord:ActiveDocument:ActiveWindow:View:Type = wdPrintView oWord:Visible = .T. RETURN NIL Testato su office 2000 e successivi. Ciao Marco
by Marco Turco
Fri Feb 10, 2006 10:35 pm
 
Forum: All products support
Topic: Sempre a proposito di Rtf e mail merge
Replies: 26
Views: 8738

Problema di visualizzazione documenti RTF complessi

... from start: 0 hours 1 mins 8 secs Error occurred at: 25/01/06, 12:14:50 Error description: Error Word.Application:ACTIVEDOCUMENT/1 Unknown error: ACTIVEWINDOW Args: Stack Calls =========== Called from TOLEAUTO:ACTIVEWINDOW(0) *********************** La routine di stampa che utilizzo è: ************* ...
by Marco Turco
Wed Jan 25, 2006 11:23 am
 
Forum: All products support
Topic: Problema di visualizzazione documenti RTF complessi
Replies: 2
Views: 933
Next

Return to advanced search

cron