I am experiencing it on multiple machines in multiple environments across multiple companies. All programs are up to date with latest patches. All generic installations, nothing out of the ordinary.
Again, only behaves this way with Outlook, not Thunderbird, not Lotus Notes.
Here is my code:
Public Function Email1()
'from rol, no subj
On Local Error GoTo Err
If IsNull(Screen.ActiveForm.Email) Then
MsgBox "An email address is required before using this feature", , "FYI"
Else
DoCmd.SendObject , , , Screen.ActiveForm.Email, , , , , True
End If
Err:
If Err.Number = 2293 Then MsgBox "Please open email program before requesting email functions"
'some email program like to be open before running this
GoTo Out
If Err.Number = 2501 Then GoTo Out
MsgBox Err.Number & ", " & Err.Description
Out:
End Function