Search found 47 matches: dbftoexcel

Return to advanced search

Re: not ISOEM(), ISANSI() or IsUTF8()

... to be released, will come with an interface to DrXlsx lib. Conversion of AnsiToUtf8 is automatic. Using FWH methods/functions like :ToExcel() or DbfToExcel() do not require the user to convert data into utf8. What all the work a programmer needs to do is to set oBrw:lOemAnsi := .t. or oCol:lOemAnsi ...
by nageswaragunupudi
Sat Sep 02, 2023 3:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 4329

Re: How w/DBFToExcel

Thanks Mr. Rao.
Excellent.

Regards
Ruben Dario Fernandez
by D.Fernandez
Tue Apr 25, 2023 2:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How w/DBFToExcel
Replies: 2
Views: 409

Re: How w/DBFToExcel

oSheet := FW_DbfToExcel()

Then directly insert rows and add your modify oSheet cells as you wish.
by nageswaragunupudi
Sun Apr 23, 2023 9:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How w/DBFToExcel
Replies: 2
Views: 409

Re: to Excel : using Array and "paste" it

Yes. Very well known. aArray := oRange:Value for reading and oRange:Value := aArray for assigning "should" work. And work perfectly with VB. When it comes to Harbour and xHarbour there are some issues. We need to be aware of the differences between xHarbour and Harbour and also between old...
by nageswaragunupudi
Sun Apr 23, 2023 7:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Excel : using Array and "paste" it
Replies: 3
Views: 322

How w/DBFToExcel

Hi friends.

How can I do this whith ToExcel from dbf
https://1drv.ms/b/s!AlgXo33R8wy97RnjERV_WRuxqGJj?e=23uAgA

Thanks

Best regards

Ruben Fernandez
by D.Fernandez
Fri Apr 21, 2023 5:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How w/DBFToExcel
Replies: 2
Views: 409

Re: Pregunta sobre FW_DbftoEXCEL

Gracias RAO. Excelente las dos ayudas tuyas funcionan de maravillas Con FW_DbftoEXCEL costo un poco la implementacion pero al fin arranco :D Con ArrayToExcel2 funciono de primera Excelente excelente RAO Gracias infinitas Ahora voy a intentar agregarla la opcion de salvar en disco la planilla....espe...
by El Loco
Sun Apr 09, 2023 5:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta sobre FW_DbftoEXCEL
Replies: 8
Views: 921

Re: Pregunta sobre FW_DbftoEXCEL

function ArrayToExcel2( aData, aHead )   local oExcel, oBook, oSheet   local cText, oClp, nCols := 0   if ( oExcel := ExcelObj() ) == nil      ? "Excel not instqalled"   else      oBook   &n...
by nageswaragunupudi
Sun Apr 09, 2023 2:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta sobre FW_DbftoEXCEL
Replies: 8
Views: 921

Re: Pregunta sobre FW_DbftoEXCEL

RAO...abusando de tu generosidad como puedo agregarle a una funcion tuya que ya hace tiempo posteaste de pasar un array a excel poder agregar los titulos function ArrayToExcel2( aData )   local oExcel, oBook, oSheet   local cText, oClp, nCols := 0   if ( oEx...
by El Loco
Sat Apr 08, 2023 8:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta sobre FW_DbftoEXCEL
Replies: 8
Views: 921

Re: Pregunta sobre FW_DbftoEXCEL

Perdon RAO recien veo tu post. En un rato lo pruebo.
Desde ya muchisimas gracias
Abrazo
by El Loco
Sat Apr 08, 2023 8:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta sobre FW_DbftoEXCEL
Replies: 8
Views: 921

Re: Pregunta sobre FW_DbftoEXCEL

Checked version FWH 1404. This function is available in \source\classes\database.prg Please copy this entire function into your own application with a different name, for example, MY_DBFTOEXCEL(...). The last line of this function is: return nil Change this line as: return oSheet You keep using the ...
by nageswaragunupudi
Sat Apr 08, 2023 2:43 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta sobre FW_DbftoEXCEL
Replies: 8
Views: 921

Re: Pregunta sobre FW_DbftoEXCEL

Lamentablemente mi version debe ser muy vieja porque los dos ultimos paramentros ( [cSaveTo], [lShow ]) no los contempla
La que tengo llega hasta aqui FW_DbfToExcel( [cFieldList], [bFor], [bWhile], [nNext], [nRec], [lRest] )
Igualmente gracias
Abrazo
by El Loco
Wed Apr 05, 2023 1:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta sobre FW_DbftoEXCEL
Replies: 8
Views: 921

Re: Pregunta sobre FW_DbftoEXCEL

Syntax: FW_DbfToExcel( [cFieldList], [bFor], [bWhile], [nNext], [nRec], [lRest], [cSaveTo], [lShow] ) Specify the name of the file (with full path ) to be saved as the 7th parameter. Example: FW_DbfToExcel( nil, nil, nil, n...
by El Loco
Wed Apr 05, 2023 12:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta sobre FW_DbftoEXCEL
Replies: 8
Views: 921

Re: Pregunta sobre FW_DbftoEXCEL

Syntax: FW_DbfToExcel( [cFieldList], [bFor], [bWhile], [nNext], [nRec], [lRest], [cSaveTo], [lShow] ) --> oSheet 1. Specify the name of the file (with full path ) to be saved as the 7th parameter. Example: FW_DbfToExcel( ...
by nageswaragunupudi
Wed Apr 05, 2023 12:38 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta sobre FW_DbftoEXCEL
Replies: 8
Views: 921

Pregunta sobre FW_DbftoEXCEL

Buenas Buenas gente.
Utilizo la funcion FW_DBFTOEXCEL() y todo va bien me convierte cualquier dbf en la planilla :D
...ahora la pregunta como hago para salvar la planilla excel?
Desde ya muchisimas gracias
Saludos


FWH 32/64 14.04 - PellesC
by El Loco
Tue Apr 04, 2023 8:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta sobre FW_DbftoEXCEL
Replies: 8
Views: 921

Re: Pasar DBF a EXCEL

Hola Amigos No logro dar con la solución, usando Excel 2010. He probado con: Ingreso->(FW_DbfToExcel( ,,,,,, cSaveTo2 )) <--- Grando en Disco o Ingreso->( FW_DbfToExcel()) <--- Abriendo planilla directo a excel. Incluso, pase la fecha como Character, para ver si cambiaba y nada. Ambas op...
by remtec
Wed Mar 17, 2021 3:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pasar DBF a EXCEL "SOLUCIONADO"
Replies: 16
Views: 2979
Next

Return to advanced search