I've got a small project and everytime it runs on a client workstation, it comes uo with Runtime error 429 - Activex component cant create object. No matter what I do, I cant get it to work.
Private Sub Command1_Click()
Dim objNewMail As CDONTS.NewMail
Set objNewMail = CreateObject("CDONTS.NewMail")
objNewMail.Send "carl@test.co.za", "CRMTeam@test.co.za", "Test", "Calculation ", 0
Set objNewMail = Nothing
End
End Sub
I've done the regsvr32 thing and it hasn't helped.
PS - It happens on all machines except my development one.