Consulting

Results 1 to 2 of 2

Thread: Keeping casual users out of the navigation pane

  1. #1

    Keeping casual users out of the navigation pane

    How can I turn off access to the navigation pane without using runtime?
    One of my users has chanced his way into the database programming and I want to turn off that ability.

  2. #2
    VBAX Tutor
    Joined
    Mar 2014
    Posts
    210
    Location
    youd 'SAVE AS' the database into an .ACCDE
    then they cannot get into the code.
    also
    hide the db.

    I use this as the 1st statement in the autoexec macro: RunCode HideDB()
    so users cannot see the tables/queries/etc.
    The 2nd statement is OpenForm MainMenu

    Public Function HideDB()
        DoCmd.SelectObject acTable, , True
        DoCmd.RunCommand acCmdWindowHide
    End Function

Posting Permissions

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