Please assist as this is driving me crazy.
usingSyncfusion.DocIO;
usingSyncfusion.DocIO.DLS;
usingSyncfusion.DocToPDFConverter;
usingSyncfusion.Pdf;
Code:
WordDocumentdocument=newWordDocument(path,Syncfusion.DocIO.FormatType.Doc);
DocToPDFConverterconverter=newDocToPDFConverter();
PdfDocumentpdfDoc=converter.ConvertToPDF(document);
My problem is when compiling it gives me errors:
Error 24 The type or namespace name 'DocIO' does not exist in the namespace 'Syncfusion' (are you missing an assembly reference?)
Error 25 The type or namespace name 'DocToPDFConverter' does not exist in the namespace 'Syncfusion' (are you missing an assembly reference?)
Error 26 The type or namespace name 'Pdf' does not exist in the namespace 'Syncfusion' (are you missing an assembly reference?)
I have added references according to article:
https://help.syncfusion.com/file-formats/pdf/working-with-document-conversions#converting-word-documents-to-pdf
But it does not work according to the site.
If I add references to:
DocIO.MVC, DocIO.Helper.MVC, Pdf.Helper.MVC and Pdf.MVC then I get rid of the errors except:
Error 25 The type or namespace name 'DocToPDFConverter' does not exist in the namespace 'Syncfusion' (are you missing an assembly reference?)
This is driving me me crazy as I have been struggling for 2 days.
I am using Visual Studio 2013 with Syncfusion 13.4.0.63. My project is .NET 4.5.1
What is going on?
Neill