Error 48 Unable to load DLL

J

Jim Rogers

I'm running Windows 2000 and Outlook 2002

I have some simple test code which runs ok on
machines with Windows 2000 and Outlook 2000 but not on my
version as mentioned above. I've tried using.
Outlook 2002 "Microsoft Outlook 10.0 Object Library"
msoutl.olb and "Microsoft Outlook 9.0 Object Library"
neither work

sample code..........
----------------------------------
Private Sub Command1_Click()

Dim objOutlook As New Outlook.Application
Dim objMail As MailItem

Set objOutlook = CreateObject("outlook.application")
Set objMail = objOutlook.CreateItem(olMailItem)

With objMail
.To = "email address"
.Subject = "Test"
.Body = "Test Mail"
.Send
End With

Set objMail = Nothing
Set objOutlook = Nothing

End Sub
 
Top