WD97: Extend Selection Is Turned Off After Macro Completion (163809)
The information in this article applies to:
- Microsoft Word 97 for Windows
This article was previously published under Q163809 SYMPTOMS
If your Visual Basic for Applications macro contains a line to change ExtendMode to "On" (True), when the macro ends, Extend Mode is turned "Off" (it is set back to False).
NOTE: In earlier versions of Microsoft Word, extend selection mode remained on, upon completion of the macro.
CAUSE
This functionality is by design. The following sample Visual Basic for Applications macro demonstrates this behavior by changing extend selection mode to "On":
Sub TurnExtendModeOn()
Selection.ExtendMode = True
Msgbox "Extend Mode is On."
End Sub
When the macro ends, extend selection mode will be turned "Off". Microsoft provides programming examples for illustration only, without warranty either
expressed or implied, including, but not limited to, the implied warranties of
merchantability and/or fitness for a particular purpose. This article assumes
that you are familiar with the programming language being demonstrated and the
tools used to create and debug procedures. Microsoft support professionals can
help explain the functionality of a particular procedure, but they will not
modify these examples to provide added functionality or construct procedures to
meet your specific needs. If you have limited programming experience, you may
want to contact a Microsoft Certified Partner or the Microsoft fee-based
consulting line at (800) 936-5200. For more information about Microsoft Certified
Partners, please visit the following Microsoft Web site:
For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:
For more information about how to use the sample code in this article,
click the article number below to view the article in the Microsoft
Knowledge Base:
173707
OFF97: How to Run Sample Code from Knowledge Base Articles
MORE INFORMATION
For more information about ExtendMode, point to Macro on the Tools menu and click Visual Basic Editor. On the macro code page, type ExtendMode and then press F1.
NOTE: If the macro code page does not appear when you start the Visual Basic Editor, click Code on the View menu.
REFERENCESFor additional information, click the article numbers below
to view the articles in the Microsoft Knowledge Base:
163425 WD97: Macro Programming Resources
163435 VBA: Programming Resources for Visual Basic for Applications
| Modification Type: | Minor | Last Reviewed: | 11/21/2005 |
|---|
| Keywords: | kbdtacode kbmacroexample kbprb KB163809 |
|---|
|