This is what I copied and pasted -It's starting to scare me!!!!
Private Sub Command29_Click()
On Error GoTo mcre_mailreports_mcre_mailreports_Err
If (Reports!SummaryrptAdmissions) Then
DoCmd.SendObject acReport, "SummaryrptAdmissions", "SnapshotFormat(*.snp)", "
awilson@southerncareinc.com", "", "rptAdmissions", "", False, ""
End If
If (Reports!SummaryrptOngoingDocumentation1) Then
DoCmd.SendObject acReport, "SummaryrptOngoingDocumentation1", "SnapshotFormat(*.snp)", "
awilson@southerncareinc.com", "", "", "rptOngDocumentation1", "", False, ""
End If
If (Reports!SummaryrptOngoingDocumentation2) Then
DoCmd.SendObject acReport, "SummaryrptOngoingDocumentation2", "SnapshotFormat(*.snp)", "
awilson@southerncareinc.com", "", "", "rptOngDocumentation2", "", False, ""
End If
If (Reports!SummaryrptOngoingDocumentation3) Then
DoCmd.SendObject acReport, "SummaryrptOngoingDocumentation3", "SnapshotFormat(*.snp)", "
awilson@southerncareinc.com", "", "", "rptOngDocumentation3", "", False, ""
End If
If (Reports!SummaryrptVolunteers) Then
DoCmd.SendObject acReport, "SummaryrptVolunteers", "SnapshotFormat(*.snp)", "
awilson@southerncareinc.com", "", "", "rptPtCareVolunteers", "", False, ""
End If
If (Reports!SummaryrptDischargeTransferRevocation) Then
DoCmd.SendObject acReport, "SummaryrptDischargeTransferRevocation", "SnapshotFormat(*.snp)", "
awilson@southerncareinc.com", "", "", "rptDischargeTransferRevocation", "", False, ""
End If
If (Reports!SummaryrptDeathBereavement) Then
DoCmd.SendObject acReport, "SummaryrptDeathBereavement", "SnapshotFormat(*.snp)", "
awilson@southerncareinc.com", "", "", "rptDeathBereavement", "", False, ""
End If
If (Reports!SummaryrptHomeVisits) Then
DoCmd.SendObject acReport, "SummaryrptHomeVisits", "SnapshotFormat(*.snp)", "
awilson@southerncareinc.com", "", "", "rptHomeVisits", "", False, ""
End If
If (Reports!SummaryrptQualityIndicatorstCustomerService) Then
DoCmd.SendObject acReport, "SummaryrptQualityIndicatorsCustomerService", "SnapshotFormat(*.snp)", "
awilson@southerncareinc.com", "", "", "rptPICustomerService", "", False, ""
End If
If (Reports!SummaryrptPersonnelManagementClinical) Then
DoCmd.SendObject acReport, "SummaryrptPersonnelManagementClinical", "SnapshotFormat(*.snp)", "
awilson@southerncareinc.com", "", "", "rptPMClinical", "", False, ""
End If
If (Reports!SummaryrptPersonnelManagementCommunityRelations) Then
DoCmd.SendObject acReport, "SummaryrptPersonnelManagementCommunityRelations", "SnapshotFormat(*.snp)", "
awilson@southerncareinc.com", "", "", "rptPMCR", "", False, ""
End If
If (Reports!SummaryrptPersonnelManagementVolunteers) Then
DoCmd.SendObject acReport, "SummaryrptPersonnelManagementVolunteers", "SnapshotFormat(*.snp)", "
awilson@southerncareinc.com", "", "", "rptPMVolunteers", "", False, ""
End If
If (Reports!SummaryrptAdministrationandManagement) Then
DoCmd.SendObject acReport, "SummaryrptAdministrationandManagement", "SnapshotFormat(*.snp)", "
awilson@southerncareinc.com", "", "", "rptAdministrationandManagement", "", False, ""
End If
If (Reports!SummaryrptPerformanceImprovementEducation) Then
DoCmd.SendObject acReport, "SummaryrptPerformanceImprovementEducation", "SnapshotFormat(*.snp)", "
awilson@southerncareinc.com", "", "", "rptPerformanceImprovementEducation", "", False, ""
End If
mcre_mailreports_mcre_mailreports_Exit:
End Sub
mcre_mailreports_mcre_mailreports_Err:
MsgBox Error$
Resume mcre_mailreports_mcre_mailreports_Exit
End Sub
End Sub