Hi,

I have the following code:
VB Code:
  1. Dim olapp As New Outlook.Application
  2. Dim olMail As Outlook.MailItem
  3.  
  4. Set olMail = olapp.CreateItem(olMailItem)
  5.  
  6. olMail.To = txtEmail.Text
  7. olMail.Subject = "Blah..."
  8. olMail.send

It works on my machine (with Outlook 2002), but when I install it on the user's PC (with Outlook 2000) I get "Activex cannot create object".

I used P+D wizard to create the setup files, and I checked the MSOUTL.OLB file on the users PC - it has the same attrib. as on my PC.