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
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