philbennison
Registered User.
- Local time
- Today, 16:22
- Joined
- Nov 10, 2004
- Messages
- 49
i have recently created a database, there are 4 tables all linked. everything was working fine. i have two combo lists which were referenced to two other tables. these were entered as value lists. i then changed these to refer directly to the table. since then my email doesnt work.
I have taken everything apart and rebuilt it, but things that worked before dont work now.
Please help !!
Phil
Private Sub command_Click()
On Error GoTo Err_command_Click
Dim strEmail As String
Dim strDoc As String
strEmail = Me.email
strDoc = "defect_notification"
strSubject = "subject"
strMessage = "message"
DoCmd.SendObject , acReport, strDoc, strEmail, , , , , False
Exit_command_Click:
Exit Sub
Err_command_Click:
MsgBox Err.Description
Resume Exit_command_Click
End Sub
I have taken everything apart and rebuilt it, but things that worked before dont work now.
Please help !!
Phil
Private Sub command_Click()
On Error GoTo Err_command_Click
Dim strEmail As String
Dim strDoc As String
strEmail = Me.email
strDoc = "defect_notification"
strSubject = "subject"
strMessage = "message"
DoCmd.SendObject , acReport, strDoc, strEmail, , , , , False
Exit_command_Click:
Exit Sub
Err_command_Click:
MsgBox Err.Description
Resume Exit_command_Click
End Sub