Exportar a Excel
Posted: Thu Aug 26, 2010 4:05 pm
Como puedo crear archivos en Excel y mandar información a dichos archivos. Necesito algún archivo o librería especial?
www.FiveTechSoft.com
https://forums.fivetechsoft.com/
Code: Select all
oExcel:=CreateObject( "excel.application" );oExcel:DisplayAlerts=.F.;oBook:=oExcel:Workbooks:Add();oSheet:=oExcel:ActiveSheet
oSheet:Range( "A1" ):Value ="NOMBRE DE LA EMPRESA S.A."
oSheet:Range( "A1:C1" ):HorizontalAlignment := xlHAlignCenterAcrossSelection
oSheet:Range( "A2" ):Value ="PLANILLA MENSUAL DETALLADA: "
oSheet:Range( "A2:C2" ):HorizontalAlignment := xlHAlignCenterAcrossSelection
oSheet:Range( "B4" ):Value ="COD.";oSheet:Columns(2):ColumnWidth:=6
oSheet:Range( "C4" ):Value ="NOMBRE Y APELLIDOS";oSheet:Columns(3):ColumnWidth:=35
Do While .Not. Eof()
oSheet:Cells(xL,1):Value =DATOS->COD
oSheet:Cells(xL,2):Value =DATOS->NOMBRE
xL++
DBSkip()
Enddo