Colin Evans Level: Guest

|
Re: how i print a tif file contain multi images insdie it
Not sure if this will help, you need the Imageman tool set, or at least thats what I use and the following should be okay;
Dim nPage As Integer
nPage = 0
Do
Viewer.ImageMan1.PageNumber = nPage
PrintPage (False)
nPage = nPage + 1
Loop While nPage < Viewer.ImageMan1.Pages - 1
Viewer.ImageMan1.PageNumber = nPage
PrintPage (True)
Unload frmPrint
Cheers
Colin
|