Page 1 of 1

Como Grabar datos en planilla excel existente

Posted: Thu Aug 02, 2007 8:55 pm
by Databaselab2002
Estimados Colegas


Como puedo Graba datos en determinadas celdas de un un planilla
existente, alguien tendria algun ejemplo sencillo

desde ya muchisimas gracias
Fabian
databaselab2002@yahoo.com.ar

Posted: Fri Aug 03, 2007 2:01 am
by sysctrl2
Fabian lo puedes hacer con la texcel,

de la sig. forma.

cFile := cFilePath( GetModuleFileName( GetInstance() )) + "planilla.xls"

oExcel := TExcelScript():New()
oExcel:Open( cFile )

oExcel:oSheet:Cells( nRow, 01 ):Value = cValor1
oExcel:oSheet:Cells( nRow, 02 ):Value = cValor2
oExcel:save()
oExcel:End( .f. )
oExcel := NIL


Saludos.