WD: WordBasic Scrolling Commands Fail If Scroll Bars InactiveLast reviewed: February 2, 1998Article ID: Q88177 |
The information in this article applies to:
SUMMARYThe WordBasic commands to scroll through a document require the scroll bars to be active in Word. For example, if the horizontal scroll bar is not active when HScroll is called from a WordBasic macro, you may receive the following error message.
Word 6.x, 7.x
WordBasic Err=544 Unable to execute the scroll command; the scroll bar is not active. Word 2.x
WordBasic Err=509 Command is unavailable. WORKAROUNDUse the appropriate macro below to activate the horizontal scroll bar in the ToolsOptionsView dialog box, before using the HScroll() command. 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 engineers 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 the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://www.microsoft.com/supportnet/refguide/ Word 2.x, 6.x, 7.x
Sub MAIN ToolsOptionsView .HScroll = 1 n = HScroll() HScroll n + 20 'increases the horizontal scroll percentage by 20% End Sub Word 1.x
Sub MAIN ViewPreferences .HScroll = 1 n = HScroll() HScroll n + 20 'increases the horizontal scroll percentage by 20% End SubIf you are working with the vertical scroll bars and VScroll instead of HScroll, substitute VScroll for all occurrences of HScroll in the above macros.
MORE INFORMATIONThe following list describes some of the functions and statements used in the above macros:
HScroll <percentage> - Scrolls the file contents horizontally the specified percentage of the document width. n = HScroll() - Returns the current horizontal scroll position as a percentage of the document width. VScroll <percentage> - Scrolls vertically to the place in the document that is the specified percentage of the document's length. n = VScroll() - Returns the current vertical scroll position as a percentage of the document's size. REFERENCES"Using WordBasic," by WexTech Systems and Microsoft, pages 333 and 233
|
Additional query words: scroll 509
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |