Ok...I've incorporated it into my database, but here's the problem. When I call it, I get a message box that says "The expression On Dirty you entered as the event property setting has produced the following error: Out of stack space" and then I get gpf.
Here's my code (I'm using it with "On Dirty" on the main form)
Option Compare Database
'------------------------------------------------------------
' email
'
'------------------------------------------------------------
Function email()
On Error GoTo email_Err
If [Forms]![bug tracking backup]![Text128] = "Yes" Then
DoCmd.SendObject acTable, "Bug Tracking Database", "MS-DOSText(*.txt)", "someone@nowhere.com; someoneelse@nowhere.com", "", "", "Bug Status Update-Testing only. Disregard", "The following problem has your name assigned to it", False, ""
End If
email_Exit:
Exit Function
email_Err:
MsgBox Error$
Resume email_Exit
End Function
....
Any help would be appreciated...thanks!