How to convert TIF to PDF format in VB.Net Sample

Image Viewer cp Pro ActiveX is a powerful TIF to PDF ActiveX

Step 1: Download image viewer cp pro ActiveX setup disk and installed it.

Step 2: Create New Visual Basic Project, select Windows Application.

Step 3: Add a buttons into the form.

Step 4: Add following code in buttons click event.

This sample code save to multi page pdf file.

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

ImageViewer1.Image2PDF "c:\test.tif" ,"c:\new.pdf"

End Sub