brainless
brainless

Reputation: 5819

Run-time error '429'

I have developed an inventory management software using VB6. and i have copied it on Client's machine and it was working. but 3 days before they formatted the system and now i copied the software again an i tried to run the application. but i got the following error message

Run-time error '429': ActiveX component can't create object

Please help me.

Upvotes: 3

Views: 4556

Answers (2)

Eight-Bit Guru
Eight-Bit Guru

Reputation: 9961

Does your app use any Office objects? I have a very dim and distant memory of writing some VB6 code back in 2001 or so that used Word and Excel COM objects, and that would spit a 429 if the app was installed on a users' PC who didn't have Office installed...

Upvotes: 0

Paul Hadfield
Paul Hadfield

Reputation: 6136

The most likely cause is a missing or unregistered/corrupt ActiveX control, see this link. Does your application have an installation program you should have run? Otherwise you'll have to look through the project dependencies and try and guess to see what is missing if the error context doesn't give any clue.

Upvotes: 5

Related Questions