I am running an MS Access 97 application were from 1 form I have a button to invoke Outlook Express.
On my test machine I run MS Access 97 under Windows XP home
I have 2 hard drives C: and G: to simulate the production system
MS Access is on the C: drive and the Access Application is also on the C: drive. The data is on the G: drive
On the Production system the data is on the Network server running under Windows 2000 and the application along with MS Access 97 is on each of the 2 stations running under Windows XP
The form has an EMail button supported by the following
VB code
Private Sub Command183_Click()
Dim dbsSchoolSystem As Database
Dim rstStudent As Recordset
Dim SendEMail As String
SendEMail = Me!EMAILADD
DoCmd.SendObject acSendNoObject, , , SendEMail, , , "The Real Estate Training Institute", "We just received the course material today!char(13)Have a good day"
'rstStudent.Close
End Sub
On the test machine when I click on the EMail button it envokes Outlook Express and I can send an EMail
On the production machine when I click on the EMail button I receive the following Error Message
Run-Time Error 2046
The Command or Action "Send Object: isn't available now
I am at a loss why it works on the test machine and not on the production machine. Any ideas are appreciated