Skip to Main Content
CorelDRAW Ideas Portal
Created by Guest
Created on Jun 10, 2022

Add a chosen number of pages

When setting up a document, sometimes we have to add pages and it's time consuming to add them one by one. It would be great if, say, someone gives us 3 more photos to add to a document and rather than adding each page one at a time, we could have a spin dial or a type-in box that allows us to add multiple pages at once.

  • Attach files
  • Miroslav Balchev
    Reply
    |
    Mar 10, 2023
    Hello, A small VBA macro can add pages: Sub bhbp_add_pages() ActiveDocument.Pages.Add 5 'TO ADD 5 PAGES or Activedocument.AddPages 5 End Sub You may integrate this code in Inputbox or user form, assign hot key to this macro atc. Greetings!