Customers include:
Custom Application Development
DLL / COM Products |
|
This is a fully functional .Net DLL that can be incorporated in to virtually any Windows Program that supports .Net components. We have provided some sample
source code to show how you could use this DLL in your program
Visual Basic.Net (VB.net) Add a refernce to the DLL in the Project (.NET reference)
Dim tcount As New SCTiffPageCountNetDLL.TiffPageCountv1 Now, create a sub or function to get the page count, (the following is a sample you could use):
Public Function GetPages(UseFileName as String) As Long The 'UseFileName' is the variable that contains the FULL path to the TIFF file. To call the function and get the number of pages in the TIFF file, you could use the following: msgbox("Number of Pages: " & GetPages("c:\temp\testtiff.tif"))
|