ID: Q81791
The information in this article applies to:
In Microsoft Word, you can use the WordBasic SelInfo function to return information about the current selection. For example, you can use the SelInfo function to determine the current page and section number for the insertion point position or the selected text. The SelInfo() function is not available in Word for Windows version 1.x.
The following macro posts the current page and section number in a message box:
Sub MAIN
Section = SelInfo(2)
Page = SelInfo(3) 'Physical page number
MsgBox "Page" + Str$(Page) + Chr$(160) + "Section" + Str$(Section)
End Sub
The syntax for SelInfo() is as follows:
n = SelInfo(Type)
There are 36 different arguments or types for the SelInfo function in
Word 6.0 (30 arguments in Word version 2.x). Type number 2 returns
the section number containing the selection. Type number 3 returns
the physical page number in the document containing the selection.
Type number 1 returns the logical page number for the current page.
In otherwords, physical page 4 may be logical page number 23.
"Using WordBasic," by WexTech Systems and Microsoft, page 277
Additional query words:
Keywords : wordnt kbmacroexample winword ntword macword word6 word7 word95
Version : WINDOWS:2.0,2.0a,2.0a-CD,2.0b,2.0c,6.0,6.0a,6.0c,7.0,7.0a; MACINTOSH:6.0,6.0.1,6.0.6.0.1a
Platform : MACINTOSH Win95 WINDOWS winnt
Issue type : kbinfo
Last Reviewed: March 6, 1998