Hi vbaNOOB,
like this, in a way, which may not be exactly what you want,
but then, what do you want exactly? ;-)
(I hate "exactly", there seems to be always room for interpretation.)
Maybe a loop over all pages and check,
whether they start with a paragraph,
which starts with that page?
Note, the first paragraph on a page
may start on the previous page.
And it may continue over several pages.
Sub Test400()
' question:
' is the first letter of the first paragraph
' of the page the start of the selection is on
' the first letter of the page?
Dim x As Long
Dim y As Long
With ActiveDocument.Bookmarks("\page").Range
x = .Paragraphs(1).Range.Characters.First.start
y = .Characters.First.start
End With
If x = y Then
MsgBox "Yes"
Else
MsgBox "no"
End If
End Sub
HTH

Signature
Greetings from Bavaria, Germany
Helmut Weber, MVP WordVBA
Win XP, Office 2003
"red.sys" & Chr$(64) & "t-online.de"