shavenlunatic
MIS
To cancel a OnTime event set in excel vba i have:
which works fine in excel, but in Word the OnTime function seems to work differently
Excel:
expression.OnTime(EarliestTime, Procedure, LatestTime, Schedule)
Word:
expression.OnTime(When, Name, Tolerance)
I basically need to know how to cancel an OnTime event in Word in the same way that Excel handles it.
________
clueless
Code:
Application.OnTime NextTick, "UpdateClock", , False
which works fine in excel, but in Word the OnTime function seems to work differently
Excel:
expression.OnTime(EarliestTime, Procedure, LatestTime, Schedule)
Word:
expression.OnTime(When, Name, Tolerance)
I basically need to know how to cancel an OnTime event in Word in the same way that Excel handles it.
________
clueless