Hi All,
Please, i am in need of your assistance again
I have a very weird phenomena when users log in
1. When I sign in via the network or via the remote desktop, access works just fine
2. When other users open the DB via Remote desktop, the menu form which opens after login page, is not visible and the navigation pane is visible. (Menu must be visible and navigation pane and Ribbon must be hidden)
on the remote Desktop, we all use the same file which opens via a batch file
on my "OnCurrent" login form, i have the navigation pane and the ribbon and login form all hidden
not sure if I am missing something in my VBA but please could you advise if possible
Please, i am in need of your assistance again
I have a very weird phenomena when users log in
1. When I sign in via the network or via the remote desktop, access works just fine
2. When other users open the DB via Remote desktop, the menu form which opens after login page, is not visible and the navigation pane is visible. (Menu must be visible and navigation pane and Ribbon must be hidden)
on the remote Desktop, we all use the same file which opens via a batch file
on my "OnCurrent" login form, i have the navigation pane and the ribbon and login form all hidden
not sure if I am missing something in my VBA but please could you advise if possible
Private Sub Form_Current()
Call DoCmd.NavigateTo("acNavigationCategoryObjectType")
Call DoCmd.RunCommand(acCmdWindowHide)
DoCmd.ShowToolbar "Ribbon", acToolbarNo
DoCmd.SetWarnings False
End Sub
Private Sub Form_Load()
DBEngine.SetOption dbMaxLocksPerFile, 1000000
DBEngine.SetOption dbMaxBufferSize, 500000
DoCmd.Maximize
frmWidth = Me.InsideWidth
frmHeight = Me.InsideHeight
DoCmd.Restore
DoCmd.MoveSize 0, 0, frmWidth, frmHeight
Call DoCmd.NavigateTo("acNavigationCategoryObjectType")
Call DoCmd.RunCommand(acCmdWindowHide)
DoCmd.ShowToolbar "Ribbon", acToolbarYes
DoCmd.SetWarnings (False)
End Sub