pdf

  1. Manie Verster

    Question Create PDF document from data

    string pdfReport = ""; DateTime now = DateTime.Now; if (RecipeID == "0") { pdfReport += "Recipe_All_" + now.ToString("yyyyMMddHHmmss") + ".pdf"; } else { pdfReport += "Recipe_" + RecipeName + "_" + now.ToString("yyyyMMddHHmmss") + ".pdf"; } string...
  2. A

    Is this possible to use IronPython .net with docx2pdf python package?

    I need to convert docx files to pdf files. Or bytes of docx file from a database to pdf file and download it. There is no free nuget packages to resolve my issue. But there is one package from python language I can use and it s name is docx2pdf. Nuget space has IronPython . net package, but this...
  3. DotNetDeveloper

    How to create PDF document with hierarchical Multilevel List in C#

    How to quickly create a PDF document with hierarchical Multilevel List in C#? PDF document consists of sections. PDFFlow library for C# allows you to create PDF with as many multilevel lists in one section as you need. Creating a list with PDFFlow is only a few lines of code: 1. First you...
  4. asmodi

    Question PDF with formfield

    Hello everybody, I am fairly new in programming with C#. I did some Java, Javascript and php before though. I have a searchable PDF with a whole lot of formfields. Every formfield has an ID. Let's say we don't know the names of the ID we just know they have an ID. What I want to do is to loop...
  5. L

    PdfSharp "NullReferenceException"

    Hello, I have the problem that my code (using PdfSharp) is thworing an "NullReferenceException" at the point outputDocument.AddPage(page); and I dont know why. You can find a snippet of my code with the important things below: public static void CreatePDFx(string path) {...
  6. A

    Question Is there a way to Highlight a word that is linked from another place in PDF?

    I have source code to create a link inside a PDF and when its clicked it will go to a page. I want to create a link to a word or letter and then highlight the word. Is this possible?
  7. H

    Question WCF Restful service cannot convert PDF file as MemoryStream or ByteArray

    Service : WCF REST Service (.Net Framework 4.0) Platform: 64-bit (Windows) Hi, I have a WCF rest service to fetch data and show it on the client screen. I am using a node js client application which mostly uses javascript to fetch this pdf memory stream and then displays it onto the client...
  8. J

    C# / VB.NET Word component - GemBox.Document 2.1

    GemBox.Document is a C# / VB.NET Word component for easy and efficient Word document processing in .NET without Microsoft Word. GemBox.Document 2.1 supports reading DOCX and HTML formats and writing, creating and converting to DOCX, PDF, XPS, HTML and image formats. GemBox.Document has...
Back
Top Bottom