I did a search and found this :
thread705-1126945
It references an FAQ located here:
faq705-2882
Unfortuanetly I have not been able to resolve this matter following the suggestions on this thread nor by following MS KB document located here:
The code creating the error was created by Access when it generated the switchboard so there is nothing wrong with the code.
It fails on the first line after the comments.
This code has worked on this PC for several months and then one day stopped working after a failed software install unrelated to MS Office. I have tried reinstalling Access (2007) along with all the other resolutions listed on the MS KB article referenced above. Nothing has worked. Only thing left is sending it to corporate to have it reimaged. Please let me know if you have any ideas how to fix this.
Win XP Pro SP2
Dell Optiplex 755
MS Office Professional Plus 2007
thread705-1126945
It references an FAQ located here:
faq705-2882
Unfortuanetly I have not been able to resolve this matter following the suggestions on this thread nor by following MS KB document located here:
The code creating the error was created by Access when it generated the switchboard so there is nothing wrong with the code.
Code:
' Open the table of Switchboard Items, and find
' the first item for this Switchboard Page.
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
This code has worked on this PC for several months and then one day stopped working after a failed software install unrelated to MS Office. I have tried reinstalling Access (2007) along with all the other resolutions listed on the MS KB article referenced above. Nothing has worked. Only thing left is sending it to corporate to have it reimaged. Please let me know if you have any ideas how to fix this.
Win XP Pro SP2
Dell Optiplex 755
MS Office Professional Plus 2007