Please - how do you delete a page

  • Thread starter Thread starter Pete G
  • Start date Start date
P

Pete G

Please - how do you delete a page in word..

Without having to click and highlight which will not work here ..

regards
 
Page is a vague concept in Word as Word is not a page layout application.
'Pages' are created as a result of formatting, margins and the abilities of
the printer driver and may comprise more than one layer each of which is
independent from the other.

You *may* find the following macro will delete the current 'page', but the
results on the rest of the document are unpredictable when the content is
not known

Sub PageDelete()
On Error Resume Next
ActiveDocument.Bookmarks("\page").Range.Delete
End Sub


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top