Hi, I am using CDONTS to send an email via my VB application.

I have referenced the CDO 1.2 library and I can create a new mail object like so;

Code:
Dim oMail As New CDONTS.NewMail
oMail.To = "[email protected]"
oMail.From = "[email protected]"
oMail.Subject = "Notice"
oMail.Body = "Hi there!"
oMail.Send
When I run my code I can create the object but when I call the send method (oMail.send)

I get an 'ActiveX can't create object' error 429

I am assuming that it is using the CDONTS.dll much like ASP does and I have ensured that the CDONTS.dll is registered on my computer.

Any help appreciated
Thanks
Markus_J