Rick Gearardo
2008-10-29 18:03:27 UTC
x = new oleAutoclient("excel.application")
x.workbooks.add()
a = x.activeSheet
r.first()
i = 1
do while .not. r.endOfSet
for c = 1 to r.fields.size
o = a.cells(i,c)
o.formula := r.fields[c].value
next c
i++
r.next()
enddo
Rick
x.workbooks.add()
a = x.activeSheet
r.first()
i = 1
do while .not. r.endOfSet
for c = 1 to r.fields.size
o = a.cells(i,c)
o.formula := r.fields[c].value
next c
i++
r.next()
enddo
Rick
Is it possible to create programmaticaly an excel sheet from a dbase file?
Etienne Gounon
Etienne Gounon