I have a workorder database whereusers enter work orders and press a "Print" command button, the button creates a report and the user then prints the report.
I wnat to add a button that will send me an email with the work order( report) to me. The problem is the spefic work order is not emailed but all of the reports are. The print works fine so I tried to duplicate it in my macro by adding
Dim strWhere As String
strWhere = "[ID] = " & Me.[ID]
DoCmd.OpenReport "Work orders", acViewPreview, , strWhere
But the email still sends all of my reports.
Bulow is the macro I'm using
any help would be appreciated
Thank you
'------------------------------------------------------------
' Macro2
'
'------------------------------------------------------------
Function Macro2()
Dim strWhere As String
On Error GoTo Macro2_Err
strWhere = "[ID] = " & Me.[ID]
DoCmd.OpenReport "Work orders", acViewPreview, , strWhere
DoCmd.SendObject strWhere, "Work Orders", "PDFFormat(*.pdf)", "My email address", "", "", "Work order", "A new work order hase been entered", False, ""
Macro2_Exit:
Exit Function
Macro2_Err:
MsgBox Error$
Resume Macro2_Exit
End Function
I wnat to add a button that will send me an email with the work order( report) to me. The problem is the spefic work order is not emailed but all of the reports are. The print works fine so I tried to duplicate it in my macro by adding
Dim strWhere As String
strWhere = "[ID] = " & Me.[ID]
DoCmd.OpenReport "Work orders", acViewPreview, , strWhere
But the email still sends all of my reports.
Bulow is the macro I'm using
any help would be appreciated
Thank you
'------------------------------------------------------------
' Macro2
'
'------------------------------------------------------------
Function Macro2()
Dim strWhere As String
On Error GoTo Macro2_Err
strWhere = "[ID] = " & Me.[ID]
DoCmd.OpenReport "Work orders", acViewPreview, , strWhere
DoCmd.SendObject strWhere, "Work Orders", "PDFFormat(*.pdf)", "My email address", "", "", "Work order", "A new work order hase been entered", False, ""
Macro2_Exit:
Exit Function
Macro2_Err:
MsgBox Error$
Resume Macro2_Exit
End Function