My Assistant
![]() ![]() |
|
|
Jun 21 2007, 10:26 PM
Post
#1
|
|
|
UtterAccess Addict Posts: 132 From: Puerto Rico |
Is there a way to make the Switchboard with more than 8 items?
|
|
|
|
Jun 21 2007, 11:15 PM
Post
#2
|
|
|
UtterAccess Addict Posts: 170 |
There is a few steps to adding additional fields to the switchboard. The following instructions describe how to add a ninth button.
Open the Switchboard in Design View Drag your mouse around the last button and its corresponding label. Type Ctrl-C, then Ctrl-V to paste another button below the eighth button. Select the newly created button object. Go to Properties, and change the Name Property to "Option9", and the On Click event to =HandleButtonClick(9) Select the newly created label object. Go to Properties, and change the Name Property to "OptionLabel9", and the On Click event to =HandleButtonClick(9) Go to the VBA Code window for the switchboard. Under the Private Sub FillOptions() subroutine, change Const conNumButtons = 8 to Const conNumButtons = 9 Go to your "Switchboard Items" table, and create a record for each added button. If you only have one Switchboard, the Switchboard value will always be 1. Most of the fields are self explanatory, except the Command and Argument fields. You can find a list of the "Command" values and their respective functions in the VBA window under the "HandleButtonClick(intBtn As Integer)" Function in the VBA Window for the Form Object. |
|
|
|
Jun 21 2007, 11:17 PM
Post
#3
|
|
|
UtterAccess Addict Posts: 132 From: Puerto Rico |
Great.. very detailed instructions THANK YOU
|
|
|
|
Jun 21 2007, 11:30 PM
Post
#4
|
|
|
UtterAccess Addict Posts: 132 From: Puerto Rico |
oops got an error... Can not find Option 9 ???
|
|
|
|
Jun 22 2007, 08:42 AM
Post
#5
|
|
|
UtterAccess VIP Posts: 9,304 From: Wisconsin |
Personally, I prefer to create additional "sub" menus, and break up the menu items into logical groups.
For instance, my typical main menu lists options like "Data Entry Forms", and "Report Printing" and "Database Maintenance". The Database Manager makes creating these multiple menus quite easy. Dennis |
|
|
|
Jun 22 2007, 09:52 AM
Post
#6
|
|
|
UtterAccess Addict Posts: 132 From: Puerto Rico |
Yes I have done that, but one of that multiple menus requieres more items
|
|
|
|
Jun 22 2007, 10:43 AM
Post
#7
|
|
|
UtterAccess Addict Posts: 170 |
In naming the command button, did you call it Option9, or Option 9 (with a space)? The Name property must be exactly "Option9" without the space.
Also, are the additional buttons being added to the main switchboard? -- or a secondary switchboard? If a secondary switchboard, the Switchboard index number in the "Switchboard Items" table should correspond to the switchboard that you are modifying. Also, my instructions presume that you set up the switchboard using Access's switchboard wizard |
|
|
|
Jul 18 2007, 12:16 AM
Post
#8
|
|
|
UtterAccess Addict Posts: 164 From: USA |
Another option is a switchboard/main menu that has main menu items and submenu items. It's a bit more intuitive for most users.
UI Builder for Access is free for personal use: http://www.opengatesw.com/products.aspx Cheers, Brandon Smith-Daigle http://accesspro.blogspot.com |
|
|
|
Jul 19 2007, 07:57 AM
Post
#9
|
|
|
UtterAccess Enthusiast Posts: 97 From: Arecibo, PR |
I have used the solution you mentioned before and it works fine. I would be nice to have the Swithcboard Manager be able to use more than 8 items per menu. The problem with the solution you mention is that Switchboard manager only allow 8, thus if you want to add more than 8, you need to enter items directly to the Switchboard table. Any ideas? Thanks for your attention, may the Lord's blessings be with you.
|
|
|
|
![]() ![]() |
|
Go to Top · Lo-Fi Version | Time is now: 25th May 2013 - 10:56 AM |