Word is not a page layout program and so a 'page' is a very nebulous entity
made up of several different 'layers' including the drawing layer, text
later and headers/footers. Deleting pages from documents which use various
of these elements can be unpredictable - however, it is easy enough to use a
macro to delete a particular page. The code below will do that, but don't be
too disappointed if it screws up your formatting.
Sub PageDelete()
sNumber = InputBox("Delete from which page", "Delete Pages", 1)
sRange = InputBox("Delete how many pages", "Delete Pages", 1)
Selection.GoTo What:=wdGoToPage, Which:=wdGoToNext, Name:=sNumber
For a = 1 To sRange
ActiveDocument.Bookmarks("\page").Range.Delete
Next a
End Sub
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><
Graham Mayor - Word MVP
My web site
www.gmayor.com
Word MVP web site
www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>><