Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ActiveX Component can't create object

Status
Not open for further replies.

BrockLanders

Programmer
Dec 12, 2002
89
US
I have an Access 2003 database setup for about 6 users on a network. The tables are housed on the network server and the users database's (queries, form, etc.) are housed on their local machines. All users link to the tables on the network. Everything is working fine except one user is getting an error: Run-time Error '429' ActiveX component can't create object.

When a user opens their database I have some code run. It's very simple code that is just opening a query. However, when this user opens their db they get the above error at the line in bold below:
Code:
Function Notify()

Dim queryInst As String, queryPO As String
Dim RecSet As DAO.Recordset, DBase As Database

queryInst = "SELECT * FROM [Need Instruction Sheet] ORDER by [Program]"

[b]Set DBase = CurrentDb[/b]
Set RecSet = DBase.OpenRecordset(queryInst, dbOpenForwardOnly)
Any idea why this error is occuring for just one user? All users are running Windows XP.
Thanks in advance for any help
 
Have checked the references ?

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
Yes, all the references are there I believe. I copied the same user database, which already had the references set onto each persons PC. Do I need to set references on each PC as well?
It seems to me like a login issue. I do not have any security in the database, but all users must login to the server since that's where the backend (tables) reside. Does this sound like a possibility?
Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top