ID: Q81414
The information in this article applies to:
In Microsoft Word for Windows, you can call macro subroutines and functions that are defined in one macro from within another macro. You can use this technique to create libraries of common routines and avoid having to copy or rewrite procedures you use often.
For more information about calling macro subroutines and functions, while in the Visual Basic for Applications Editor click the Office Assistant, type "Call," click Search, and then click to view "Call Statement."
Subroutine:
To call a macro subroutine from within another macro, use the following syntax:
MacroName.RoutineName
MacroName is the name of the macro containing the routine, and RoutineName
is the name of the routine you want to use. The template containing the
library routine, or a document to which the template is attached, must be
open when the routine is called. Routines stored in the NORMAL.DOT template
are always available. For example, if you create a macro called Lib1, which
contains the subroutine MyBeep, you can call MyBeep from other macros. The
following is the subroutine MyBeep:
Sub MyBeep
Beep : Beep : Beep
For t = 1 to 100 : Next 'Pause
Beep : Beep : Beep
End Sub
The following example illustrates how you can use the MyBeep subroutine in
a macro called SwitchToDotPath:
Sub MAIN
MsgBox "This is a test"
Lib1.MyBeep
End Sub
Function:
The syntax for using a function that you defined in another macro is similar to that used for calling a subroutine. For example, if you define a function called MyDateTime$(time$) in the Lib1 macro library, you could call that function from another macro, titled CheckDateTime. The following is the MyDateTime$(time$) function:
Function MyDateTime$(time$)
mDate$ = Date$()
mTime$ = Time$()
MyDateTime$ = mDate$ + " " + mTime$
End Function
You can call the MyDateTime$(time$) function from the following macro,
called CheckDateTime:
Sub Main 'CheckDateTime macro
CheckDateTime$ = "91.09.30 11:50 AM"
ThisDateTime = Lib1.MyDateTime$(ThisDateTime$)
Print ThisDateTime$
If ThisDateTime$ = CheckDateTime$ Then
Lib1.MyBeep
MsgBox "It's time for lunch!"
Else
MsgBox "It's not time for lunch yet!"
EndIf
End Sub
"Using WordBasic," by WexTech Systems and Microsoft, pages 58-59
Kbcategory: kbusage kbmacro KBSubcategory: Additional query words: 1.x 1.0 1.1 1.1a 2.0 7.0 word95 winword macword 6.0.1 word7 word6 2.0a 2.0a winword2 6.0 6.0a 6.0c word8 word97 8.0
Keywords : kbmacro macword98 winword ntword macword word6 winword2 word7
Version : WINDOWS:2.0,2.0a,2.0a- CD,2.0b,2.0c,6.0,6.0a,6.0c,7.0,7.0a,97; MACINTOSH:6.0,6.0.1,6.0.1a,98
Last Reviewed: February 3, 1998