Submit Button Action

G

Guest

I made a form in word. What I want is that when someone clicks the submit
button, to have the information e-mail to me and then have the person viewing
the page directed to a different page. I cannot figure out how to ask the
button to do both. Any ideas?
 
G

Guest

I am having the same problem. I changed the action of the button to mailto,
but it simply opens outlook without the form attached. I actually don;t care
about redirecting to a new page, I just need a current copy of the form
e-mailed. I added the submit button using the toolbar, I am using office
2003.
 
G

Guest

Draw a command button
on view code:
Private Sub CommandButton1_Click()
Options.SendMailAttach = True
ActiveDocument.SendMail
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top