How to create tif in VB.Net Sample

Image Viewer cp Pro ActiveX is a powerful TIF 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 create multi page tif file.

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

ImageViewer1.AddTIF "c:\test1.bmp"
ImageViewer1.AddTIF "c:\test2.jpg"
ImageViewer1.SaveTIF "c:\newtif.tif"

End Sub