OFF98: How to Run Sample Code from Knowledge Base Articles
ID: Q181058
|
The information in this article applies to:
-
Microsoft Word 98 Macintosh Edition
-
Microsoft PowerPoint 98 Macintosh Edition
-
Microsoft Excel 98 Macintosh Edition
SUMMARY
The Microsoft Knowledge Base contains a number of articles that contain
sample code for Visual Basic for Applications macros. Many of these macros
illustrate basic concepts of programming in Visual Basic for Microsoft
Office. This article contains instructions on how to use the sample code to
create a new macro, and how to run that macro.
MORE INFORMATIONMicrosoft 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 Solution Provider
or the Microsoft fee-based consulting line at (800) 936-5200. For more information about
Microsoft Certified Solution Providers, please see the following page on the World Wide Web:
http://www.microsoft.com/mcsp/
For more information about the support options available from Microsoft, please see the
following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/overview/overview.asp
Microsoft Excel stores macros in workbooks, Microsoft PowerPoint stores
macros in presentations, and Microsoft Word stores macros in templates and
documents. To use the sample code in a Knowledge Base article, you must add
a new Visual Basic macro (or select an existing macro) in an Excel
workbook, PowerPoint presentation, or Word template or document. You can
then paste or type the sample code into this macro. Use any of the
following methods.
To Create a New Macro
- Open or create an Excel workbook, PowerPoint presentation, or Word
template or document as appropriate.
- On the Tools menu, point to Macro, and then click Macros.
- In the Macros In list, click the Excel workbook, PowerPoint presentation
or Word template or document where you want to save the macro.
- In the Macro Name box, type a name for the macro.
- Click Create.
This starts the Visual Basic Editor.
- Type the macro code.
NOTE: Type the macro code between the first line
Sub <macro name>()
and the last line:
End Sub
To add the sample code to the macro using the Clipboard, follow these
steps:
- Switch to the program that you are using to view the Knowledge Base
article, such as Microsoft Internet Explorer.
- Select only the sample code between the first line, "Sub <macro
name>()" and the last line, "End Sub."
- On the Edit menu, click Copy.
- Switch to the Visual Basic Editor.
- In the Visual Basic Editor, click to place the insertion point
between the first line, "Sub <macro name>()" and the last line, "End
Sub" of your macro.
- On the Edit menu, click Paste.
To Add the Sample Code to a Module
To add code to a module, you must either have an existing module or create
a new module. To do this, follow these steps:
- Open or create an Excel workbook, PowerPoint presentation, or Word
template or document as appropriate.
- On the Tools menu, point to Macro, and then click Visual Basic Editor.
- In the Project window of the Visual Basic Editor (by default this is in
the upper-left corner), click the project icon with the same name as
your workbook, presentation, template, or document. If you haven't yet
saved your workbook, presentation, template or document, the project
name is based on the program that you are using.
Program Default project name
-------------------------------------------
Microsoft Excel VBAProject(Book1)
Microsoft PowerPoint VBAProject(Presentation1)
Microsoft Word Project(Document1)
-or-
TemplateProject(Template1)
NOTE: If you want to store your macro in the default Microsoft
Word template, Normal.dot, double-click the Normal project.
- If the project you clicked does not contain a folder called Modules
underneath it, click Module on the Insert menu.
- Click anywhere in the code window of the module you want to create. The
code window is usually in the upper-right corner of the Visual Basic
Editor.
- Type the sample code exactly as it appears in the Knowledge Base
article, including the "Sub <macro name>()" and "End Sub" lines.
Use the TAB key to indent text.
NOTE: Lines that begin with an apostrophe (') are comments and are not
required to run the macro. However, you may want to type them in to make
it easier to understand the macro.
To Run the Macro
- Switch from the Visual Basic Editor to Excel, PowerPoint, or Word as
appropriate.
- On the Tools menu, point to Macro, and then click Macros.
- Click the name of the macro on the Macro Name list, and then click Run.
REFERENCES
Microsoft Help for each Office program contains numerous topics about
working with macros. Visual Basic Help contains extensive information about
writing your own code.
For additional information about getting help with Visual Basic for
Applications, please see the following article in the Microsoft Knowledge
Base:
Q163435
VBA: Programming Resources for Visual Basic for Applications
Additional query words:
wordcon vba vbe visual basic
Keywords : kbprg xlvbahowto xlvbainfo OffVBA kbwordvba macword98
Version : MACINTOSH:98
Platform : MACINTOSH
Issue type : kbhowto
|