Logon Username for form fields

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

Is there a way to use the Logon username in a form field
in place of the field CurrentUser()? CurrentUser() doesn't
work because the existing fields are over written
depending on who is in the database at that particular
time. I want it to be static, as a history(a track
record) of who filled out the information and not change.
 
Add a field for this purpose, to the table. Add a textbox for that field, to
the form. Make the default value of that textbox, =CurrentUser(). Set the
textbox'es Locked property to True, so the user can not edit it.

TC
 
Sweet! - Thanks TC !!!
-----Original Message-----
Add a field for this purpose, to the table. Add a textbox for that field, to
the form. Make the default value of that textbox, =CurrentUser(). Set the
textbox'es Locked property to True, so the user can not edit it.

TC


change.


.
 
Back
Top