Quote:
Originally Posted by
preethgideon
Porter,
Is it a software or something ??
Yes, basically you create an object of "Excel.Application", then get the "Workbooks" object from that.
You tell the "Workbooks" object to
1. "Open" "ReadOnly"=TRUE the file with a fully qualified path.
2. "SaveAs" with "CreateBackup"=FALSE, "FileFormat"=-4158, and "Filename" as the target fully qualified filename.
3. "Close" with "SaveChanges"=FALSE
That should do the trick.