Results 1 to 8 of 8
  1. #1
    Sheba is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jul 2014
    Posts
    239

    Exclamation Switchboard


    hello, could someone please help me with this?:

    1) I don't want my switchboard to occupy the whole screen since there are only four items on it. So I made it a
    Popup form. However each time I view it, it grows larger in size Although moveable, how can I make the
    size fixed?? I tried to change the width property to 24.0cm but it promptly flips back to 30.49cm

    2) Also it remains on top of the other forms it calls
    Question: How do I make it go away once an item on it is clicked?

    I very much appreciate any help on this

  2. #2
    cbende2's Avatar
    cbende2 is offline Competent Performer
    Windows 7 32bit Access 2013
    Join Date
    Jun 2014
    Location
    Louisiana
    Posts
    370
    If you post the DB I can look at it for you.

    As for #2, check in the form properties, and make sure "modal" is set to "no"

    And you can make the menu go away by running a macro either "CloseWindow" or MinimizeWindow," just make sure in the macro wizard that these macros are before opening up the child form.

  3. #3
    Sheba is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jul 2014
    Posts
    239
    sorry but I can't find the section where I can upload the file... I saw it yesterday but I don't seem to see it now...?

  4. #4
    Sheba is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jul 2014
    Posts
    239
    I still can't see the place to upload my database. Only "quick reply" screen is available to me...

    Cbende2 - in the On-Open event of my main switchboard, there are macros there. My skills are still beginner and I don't want to mess them up. This is what is there:

    SetTempVar
    SetProperty
    Requery

    Could you advise where else I could use this minimizewindow macro?

  5. #5
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,770
    Click the Go Advanced button below the post editor to open the advanced editor. Attachment Manager is below that editor.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  6. #6
    edmscan is offline Competent Performer
    Windows 8 Access 2010 32bit
    Join Date
    Feb 2014
    Posts
    168
    Don't know if this is what you want .. but have Access start your switchboard form on database startup. Under options / current database in the file menu.
    Your forms will have to be made popups for this to work.


    Put this in the load of your switchboard form ... (this will minimize your database window)
    DoCmd.RunCommand acCmdAppMinimize


    Then .. add this to the buttons on your switchboard form. (this will open your form from your button and hide your switchboard)

    DoCmd.OpenForm "frmFormYouWantToOpenFromYourButton", acNormal
    Me.Visible = False

    And add on the close event of your forms that you open on your switchboard. (this will hide your form and make your switchboard visible again)

    Me.Visible = False
    DoCmd.SelectObject acForm, "frmNameOfSwitchboardForm"
    DoCmd.Restore
    Forms!frmSwitchboard.SetFocus

  7. #7
    Sheba is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jul 2014
    Posts
    239
    Hi edmscan, I fixed this yesterday and did it this way as well. thank you for your response

  8. #8
    edmscan is offline Competent Performer
    Windows 8 Access 2010 32bit
    Join Date
    Feb 2014
    Posts
    168
    Quote Originally Posted by Sheba View Post
    Hi edmscan, I fixed this yesterday and did it this way as well. thank you for your response
    Glad it is working for you.

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

Similar Threads

  1. Replies: 1
    Last Post: 09-27-2013, 03:53 PM
  2. switchboard
    By slimjen in forum Forms
    Replies: 3
    Last Post: 07-11-2013, 07:08 PM
  3. Replies: 7
    Last Post: 09-13-2011, 01:38 PM
  4. Switchboard help? Please
    By MrT1993 in forum Access
    Replies: 13
    Last Post: 02-13-2011, 01:15 PM
  5. Switchboard
    By mwabbe in forum Access
    Replies: 4
    Last Post: 08-26-2010, 07:17 AM

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