philbennison
Registered User.
- Local time
- Today, 16:43
- Joined
- Nov 10, 2004
- Messages
- 49
Can anyone tell me what i am doing wrong ??
I am trying to send the current 'printable form' to email recipent
Thanks in advance
Phil
Private Sub Command91_Click()
On Error GoTo Err_Command91_Click
Dim strEmail As String
strEmail = Me.email
DoCmd.SendObject acSendForm, , acFormatRTF, strEmail, , , "Urgent defect from ???", "Please find attached defect from ?????. Please confirm receipt", , True - 1
Exit_Command91_Click:
Exit Sub
Err_Command91_Click:
MsgBox Err.Description
Resume Exit_Command91_Click
End Sub
I am trying to send the current 'printable form' to email recipent
Thanks in advance
Phil
Private Sub Command91_Click()
On Error GoTo Err_Command91_Click
Dim strEmail As String
strEmail = Me.email
DoCmd.SendObject acSendForm, , acFormatRTF, strEmail, , , "Urgent defect from ???", "Please find attached defect from ?????. Please confirm receipt", , True - 1
Exit_Command91_Click:
Exit Sub
Err_Command91_Click:
MsgBox Err.Description
Resume Exit_Command91_Click
End Sub