Hi,
I am creating an EPOS system in access/vba, with an SQL 2005 connection.
Learning as I go I have managed to create a login keypad which checks your code input against the database to see if the login is valid.
The way I see this keypad being used, is everytime the application is flagged as locked, the keypad appears and locks out other open forms until the correct code is entered.
Am I thinking about this the right way is this the way that access would work, IF i knew code to do it
Thanks, Dan

Form Locking
Michael Herman - Parallelspace
Moving to the VBA forum:
When you want to lock your application show the keyboard form modally and don't dismiss the keyboard form until the correct code is input. When you show a form modally it will maintain the focus and no other form or control in the application can be selected until the form is closed
ClemensT
Perfect :) thanks..