Storing Sign-In Information

F

Frank Wagner

When I have users sign-in to my Access 2000 application I
want to store this information to that it will be
available for all the forms of the system. I can use a
table, and erase the prior data in the table when the
next user signs, but wondered if there was an easier
way. The Combo Box wizard so I can store it for future
use, but I'm not sure where.

Any help would be appreciated.

Thanks

Frank Wagner
 
G

Guest

i assume that in all the form in the system there is a
text box for user id.
in the userid text box's control source enter:
=environ("username") for network logon
=currentuser() for access db logon.
 
Top