Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
OLE - Table to Excel file?
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Classes - VCX
Divers
Thread ID:
00135005
Message ID:
00135073
Vues:
10
>>>Hi All,
>>>
>>>This is my 1st attempt at OLE Automation. I have a table from a x-tab query that I would like to transfer to an Excel worksheet for viewing, maybe even create a report with Text and company logo. I'm a little confused, do I use CREATEOBJECT('Excel.sheet') and export the data to the worksheet?? VFP help is a little vague in the matter.
>>>
>>>TIA
>>
>>select yourtable
>>copy to c:\temp\test.xls type xls
>>oExcel=createobject("Excel.Application")
>>oExcel.Workbooks.open("c:\temp\test.xls")
>>oExcel.visible=.t.
>
>Thanks very much,
>
>One question though. I'm trying to get the sum of each field to append as the last record in the table. Here's what i have:
>
>select xtab
>go bottom
>append blank in xtab nomenu
>for lnCnt = 2 to fCount() && 2nd field is the 1st numeric field
> lcFieldName = field(lnCnt)
> replace &lcFieldname with sum(lcFieldName)
>endfor
>
>should I add the table name lcFieldName = 'myTable.'+Field(lnCnt)??
>
>TIAA

As far as I remember, vfpxtab.prg accepts some parameters to create total rows,columns. In regard to your code: I would collect all CALCULATE SUM() to array (inside the same loop) and then INSERT ... FROM ARRAY
Edward Pikman
Independent Consultant
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform