Custom Page numbering using events
-
- Posts: 24
- Joined: Tue Aug 19 2003
Custom Page numbering using events
Is it possible to put page numbers on documents? I specifically want to put the number a certain distance from the *bottom* of the page with merged PDF docs that have varying page heights. I'm using VB6.
Hello,
You can add page numbers to PDF file using our PDF Creator, and not the PDF Converter.
I am adding here a sample code in C#, you can easily convert it to VB6
Hope this helps
You can add page numbers to PDF file using our PDF Creator, and not the PDF Converter.
I am adding here a sample code in C#, you can easily convert it to VB6
Code: Select all
With PDFCreactiveX1
.Open App.Path & "\source files\" & "Amyuni PDF Converter.pdf", ""
.SetLicenseKey Licensee, ActivationCode
.SetPageNumbering 1, "Verdana,12,700,0,0,", 100, 10, &HFF8080, 1, "#page"
.Refresh
.Save App.Path & "\PageNumbering.pdf", 0
End With
-
- Posts: 24
- Joined: Tue Aug 19 2003