Popular Articles
- Java PDF creator (Word OLE) - SDK sample Jul 23, 2012
The Word OLE (Java) SDK sample is a basic Java console application that converts a MS Word...
- Java PDF writer - SDK sample Jul 30, 2012
Hello World (Java) sample is a basic Java console application that generates (using the no...
- ASP.NET PDF generator - SDK sample May 7, 2012
Hello World (ASP.NET PDF generator) sample is a simple ASP application that generates one ...
- VCL Converter (Delphi PDF) - SDK sample Jan 13, 2012
The VCL Converter (Delphi PDF) sample demonstrates how to convert an existing file by prin...
- Hello World (C#) - SDK sample Jan 13, 2012
Hello World CSharp sample is a simple Windows console application that prints one page wit...
Latest Articles
- Word OLE (Delphi PDF) - SDK sample Sep 7, 2011
The Word OLE (Delphi PDF) sample is a simple Windows console application that converts a M...
- How to set programmatically the page related settings (page size, layout) via novaPDF SDK Sep 7, 2011
The page related settings have a different behavior than the other settings (save, compres...
- Java PDF writer - SDK sample Sep 7, 2011
Hello World (Java) sample is a basic Java console application that generates (using the no...
- Java PDF creator (Word OLE) - SDK sample Sep 6, 2011
The Word OLE (Java) SDK sample is a basic Java console application that converts a MS Word...
- VCL Converter (Delphi PDF) - SDK sample Sep 6, 2011
The VCL Converter (Delphi PDF) sample demonstrates how to convert an existing file by prin...
You are viewing 29 articles with the tag SDK
Java PDF creator (Word OLE) - SDK sample
- Jul 23, 2012
The Word OLE (Java) SDK sample is a basic Java console application that converts a MS Word document (in this sample the default location for the source document is C:\temp\test.doc) to PDF using Word OLE automation and j-Interop along with novaPDF.
Java PDF writer - SDK sample
- Jul 30, 2012
Hello World (Java) sample is a basic Java console application that generates (using the novaPDF printer) one PDF file containing the text "Hello World from Java2!". It demonstrates the basic use of the INovaPDFOptions interface with j-Interop.
ASP.NET PDF generator - SDK sample
- May 7, 2012
Hello World (ASP.NET PDF generator) sample is a simple ASP application that generates one PDF file containing the text "novaPDF says Hello World from ASP.NET". The PDF is created using the novaPDF printer driver and is saved in the “upload” folder. It demonstrates the basic use of the INovaPDFOptions interface. The printing job is done using the package System.Drawing.Printing
VCL Converter (Delphi PDF) - SDK sample
- Jan 13, 2012
The VCL Converter (Delphi PDF) sample demonstrates how to convert an existing file by printing it to novaPDF Printer using the ShellExecute function. It also demonstrates how to set different options and manage profiles in your novaPDF development.
Hello World (C#) - SDK sample
- Jan 13, 2012
Hello World CSharp sample is a simple Windows console application that prints one page with the "novaPDF says Hello World from C#" text to the novaPDF Printer. It demonstrates the basic use of the INovaPDFOptions interface. The printing job is made using the package "System.Drawing.Printing"
Word OLE (Delphi PDF) - SDK sample
- Jan 13, 2012
The Word OLE (Delphi PDF) sample is a simple Windows console application that converts a MS Word document (C:\Test.doc) to PDF using Word OLE automation. The sample can be used to elaborate more complex code and applications with the novaPDF SDK.
Unlicensed footer notice still shows up on PDF pages after registering novaPDF SDK
- Jan 13, 2012
novaPDF SDK sends a request to create the PDF files to the printer driver that gets installed with the package, novaPDF for SDK. By default, if novaPDF SDK is unregistered, each page from the generated PDF file will contain a footer notice (that says the application is not registered). After you purchase a license and register novaPDF SDK, that footer notice won't be included in the generated PDF files. However, if that footer notice is still included in newly generated PDF files even if the Initialize function is called with the correct registration name and license key, here are some possible reasons:
Hello World Visual Basic - SDK sample
- Jan 13, 2012
Hello World VB sample is a simple Windows console application that prints one page with the "novaPDF says Hello World from VB" text to the novaPDF Printer. This sample can be the base of a more throughout application code that can benefit VB developers.
Hello World VBNet - SDK sample
- Jan 13, 2012
Hello World VBNet sample is a simple Windows console application that prints one page with the "novaPDF says Hello World from VB.Net" text to the novaPDF Printer. It demonstrates the basic use of the INovaPDFOptions interface with this type of code.
Hello World (Network) - SDK sample
- May 7, 2012
Hello World (network) sample is similar with Hello World C SDK sample but additionally it adds network functionality to the code provided as guidance for the developers. This is useful for applications that also require network deployment.
VBNet Converter - SDK sample
- May 4, 2012
The VBNet Converter sample demonstrates how to convert an existing file by printing it to novaPDF Printer using the ShellExecute function. It also demonstrates how to set different options and manage profiles. The same approach should be used if you print using a "Print()" method from another object (like an internet browser or a report control). Just replace the ShellExecute call with the call of your Print method.
VB Converter - SDK sample
- Jan 13, 2012
The VB Converter sample demonstrates how to convert an existing file by printing it to novaPDF Printer using the ShellExecute function. It also demonstrates how to set different options and manage profiles in the novaPDF SDK application.
Distributing novaPDF with 32bit applications that run on Windows x64
- Jan 13, 2012
When integrating novaPDF SDK in a 32bit application that will be distributed on Windows x64 systems too, you have to take into account some aspects regarding the default behavior of our installer. One of these is the novaPDF installer that contains both 32 bit and 64 bit versions of the novaPDF driver and of the COM interface. Because of its built-in automatic detection, when installing novaPDF on Windows x64 computers (via your application), the 64bit version of the driver and COM interface are installed (and not the 32bit version).
MFC Scribble - SDK sample
- Jan 13, 2012
The MFC Scribble sample extends the standard MFC Scribble sample with the generation of PDF files and by using the novaPDF SDK application. It demonstrates how to integrate novaPDF SDK in your documents and also view the MFC architecture.
MFC Converter - SDK sample
- Jan 13, 2012
The MFC Converter sample demonstrates how to convert an existing file by printing it to novaPDF using the ShellExecute function. It also demonstrates how to set different options and manage profiles in the novaPDF SDK application for optimized usage.
Word OLE Visual Basic - SDK sample
- Jan 13, 2012
Word OLE VB sample is a simple Windows console application that converts a MS Word document (C:\Test.doc) to PDF using Word OLE automation. This sample demonstrates how to convert the existing Test.doc sample by printing it to novaPDF SDK Printer.
Word OLE VBNet - SDK sample
- Jan 13, 2012
Word OLE VBNet sample is a simple Microsoft Windows console application that converts a Microsoft Word document (an example path for the document would be C:\Test.docx) to a PDF using Word OLE automation and the novaPDF SDK application.
[novaPDF SDK] How to generate a pdf file without the Save As dialog
- Jan 13, 2012
To disable novaPDF "Save As" dialog, you have to set the folder and the file name programmatically. Here's an example on how you can set the folder and file name of the PDF to be saved in different programming languages (next code, has to be called after the Initialize() function).
Hello World (C++) - SDK sample
- Jan 13, 2012
Hello World sample is a simple Windows console application that prints one page with the "Hello World" text to the novaPDF Printer. It demonstrates the basic use of the INovaPDFOptions interface. The printing job is made with Windows API calls OpenPrinter, StartDoc,… It generates a "Hello World.pdf" file in the working folder.
How to set programmatically the page related settings (page size, layout) via novaPDF SDK
- Jan 13, 2012
The page related settings have a different behavior than the other settings (save, compression, fonts, security,...). While the last are specific to the novaPDF printer driver, the page related settings are used for all printer drivers and can be set by system calls (check the DEVMODE Windows structure).

