Command Button & Email Subject????

R

Rusty Bullethole

Hi there!

I have created a form, which the user completes and then presses
button to automatically submit the form as an attachment, via e-mail.

I have done this using the code below for my command button:

ActiveDocument.HasRoutingSlip = True
With ActiveDocument.RoutingSlip
.Subject = "*******"
.AddRecipient "********"
.Delivery = wdAllAtOnce
End With
ActiveDocument.Route

End Sub


My problem is that I need the user to be able to change to subject lin
of the email, or, more accurately, be able to make a selection whic
would populate the subject line with pre-defined text.

I have considered using radio buttons, ie if button 'a' is selected th
subject line is "resolved" if button 'b' is selected the line would b
"unresolved". But, I don't know if this is possible

Thank you in advance,

Rust
 

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