jeremywelch
Programmer
I work with schematics that are numerous pages long and i am trying to find a way to number each page accordingly with out having to change a text box on each page!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim objLOTabs As AcadLayouts
Dim intPgNo As Integer
Set objLOTabs = ThisDrawing.Layouts
For intPgNo = 1 To objLOTabs.Count
' ... number pages here ....
Next intPgNo