WINWORD.EXE - Application Error when using Routing

  • Thread starter Marshall R. Richard
  • Start date
M

Marshall R. Richard

I'm currently trying to using the Routing Slip method to
send a word document as an attachment through email. The
Problem is, each time the code kicks off for the Routing
Slip Method it causes a "WINWORD.EXE - Application Error"
error message then shuts WORD down. Any one have a clue
as to why?
Code i am using:
Activedocument.HasRoutingSlip = True
With Activedocument.RoutingSlip
.Subject = "IT Request For Services"
.AddRecipient "[email protected]"
.Delivery = wdAllAtOnce
End With
Activedocument.Route
 
Top