Max. Number of Switchboard Items?

D

depawl

Is it possible to have more than 5 items in a switchboard list? When I
try to add another item it doesn't work, nothing happens.
Thanks.
 
G

Graham R Seach

The trick to adding items to the Switchboard when you've reached the limit,
is to manually add the details to the table it uses.

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia
 
L

Larry Linson

Another trick is to simply not use the Switchboard Manager (which is,
IMNSHO, a complex solution to a simple problem) but to create your own
Switchboard Form(s) using unbound Forms and Command Buttons.

We see far more questions (indicating more problems) with the Switchboard
Manager-generated files, code, and forms than we ever did when all
switchboards were done "the old way".

Larry Linson
Microsoft Access MVP
 
J

John Spencer (MVP)

Something is wrong. I'm not sure what.

The Built-in Switchboard should handle 8 items with no modifications to the code
behind the form.
 
S

Steve

And the correct answer is...
View the switchboard form in design view. On the menu
select "view" then "code".

Look for the event:

Private Sub FillOptions()
' Fill in the options for this switchboard page.

' The number of buttons on the form.
Const conNumButtons = 8

Dim dbs As Database
Dim rst As Recordset

See the number 8? Change it to the maximum number of
buttons you would like and save.
 

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

Top