SendObject

B

Beeyen

Good Day All,

The coding below causes Lotus Notes to open to a new email with Production
Assigned the Subject field, located on a tab called Routing. I am trying to
link a field call DataTrakNumber to fill in on the subject field along with
?Production Assigned? and have names in two different combo boxes (Production
Assigned and QA Reviewer Assigned) when names are selected, resolve from the
Network Global address list in the To: field of the email. Is this possible?

Private Sub Lotus_Notes_Email_Click()
Dim LResponse As Integer
LResponse = MsgBox("Workload Tracker ask if you wish to continue?", vbYesNo,
"Continue")
If LResponse = vbYes Then
DoCmd.SendObject acSendNoObject, , , , , , "Production Assigned"

Else
Exit Sub
End If
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