Disable Shift Key in any database.

robthedog

Registered User.
Local time
Today, 08:01
Joined
Jan 3, 2004
Messages
40
With reference to spacepro's Sample Database on this thread

Once the shift key is disabled, is there any way to get round it?
 
Last edited by a moderator:
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
 
Last edited:
robthedog said:
Once the shift key is disabled, is there any way to get round it?
You can use F11 to show the database window.

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

Hope this Helps

Andy
 

Users who are viewing this thread

Back
Top Bottom