- Joined
- Nov 17, 2016
- Messages
- 3
- Reaction score
- 0
Dear All,
I have a Word 2000 form which required some amendments to it. I managed to convert it to Word 2010. After I made the required changes I was then asked if I could put a submit button on the Form so that when clicked it would send it to outlook so that a user could then forward to a designated Outlook mailbox. However, in order that the form works I have to password protect the document. On doing this the submit button does not appear to work. As this document may go to hundreds if not thousands of people within the department, I need something that will be fool proof. I wouldn’t class myself as a techy, but there are a lot of people that are less able then myself at using Word. I did wonder if the easiest thing to do was to save the 2010 Form as an earlier version but I would appreciate it if someone could have a look at the code below and let me know where I am going wrong.
Sub CommandButton1_Click()
ActiveDocument.SendForReview _
Recipients:="email.com", _
Subject:="Form", _
ShowMessage:=True, _
IncludeAttachment:=False
End Sub
I have a Word 2000 form which required some amendments to it. I managed to convert it to Word 2010. After I made the required changes I was then asked if I could put a submit button on the Form so that when clicked it would send it to outlook so that a user could then forward to a designated Outlook mailbox. However, in order that the form works I have to password protect the document. On doing this the submit button does not appear to work. As this document may go to hundreds if not thousands of people within the department, I need something that will be fool proof. I wouldn’t class myself as a techy, but there are a lot of people that are less able then myself at using Word. I did wonder if the easiest thing to do was to save the 2010 Form as an earlier version but I would appreciate it if someone could have a look at the code below and let me know where I am going wrong.
Sub CommandButton1_Click()
ActiveDocument.SendForReview _
Recipients:="email.com", _
Subject:="Form", _
ShowMessage:=True, _
IncludeAttachment:=False
End Sub