Hi,
I am trying to convert pdf to excel. using below code. Attached sample files used for my testing. It is generating excel with no content. If i am trying open generated excel in office 2013, unable to open it. Please help me.
Thanks,
-A
Document pdfDocument = new Document(@"C:\Users\UC177236\Desktop\Rules\TY2012.pdf");pdfDocument.Save(@"c:\xml\test.xls", SaveFormat.Excel);
ExcelSaveOptions saveExcelOption = new ExcelSaveOptions();saveExcelOption.MinimizeTheNumberOfWorksheets = true;
saveExcelOption.InsertBlankColumnAtFirst = false;
saveExcelOption.UniformWorksheets = true;
pdfDocument.Save(@"c:\xml\test1.xls", saveExcelOption);