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

ID: Q153667

The information in this article applies to:

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 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 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          : kbmacro kbui wordnt kbmacroexample ntword macword word6 word7 word95 
Version           : WINDOWS:6.0,6.0a,6.0c,7.0; MACINTOSH:6.0,6.0.1
Platform          : MACINTOSH WINDOWS
Issue type        : kbhowto

Last Reviewed: April 9, 1999