Problem in opening excel file in MS Excel 2000
Hi,
i am trying to export a report in excel format in VC++.When i am saving a file in excel format this file is opening in MS EXCEL 2003 but this file is not opening in MS EXCEL 2000.Inside the code i did not mention the version.the version of u2fxls.dll is 7.0.0.50.I am giving the code snippet
static struct UXFXlsOptions uxfxlsops;
PCREJobExportInfo peeops = new PCREJobExportInfo();
lstrcpy(peeops.formatDLLName, "u2fxls.dll");
peeops.formatType = UXFXl8TabType;
uxfxlsops.bColumnHeadings = TRUE;
peeops.formatOptions = &uxfxlsops;
if (needFileExtension == TRUE)
strPathName += ".xls";
Will you suggest me anyone what is the reason for that.
|