As long as your forms/reports were all modals And you disabled the control box for each form/report there would be no way to access the database window. (If on start you opened a form)
________ EXTREME VAPORIZER REVIEW
I would suggest you start a thread in the General forum.
Basically in my db's I disable the shift key, and the some of the f keys and use the code on the form_keydown event of my forms:
Code:
Select Case KeyCode
Case vbKeyF11
KeyCode = 0
MsgBox "You Are Not Allowed To View The Database Window." & vbCr & vbCr & "See your Administrator.", vbInformation, "Unauthorised Access"
End Select