lemonhalls
Technical User
I have a cover page to start and am trying to write a macro to insert the toc to the second page.
I currently have a bookmark at the beginning of the second page and I start off my document with a blank second page which is not very pleasant.
______________________
Sub locateSecondPage()
ActiveDocument.Bookmarks("\EndOfDoc").Copy "currpara"
ActiveDocument.Bookmarks("currpara").Select
End Sub
I would like to write the code to tell it to insert a blank page after the current page but not sure about the syntax.
Any help will be appreciated. Thanks in advance!
I currently have a bookmark at the beginning of the second page and I start off my document with a blank second page which is not very pleasant.
______________________
Sub locateSecondPage()
ActiveDocument.Bookmarks("\EndOfDoc").Copy "currpara"
ActiveDocument.Bookmarks("currpara").Select
End Sub
I would like to write the code to tell it to insert a blank page after the current page but not sure about the syntax.
Any help will be appreciated. Thanks in advance!