Preventing users from scrolling on a form

E

Eric

I have a form with a bound text box (bound to a table)
that is used for entering a user ID. I have disabled the
record selectors, etc., but users are still able to scroll
through records using keyboard commands or a scrolling
mouse. Is there a way to prevent users from cycling
through the user IDs on the form, requiring them to key in
their ID, rather than simply selecting one? I don't want
end users to be able to see a list of IDs. Thanks.
 
P

Pavel Romashkin

Make the form unbound when it first starts (delete the record source on
the property sheet). Then, bind it back to the data once the user enters
their ID.

Pavel
 
Top