Search found 17 matches: cfilexls

Return to advanced search

Re: GetExcelRange ERROR

... computer? Check: if ExcelObj() == nil ? "Not installed" else ? "Installed" endif 2) Also check if file exists with ? File( cFileXls ) Sorry Nages, one question: maybe the problem is that there is no Excel on that computer? No there is no Excel, discovered the mystery ... ...
by Silvio.Falconi
Sat Sep 18, 2021 6:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange ERROR
Replies: 10
Views: 862

Re: GetExcelRange ERROR

1) Is Microsoft Excel installed on this computer?
Check:
if ExcelObj() == nil
? "Not installed"
else
? "Installed"
endif

2) Also check if file exists with
? File( cFileXls )
by nageswaragunupudi
Fri Sep 17, 2021 9:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange ERROR
Replies: 10
Views: 862

Re: New FTDN June 2020 (FWH 20.06)

... * Nuevas funciones en adofuncs.prg para acceder a ficheros Excel en equipos sin Microsoft Office instalado. 1)FW_OpenAdoExcelBook( cFileXLS, [lHeaders := .t.] ) --> objeto AdoConnection - Es posible abrir archivos xls en todos los equipos usando el proveedor predeterminado de ...
by Antonio Linares
Sat Jul 11, 2020 5:26 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN June 2020 (FWH 20.06)
Replies: 1
Views: 1339

New FTDN June 2020 (FWH 20.06)

... * New functions in adofuncs.prg to access Excel files on computers not having MSOffice installed. 1) FW_OpenAdoExcelBook( cFileXLS, [lHeaders := .t.] ) --> AdoConnection Object - It is possible to open xls files on all computers using the default Jet Ado provider. To ...
by Antonio Linares
Thu Jul 09, 2020 9:37 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June 2020 (FWH 20.06)
Replies: 1
Views: 1339

Re: La Forma mas rapida de DBF to EXCEL

Cris, the problem is another on my application I load the oRange oRange := GetExcelRange(cFileXls , , @lOpened) it load good the excel file then I must save all into a dbf and I have problem using FW_DbfToExcel() because this function use at the end the function FW_ArrayToDBF ...
by Silvio.Falconi
Fri Dec 06, 2019 3:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: La Forma mas rapida de DBF to EXCEL
Replies: 5
Views: 1074

Re: FW_ExcelToDBF - (2015) Import procedure from Excel not run

yes On xharbour run ok BUt on Harbour you made oRange := GetExcelRange(cFileXls , , @lOpened) and then Xbrowse(oRange) run ok I see all datas So, the problem is of Fw_ExcelToDbf() Please Maurizio try this testxbrowse(oRange) Function  testxbrowse(oRange)  ...
by Silvio.Falconi
Wed Nov 27, 2019 8:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_ExcelToDBF - (2015) Import procedure from Excel not run
Replies: 3
Views: 877

Import and Export to Excel

...  XBrowse( aData )return nilfunction ExePath()return cFilePath( GetModuleFileName() )  Notes: GetExcelArray( cFileXLS, cSheet, acRange ) is an FWH function from ver 10.12. ArrTranspose( aArray ) --> aTransposedArray is function available in FWH Just two ...
by nageswaragunupudi
Sat Jan 29, 2011 2:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Import and Export to Excel
Replies: 32
Views: 18217

Re: oExcel:Quit() sin grabar (ToleAuto)

::oWorkBook:SaveAs(cFileXls)


::oExcel:Visible = .T.

// ::oExcel:Quit()

::Excel := Nil

saludos.
by sysctrl2
Mon Jan 11, 2010 7:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: oExcel:Quit() sin grabar (ToleAuto)
Replies: 3
Views: 546

excel X ole

... send me, I would be grateful Thank you /* Generando um arquivo Excel Angelo José Ferreira Cendon */ #include "FiveWin.ch" FUNCTION Testaj() LOCAL cFilexls := ".\arqexcel.xls" LOCAL oExcel msgalert("iniciando geração") oExcel := TExcelScript():New() msgalert("Criando script para excel") oExcel:Create( ...
by cendon
Thu Oct 09, 2008 1:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: excel X ole
Replies: 1
Views: 639

arquivo excel

... onde está o erro? o fonte é este. /* Generando um arquivo Excel Angelo José Ferreira Cendon */ #include "FiveWin.ch" FUNCTION Testaj() LOCAL cFilexls := ".\arqexcel.xls" LOCAL oExcel msgalert("iniciando geração") oExcel := TExcelScript():New() msgalert("Criando script para excel") oExcel:Create( ...
by cendon
Mon Oct 06, 2008 2:00 pm
 
Forum: All products support
Topic: arquivo excel
Replies: 0
Views: 1256

arquivo excel

... where is the error? this is the source. /* Generando um arquivo Excel Angelo José Ferreira Cendon */ #include "FiveWin.ch" FUNCTION Testaj() LOCAL cFilexls := ".\arqexcel.xls" LOCAL oExcel msgalert("iniciando geração") oExcel := TExcelScript():New() msgalert("Criando script para excel") oExcel:Create( ...
by cendon
Mon Oct 06, 2008 1:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: arquivo excel
Replies: 0
Views: 719

Excel

... Oleinvoke(::OleExcel,'Quit') Super:End() OleUninitialize() endif return Nil Para abrir el libro así: METHOD OpenXls( cFileXls, lreadonly, lmessage ) CLASS TExcel local sal DEFAULT lreadonly := .f., lmessage := .t. cfilexls := alltrim(cfilexls) if lmessage = .t. if ...
by Sebastián Almirón
Fri May 09, 2008 6:28 pm
 
Forum: FiveWin para CA-Clipper
Topic: Excel
Replies: 2
Views: 1443

Excellent. Thanks fleal.

Now, how can I send then password when opening the file so the user does not have to enter it every time?

I found a post that mentions trying:

oExcel:WorkBooks:Open( cFileXls, , , , "password" )


But this did not work.

Any ideas?
by Jeff Barnes
Wed Mar 19, 2008 12:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Excel Open Password
Replies: 3
Views: 744

... 5° parametro: Error Excel.Application:WORKBOOKS/14 DISP_E_BADPARAMCOUNT: OPEN oExcel:WorkBooks:Open(cFilePath(GetModuleFileName(GetInstance())) + cFileXls, , , , "password") mi sono copiato i file help di visual basic da office ma non ho trovato nulla, non so se intendi questa per documentazione ...
by marzio
Wed Feb 13, 2008 10:35 am
 
Forum: All products support
Topic: file di excel protetto da password
Replies: 3
Views: 1172

file di excel protetto da password

... con queste funzioni di ole2: oExcel := TOleAuto():New( "Excel.Application" ) oExcel:WorkBooks:Open(cFilePath(GetModuleFileName(GetInstance())) + cFileXls) con quale funzione si può passare una password all'apertura del file nel caso di file protetto? così come è ora si apre excel con richiesta ...
by marzio
Wed Feb 13, 2008 10:12 am
 
Forum: All products support
Topic: file di excel protetto da password
Replies: 3
Views: 1172
Next

Return to advanced search

cron