A
Apgally
I've created a form to be used by our company that has been sent out to
employees using Word 2000. At the bottom of the form is a command button to
click on which will use the routing slip to return the document back to me.
I've created a self signed digital certificate to prompt people who have
their Security setting set to high.
My problem is that I have had ~ 800 people who's form has worked as
designed. However there are a few people who's form has not been sent back.
When they click on the button, the form does not get returned. Even though
we've selected "Enable macros" or "Always trust macros fromthis source". Its
almost like the code does not get executed when I click on the command
button. Does anybody know if there are any settings in Word that perhaps
these few people have somehow set differently. We are using Outlook 2000 as
our email.
Here is the code:
ActiveDocument.HasRoutingSlip = True
With ActiveDocument.RoutingSlip
..Subject = "Employee Form"
..AddRecipient Recipient:="(e-mail address removed)"
..Delivery = wdAllAtOnce
End With
ActiveDocument.Route
Thank you for any help you can give me!
employees using Word 2000. At the bottom of the form is a command button to
click on which will use the routing slip to return the document back to me.
I've created a self signed digital certificate to prompt people who have
their Security setting set to high.
My problem is that I have had ~ 800 people who's form has worked as
designed. However there are a few people who's form has not been sent back.
When they click on the button, the form does not get returned. Even though
we've selected "Enable macros" or "Always trust macros fromthis source". Its
almost like the code does not get executed when I click on the command
button. Does anybody know if there are any settings in Word that perhaps
these few people have somehow set differently. We are using Outlook 2000 as
our email.
Here is the code:
ActiveDocument.HasRoutingSlip = True
With ActiveDocument.RoutingSlip
..Subject = "Employee Form"
..AddRecipient Recipient:="(e-mail address removed)"
..Delivery = wdAllAtOnce
End With
ActiveDocument.Route
Thank you for any help you can give me!