L
Larry
In Word 97, is it possible to return the macro descriptions that appear
for each macro at the bottom of the Macros dialog box?
Larry
for each macro at the bottom of the Macros dialog box?
Larry
Larry said:Here's a sample macro from WordBasic help that prints a list of all
macros. How do I adjust this macro to make it work in Word 97?
For Count = 1 To CountMacros(0)
Name$ = MacroName$(Count, 0)
Bold 1
Insert Name$ + Chr$(9)
Bold 0
Insert MacroDesc$(Name$)
InsertPara
Next Count
Larry
Larry said:I prefaced "CountMacros(0) with "WordBasic," but am not sure where to go
next. Can you explain in more detail what I need to do? As for
MacroNames$, whether I put "WordBasic" before it or not, I get an error
message.
For Count = 1 To WordBasic.CountMacros(0)
Name$ = MacroName$(Count, 0)
Bold 1
Insert Name$ + Chr$(9)
Bold 0
Insert WordBasic.MacroDesc$(Name$)
InsertPara
Next Count