Results 1 to 6 of 6
  1. #1
    taimysho0 is offline Competent Performer
    Windows XP Access 2000
    Join Date
    Nov 2011
    Posts
    286

    How to LOAD access form without ribbons and toolbar?

    Hello, is there a way for my form to load on it own without an access background? (ribbons, menus, toolbar, etc). for example when the user clicks on the .accdb file, the form itself should just appear. thanks

  2. #2
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,602
    This link indicates this is a simple setting in Access 2003 http://office.microsoft.com/en-us/ac...005188503.aspx and http://www.techrepublic.com/blog/mso...cess-data/2014. I don't find this setting in Access 2007/2010.

    I have seen a sample db that shows how to do this programmatically but not sure I will ever find it again. Google: Access vba hide the application window. Here are other references
    http://www.tek-tips.com/faqs.cfm?fid=2562.
    http://www.access-programmers.co.uk/...d.php?t=115646
    I do customize the ribbon/QAT - review http://forums.aspfree.com/microsoft-...at-303789.html
    Last edited by June7; 07-03-2012 at 04:33 PM.
    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.

  3. #3
    sw1085 is offline Novice
    Windows 7 64bit Access 2010 32bit
    Join Date
    Jun 2012
    Posts
    14
    This may help:

    http://www.techrepublic.com/blog/mso...xcel-2007/1131

    Quote Originally Posted by taimysho0 View Post
    Hello, is there a way for my form to load on it own without an access background? (ribbons, menus, toolbar, etc). for example when the user clicks on the .accdb file, the form itself should just appear. thanks

  4. #4
    taimysho0 is offline Competent Performer
    Windows XP Access 2000
    Join Date
    Nov 2011
    Posts
    286
    thanks jun, i got it to work, however do you know how to add all the access menus to the form? thanks!

  5. #5
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,602
    Not sure what you mean. Want to explain more what you are looking for?
    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
    redbull's Avatar
    redbull is offline Competent Performer
    Windows XP Access 2003
    Join Date
    Mar 2012
    Location
    Missouri
    Posts
    480
    Ive been using this bit in some of my programs.. it works in both 2003 and 10...

    Code:
    Private Sub Form_Current()
    On Error Resume Next
    DoCmd.ShowToolbar "Ribbon", acToolbarNo
    This code does not have to be on Form Current, could be on load as well. The on error resume next is what makes it work in 2003.

    The only thing this does it HIDE that ridiculous sized ribbon toolbar. You still have to go to (Tools ~> Startup) to change other toolbar options, for 2003 that is.

    Hope this helps.

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

Similar Threads

  1. Replies: 3
    Last Post: 02-20-2012, 09:39 AM
  2. add toolbar command button to access form?
    By markjkubicki in forum Forms
    Replies: 1
    Last Post: 01-26-2012, 07:11 PM
  3. Toolbar available in Access Runtime
    By sabre1 in forum Access
    Replies: 0
    Last Post: 03-02-2011, 10:13 AM
  4. Replies: 1
    Last Post: 06-20-2010, 05:04 AM
  5. Access 2007 - Hide Ribbons
    By FPeteE in forum Access
    Replies: 1
    Last Post: 11-17-2009, 03:55 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