Create a User TextBox?

  • Thread starter Thread starter Dave Elliott
  • Start date Start date
D

Dave Elliott

How can i create a user textbox only for the user of the database?
I have an administrator version of the db and also a user version
The admin and the user needs to input there name or have it auto input into
a textbox before every record is saved.

Thanks,

Dave
 
You say you have two versions of the database. What does that mena? You
should have one version and set the security to various items based on their
security group. This assumes you are using User-Level security. If you are
not, what prevents your user from simply opening the table and making a
change? Or doing it through a query?


You would just put the following in the field when a record is written.

=CurrentUser

You should do a search and look for "timestamp" and read all the previous
posts on the topic.
 
It means I have 2 different forms using the same tables via the server.
1 for admin and 1 for user.
 
Back
Top