Results 1 to 6 of 6
  1. #1
    Interista is offline Novice
    Windows XP Access 2003
    Join Date
    Oct 2011
    Posts
    4

    Problem with Menus

    Hi,

    I'm trying to design a simple database for assignment but I'm having problems creating a menu.

    I have a problem with my menus. When I open properties, it won't give me the on click option in the properties window.



    I've attached a screenshot to try to help you understand what I mean.

  2. #2
    Toyman is offline Competent Performer
    Windows 7 32bit Access 2010 32bit
    Join Date
    Oct 2011
    Posts
    233
    Quote Originally Posted by Interista View Post
    Hi,

    I'm trying to design a simple database for assignment but I'm having problems creating a menu.

    I have a problem with my menus. When I open properties, it won't give me the on click option in the properties window.

    I've attached a screenshot to try to help you understand what I mean.
    This is because you are using an option group. The op group consist of a series of option boxes. Each represents an integer from one (1) to the number of option boxes you have in the option group. The After update event is in the frame that surrounds the option boxes

  3. #3
    Interista is offline Novice
    Windows XP Access 2003
    Join Date
    Oct 2011
    Posts
    4
    Quote Originally Posted by Toyman View Post
    This is because you are using an option group. The op group consist of a series of option boxes. Each represents an integer from one (1) to the number of option boxes you have in the option group. The After update event is in the frame that surrounds the option boxes
    Sorry, I don't understand. What should I be doing instead? I shouldn't be using option groups at all?

  4. #4
    Toyman is offline Competent Performer
    Windows 7 32bit Access 2010 32bit
    Join Date
    Oct 2011
    Posts
    233
    Quote Originally Posted by Interista View Post
    Sorry, I don't understand. What should I be doing instead? I shouldn't be using option groups at all?
    What are you trying to do?

  5. #5
    Interista is offline Novice
    Windows XP Access 2003
    Join Date
    Oct 2011
    Posts
    4
    Quote Originally Posted by Toyman View Post
    What are you trying to do?
    I have a main menu macro which opens four other submenu macros which in turn open some other macros/forms/tables etc.

    I want to create a form which will allow a user to click on the various options within a main macro which then opens the smaller ones etc.

    I know I'm not explaining very well but I'm only a beginner at this stuff.

    I was told that it should be easy to create forms using option groups, suboptions etc, which operate when user clicks mouse.

  6. #6
    Toyman is offline Competent Performer
    Windows 7 32bit Access 2010 32bit
    Join Date
    Oct 2011
    Posts
    233
    Quote Originally Posted by Interista View Post
    I have a main menu macro which opens four other submenu macros which in turn open some other macros/forms/tables etc.

    I want to create a form which will allow a user to click on the various options within a main macro which then opens the smaller ones etc.

    I know I'm not explaining very well but I'm only a beginner at this stuff.

    I was told that it should be easy to create forms using option groups, suboptions etc, which operate when user clicks mouse.
    You can use the option group for what you are trying to achieve. I don't use macro, so I can't really give you specific instructions on how to go about this. However, as I stated, you can have multipal option check boxes in one option group. Each check box give you a integer value from one for the first check box. You would put your macro in the after update event of the option group frame and not the check box itself. Use the if/then macro to do this. My code would look something like this.

    If Me.YourOpGroup = 1 then
    Do this (your event)
    Else
    Do this (your other event, etc)
    End if

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Restore menus?
    By rich in forum Access
    Replies: 2
    Last Post: 08-09-2011, 10:10 AM
  2. Access Menus
    By FadingAPE in forum Access
    Replies: 5
    Last Post: 11-16-2010, 09:11 AM
  3. Dropdown menus
    By Mclaren in forum Forms
    Replies: 2
    Last Post: 08-17-2010, 12:30 PM
  4. menus are lost
    By eddwads in forum Access
    Replies: 2
    Last Post: 01-08-2010, 08:34 PM
  5. Drop Down Menus
    By iambia in forum Access
    Replies: 1
    Last Post: 01-25-2008, 02:05 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums