Increasing Switchboard Items

Ask a Question related to Microsoft Access, Design and Development.

  1. #1

    Default Re: Increasing Switchboard Items

    It can be done, but not using the Switchboard Wizard. You need to do the
    following steps.

    1. Open the code window for the Switchboard form and change the line

    "Const conNumButtons = 8" to
    "Const conNumButtons = <The Number You Need>"

    2. Add extra command buttons to the form and name both the button and it's
    label after the pattern used for the other buttons and labels:

    Buttons --> Option1, Option2, Option3, etc.
    Labels --> OptionLabel1, OptionLabel2, OptionLabel3, etc.

    3. Open the Switchboard Items Table and add the necessary commands to that
    table. You should be able to figure out from looking at what is already
    there what you will need to add to the table.

    4. Set the Event Property for each button to read =HandleButtonClick(#)
    Where # is replaced by the number of the button.


    --
    Lynn Trapp
    MS Access MVP
    [url]www.ltcomputerdesigns.com[/url]
    Access Security: [url]www.ltcomputerdesigns.com/Security.htm[/url]



    "Son" <D.fiordelisi@att.net> wrote in message
    news:516b01c34185$4da635a0$a401280a@phx.gbl...
    > Does anyone know how to increase the number of items
    > allowed in a switchboard to more than 8?
    >

    Lynn Trapp Guest

  2. Similar Questions and Discussions

    1. Creating master page where global items arearranged ABOVE local items
      When you create a mater page, obviously all the items are arranged below anything on the individual pages. Is there a way of creating a master...
    2. possible for publishers to edit Library Items /recurrent items like navigation?
      I'd love to see this possibility too, but I think it's not possible.
    3. possible for publishers to edit Library Items / recurrent items like navigation?
      No, you have to use an include of some sort. If you don't want to use SSI you can do it with Javascript. Search Google with the keyword "Javascript...
    4. Increasing ppi with out increasing the size of.....
      the image. how do i increase the ppi with out affecting the size of the image. for ex. if i have an image set at 5 in x 7 in and the ppi is at 175,...
    5. Switchboard Issue--Only showing 2 items in main
      I have an Access 2000 database converted from Access 97. It was working fine for a year and a half, but we needed to add a menu item to the top...
  3. #2

    Default Increasing Switchboard Items

    Open the "Switchboard Items" table.
    Add the record
    where "ItemNumber"=9 and "ItemText" what you want the
    label to say, and "Argument" is the name of the form
    you wish to have it open. Save and close.
    Open the "Switchboard" form in design view.
    Right-click on one of the buttons and copy then paste it
    onto the form. then right-click on this new button and
    select "Properties". On the "All" tab, change the name to
    "Option9" (exactly like that! - It will be looking for
    that naming convention)
    then do the same for the label on the right
    but change its name to "OptionLabel9"
    (again exactly like that).
    Do the same for as many as you want,
    but remember to rename each button and label using
    the naming convention, otherwise you'll get errors.
    Save and close the form.
    When you open it, it should work.

    >-----Original Message-----
    >Does anyone know how to increase the number of items
    >allowed in a switchboard to more than 8?
    >
    >.
    >
    jmonty Guest

  4. #3

    Default Re: Increasing Switchboard Items

    Thaks Lynn.
    >-----Original Message-----
    >It can be done, but not using the Switchboard Wizard. You
    need to do the
    >following steps.
    >
    >1. Open the code window for the Switchboard form and
    change the line
    >
    >"Const conNumButtons = 8" to
    >"Const conNumButtons = <The Number You Need>"
    >
    >2. Add extra command buttons to the form and name both
    the button and it's
    >label after the pattern used for the other buttons and
    labels:
    >
    >Buttons --> Option1, Option2, Option3, etc.
    >Labels --> OptionLabel1, OptionLabel2, OptionLabel3, etc.
    >
    >3. Open the Switchboard Items Table and add the
    necessary commands to that
    >table. You should be able to figure out from looking at
    what is already
    >there what you will need to add to the table.
    >
    > 4. Set the Event Property for each button to read
    =HandleButtonClick(#)
    >Where # is replaced by the number of the button.
    >
    >
    >--
    >Lynn Trapp
    >MS Access MVP
    >[url]www.ltcomputerdesigns.com[/url]
    >Access Security: [url]www.ltcomputerdesigns.com/Security.htm[/url]
    >
    >
    >
    >"Son" <D.fiordelisi@att.net> wrote in message
    >news:516b01c34185$4da635a0$a401280a@phx.gbl...
    >> Does anyone know how to increase the number of items
    >> allowed in a switchboard to more than 8?
    >>
    >
    >
    >.
    >
    don Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139