Hello,
I am investigating using Pdf.Kit in order to work with fillable pdf forms to create, view, fill and read the form field values. To start off, i first wanted to see if I can simply display a PDF (non fillable) using the PDF viewer. However, when I reference the PDF.Kit assembly, I am not seeing any viewer components to use in the VS2008 IDE. Also, just programatically creating a viewer and opening the file has no effect. can you please tell me if the above mentioned functionality can be achieved with PdfKit or any other component from Aspose. If PDF viewer should be used, can you please help me invoking it correctly?
Here is my code:
Imports
Aspose.Pdf.KitPublic
Class TestAsposePdfPrivateSub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.ClickDim oViewer As PdfVieweroViewer =
New PdfViewer()oViewer.OpenPdfFile(
"C:\Vishal\Work\Test\Temp.pdf")EndSubEnd
ClassThanks,
Vishal