L
Larry Sulky
I need to intercept a few built-in macros, such as GrowFont. Based on
a boolean flag, I then want to execute Word's built-in GrowFont, as if
I'd never intercepted it. What's a nice, clean way to do that?
Sub GrowFont()
if flagNeverMind then ''' Oops! Let it go. Sorry I interfered.
''' Do the "real" GrowFont here, but how?
else
MsgBox "Not permitted at this time." , , "ERROR"
end if
End Sub
I'd rather not recreate the built-in macro within my own, but just
call it and gracefully step out of its way.
TIA--
--larry
a boolean flag, I then want to execute Word's built-in GrowFont, as if
I'd never intercepted it. What's a nice, clean way to do that?
Sub GrowFont()
if flagNeverMind then ''' Oops! Let it go. Sorry I interfered.
''' Do the "real" GrowFont here, but how?
else
MsgBox "Not permitted at this time." , , "ERROR"
end if
End Sub
I'd rather not recreate the built-in macro within my own, but just
call it and gracefully step out of its way.
TIA--
--larry