Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problems with email

Status
Not open for further replies.

jdwm2310

Technical User
Jul 26, 2001
396
US
Hi, I want to email a specific part of my form, how can I go about doing that? this is the code for sending the form.
Any suggestions would be greatly appreciated.


Private Sub Route_To_AfterUpdate()
DoCmd.SendObject acSendForm, Me.FormName, acFormatRTF, Route_To, , , (TicketNumber & " is the ticket number which requires your response")
DoCmd.Close acForm, "HelpDeskCalls", acSaveYes
DoCmd.OpenForm "TicketOption"
MsgBox "The ticket has been routed to" & Me.Route_To, vbOKOnly + vbInformation = vbOK
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top