Login name displayed on form

  • Thread starter Thread starter Peter
  • Start date Start date
P

Peter

Is there a way to display the name that was used to login
to a secure database at the top of a form?

thanks in advance,

peter.
 
You can create aun unbound text box and put...

=CurentUser



Rick B





Is there a way to display the name that was used to login
to a secure database at the top of a form?

thanks in advance,

peter.
 
Just place a text box control on the forms header.

You can make it big, and use whatever font you want.

You then for the text data source, simply set it to a function that returns
the user name. That function is currentUser

So, the data source for the text box can be:

=CurrentUser()
 
Back
Top