Click here to Skip to main content
15,887,273 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can we convert pdf file to excel format using wcf .

What I have tried:

I tried with many ways, please suggest me
Posted
Comments
F-ES Sitecore 19-Oct-20 10:59am    
If you don't list the ways you have tried someone might suggest something you've already tried.
Manoswini Swain 19-Oct-20 14:42pm    
i have created a converted pdf file into excel format using simple console application

here is my code:using Spire.Pdf;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace PDFTOEXCEL11
{
class Program
{
static void Main(string[] args)
{

PdfDocument pdf = new PdfDocument();
pdf.LoadFromFile("timesheet_01_29_2020.pdf");
pdf.SaveToFile("PDFToExcel.xlsx", FileFormat.XLSX);
}
}
}

but this is what I am not looking for.i want this using wcf...can you suggest
Richard MacCutchan 19-Oct-20 11:29am    
Probably not by wcf.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900