M
Mitrokhin
I would like to have a complete list with all the word commands
plus their descriptions but i can't make VBA do what i want it to
In wordbasic you could write something like this:
Sub MAIN
FileNewDefault
For NumTmpltMax = 1 To CountMacros(0, 1, 0)
InsertPara
Bold 1 : Insert MacroName$(NumTmpltMax, 0, 1, 0) : Bold 0 : Insert
Chr$(32)
Insert MacroDesc$(MacroName$(NumTmpltMax, 0, 1, 0))
Next NumTmpltMax
InsertPara
End Sub
and it works, but i can't for the live of me find an equivalent to
the above functions in VBA.
I'am aware that the Word MVP site carries a list like this but i want
to see precisely which commands _Word X for the Macintosh_ (VBA5)
supports.
Can anyone help ?
plus their descriptions but i can't make VBA do what i want it to
In wordbasic you could write something like this:
Sub MAIN
FileNewDefault
For NumTmpltMax = 1 To CountMacros(0, 1, 0)
InsertPara
Bold 1 : Insert MacroName$(NumTmpltMax, 0, 1, 0) : Bold 0 : Insert
Chr$(32)
Insert MacroDesc$(MacroName$(NumTmpltMax, 0, 1, 0))
Next NumTmpltMax
InsertPara
End Sub
and it works, but i can't for the live of me find an equivalent to
the above functions in VBA.
I'am aware that the Word MVP site carries a list like this but i want
to see precisely which commands _Word X for the Macintosh_ (VBA5)
supports.
Can anyone help ?