WD: WordBasic Scrolling Commands Fail If Scroll Bars Inactive

Last reviewed: February 2, 1998
Article ID: Q88177
The information in this article applies to:
  • Microsoft Word for Windows, versions 1.0, 1.1, 1.1a, 2.0, 2.0a, 2.0a-CD, 2.0b, 2.0c, 6.0, 6.0a, 6.0c
  • Microsoft Word for Windows NT, version 6.0
  • Microsoft Word for Windows 95, versions 7.0, 7.0a
  • Word for the Macintosh, versions 6.0, 6.0.1

SUMMARY

The 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.

WORKAROUND

Use 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 Sub

If 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 INFORMATION

The 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
Keywords : kbmacroexample macword ntword winword word6 word7 word95 wordnt kberrmsg kbmacro
Version : WINDOWS:1.0,1.1,1.1a,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.1a
Platform : MACINTOSH WINDOWS
Issue type : kbprb
Solution Type : kbworkaround


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 2, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.