Help needed with switchboard errors please

  • Thread starter Thread starter keri
  • Start date Start date
Look in Tools/Startup. I bet the switchboard is still listed as the startup
form.
 
Thanks.

Any idea how I can fix my error or what may be causing it -

On startup (with switchboard) I get the error

Run time error 429
ActiveX component can't create object.

If I debug - the first line of this code is highlighted.

Set con = Application.CurrentProject.Connection
stSql = "SELECT * FROM [Switchboard Items]"
stSql = stSql & " WHERE [ItemNumber] > 0 AND [SwitchboardID]=" &
Me![SwitchboardID]
stSql = stSql & " ORDER BY [ItemNumber];"
Set rs = CreateObject("ADODB.Recordset")
rs.Open stSql, con, 1 ' 1 = adOpenKeyset
 
Check the References collection of your database to ensure that the Library
"Microsoft ActiveX Data Object 2.X Library" is included.

Also check other References and make sure none is marked as "MISSING".

Have you modified the code in the Swichboard Form in anyway?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Access Switchboard error message 1
Switchboard Compile Error 1
switchboard problem 4
Switchboard manager 2
Switchboard Minimized 4
Running a Macro on a switchboard 1
Switchboard passwords 2
Switchboard 1

Back
Top