Written by Allen Wyatt (last updated April 25, 2020)
This tip applies to Word 97, 2000, 2002, and 2003
When you are creating a macro for use in Word, you may want to determine if the Num Lock key is enabled. You can figure out this information by using the Information property with the wdNumLock argument. The technique is shown in the following code:
If Selection.Information(wdNumLock) Then Print "The Num Lock key is on" Else Print "The Num Lock key is off" End If
This, obviously, is not a complete macro. You would use this code within your larger macro, and then adapt it to what you need done depending on whether the NumLock key is enabled or not. The Information property returns either True or False depending on the condition of the key. This makes it very handy for using in the If ... End If construct, as shown.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (1204) applies to Microsoft Word 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Word (Word 2007 and later) here: Determining if Num Lock is On.
Do More in Less Time! Are you ready to harness the full power of Word 2013 to create professional documents? In this comprehensive guide you'll learn the skills and techniques for efficiently building the documents you need for your professional and your personal life. Check out Word 2013 In Depth today!
If your macro needs to determine the status of the Caps Lock key, you need the code in this tip. Just use the Information ...
Discover MoreIf you are formatting your document by using a macro, you may need to make some of your text italics. You do that by ...
Discover MoreWhen using a macro to process text in a document, it is not unusual to replace one portion of a text string with another ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments