Click here to Skip to main content
15,902,112 members

Comments by JonathanSterling (Top 2 by date)

JonathanSterling 10-Jun-15 5:42am View    
Pandvi the discussion is gone, nevertheless the Prasad_Kulkarni's answer provides a lot of options. Additionally I know of another option which I found to be a life saver, check this C# library for Word documents.

It has a straightforward API which enables creating of PDF file with C# in a LINQ like manner, like this:
var document = new DocumentModel();
document.Sections.Add(
  new Section(document,
    new Paragraph(document, "Sample")));

But also it provides a direct C# API that converts HTML content into a PDF file and a direct exporting of PDF file to an ASP.NET client, like this:
DocumentModel.Load("index.html").Save(this.Response, "Document.pdf");
JonathanSterling 9-Jun-15 1:52am View    
AngusOAP take a look at this article about creating excel's chart elements with VB.NET.