Ran into a little problem was wondering if anyone had solved previously... I have an application with an email button... standard code with an "If...Then"........like...
Else
Me.Refresh
ToList = EmailList()
DoCmd.SendObject acSendReport, "rptJobNoticeCurrent", "SnapshotFormat(*.snp)", _
EmailList(), "", "", Me!JobDescription, "Job Notice", False, ""
End If
I was putting this frontend on a couple of new computers. The employees email had been setup in Outlook Express...I could not figure out why the email function was throwing errors at me.. Then I started the regular Outlook program pulled in the employees setup and it worked fine...
I'm just wondering why? I've run into some "early binding vs late binding" issues lately and that came to mind... BUT, the "DoCmd SendObject" doesn't reference any email program.... or does it?
Else
Me.Refresh
ToList = EmailList()
DoCmd.SendObject acSendReport, "rptJobNoticeCurrent", "SnapshotFormat(*.snp)", _
EmailList(), "", "", Me!JobDescription, "Job Notice", False, ""
End If
I was putting this frontend on a couple of new computers. The employees email had been setup in Outlook Express...I could not figure out why the email function was throwing errors at me.. Then I started the regular Outlook program pulled in the employees setup and it worked fine...
I'm just wondering why? I've run into some "early binding vs late binding" issues lately and that came to mind... BUT, the "DoCmd SendObject" doesn't reference any email program.... or does it?