Exportar a Excel

Post Reply
abelcervantes
Posts: 37
Joined: Tue Aug 10, 2010 2:05 pm

Exportar a Excel

Post by abelcervantes »

Como puedo crear archivos en Excel y mandar información a dichos archivos. Necesito algún archivo o librería especial?
hgarcia
Posts: 33
Joined: Thu Aug 10, 2006 12:23 pm
Location: México D.F
Contact:

Re: Exportar a Excel

Post by hgarcia »

Abel:

Puedes usar la clase Texcel o Tfilexls que son aportaciones de colaboradoredes

Saludos
Héctor García
México, D.F.
User avatar
acuellar
Posts: 1312
Joined: Tue Oct 28, 2008 6:26 pm
Location: Santa Cruz-Bolivia

Re: Exportar a Excel

Post by acuellar »

Abel

Lo podes hacer desde un XBrowse con oBrw:ToExel() Pasará todo el Browse a Excel.

Tambien asi:

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
 
Espero te sirva

Saludos,

Adhemar
Saludos,

Adhemar C.
abelcervantes
Posts: 37
Joined: Tue Aug 10, 2010 2:05 pm

Re: Exportar a Excel

Post by abelcervantes »

Gracias, muchas gracias por su ayuda. Y.... dónde consigo esa herramienta para Excel?
User avatar
MarioG
Posts: 1356
Joined: Fri Oct 14, 2005 1:28 pm
Location: Resistencia - Chaco - AR

Re: Exportar a Excel

Post by MarioG »

Resistencia - "Ciudad de las Esculturas"
Chaco - Argentina
User avatar
acuellar
Posts: 1312
Joined: Tue Oct 28, 2008 6:26 pm
Location: Santa Cruz-Bolivia

Re: Exportar a Excel

Post by acuellar »

De la forma indicada, no necesita de ninguna herramienta

Saludos,

Adhemar
Saludos,

Adhemar C.
abelcervantes
Posts: 37
Joined: Tue Aug 10, 2010 2:05 pm

Re: Exportar a Excel

Post by abelcervantes »

Muchas gracias por toda las ayudas que me brindaron.
Post Reply