|
-
January 24th, 2000, 08:29 AM
#1
429 Again
The bane of my life, Error 429, ActiveX cannot create object, has returned.
I am using SQLOLE library, and am sure it is this which elicits the error, on the initial oServer.Disconnect. I've tried all the obvious business, but to no avail. Is there something I'm missing?
Thanks
S. monkey
-
January 25th, 2000, 06:25 AM
#2
Re: 429 Again
Error 429 is usually down to programmer error - in most cases you're calling a method on an object that hasn't been instantiated.
What kind of error handling do you have in your routine ? If you know the procedure / routine name where the error is occurring then I'd recommend putting line numbers in front of every statement,
eg:
'
1: SomeObject.DoSomething
2: AnotherObject.DoSomethingelse
'
In your error handler, you can then use the VB Erl command to get the line number that raised the error.
Chris Eastwood
CodeGuru - the website for developers
http://codeguru.developer.com/vb
-
February 22nd, 2000, 02:04 PM
#3
Re: 429 Again
Another common cause of the 429 is the wrong library installed on the dev or target system. i.e. jet 3.6 on the development system and 3.5 on the target will get this error.
Been there. Done that!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|