WD: WordBasic Macro to Add Page Number to Header/Footer Toolbar

Last reviewed: February 3, 1998
Article ID: Q153667
The information in this article applies to:
  • Microsoft Word for the Macintosh, versions 6.0, 6.0.1
  • Microsoft Word for Windows, versions 6.0, 6.0a, 6.0c
  • Microsoft Word for Windows NT, version 6.0
  • Microsoft Word for Windows 95, versions 7.0, 7.0a

SUMMARY

This article contains a sample macro that adds a button, which runs the FormatPageNumber WordBasic command to start the Header And Footer toolbar.

MORE INFORMATION

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/ 

Create the following sample macro:

   Sub main
      AddButton "header and footer", 12, 1, "FormatPageNumber", 303, 0
   End sub

The AddButton WordBasic command adds a toolbar button that can run a built- in command or a macro, apply a font or style, or insert an AutoText entry. This command uses the following syntax:

   AddButton Toolbar$, Position, Category, Name$ [, ButtonTxtOrImageNum[$]]
   [, Context] [, CommandValue$]

   This argument           Specifies this
   ------------------------------------------------------------------------

   Toolbar$                The name of the toolbar as listed in the
                           Toolbars dialog box (View menu)


   Position                The placement of the button on the toolbar. For
                           example, 1 indicates first position, 2 indicates
                           second position and so on.

   Category                The type of item to be assigned:

                              1  Built-in Command
                              2  Macro
                              3  Fonts
                              4  AutoText entries
                              5  Styles

   Name$                   The name of the built-in command, macro, font,
                           style or AutoText entry.

   ButtonTxtOrImageNum[$]  The text you want to appear on the button, or a
                           number corresponding to an image.

   Context                 Where the new toolbar assignment is stored:

                              0  Normal Template
                              1  Active template

   CommandValue$           Additional text, if any, required for the
                           command specified by Name$. For example, if
                           Name$ is "Color," CommandValue$ specifies the
                           color.

REFERENCES

"Microsoft Word Developer's Kit," third edition, pages 292-293


Additional query words: add button
Keywords : kbmacroexample macword ntword word6 word7 word95 wordnt kbmacro kbui
Version : WINDOWS:6.0,6.0a,6.0c,7.0; MACINTOSH:6.0,6.0.1
Platform : MACINTOSH WINDOWS
Issue type : kbhowto


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 3, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.