Login name displayed on form

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.
 
R

Rick B

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.
 
A

Albert D. Kallal

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()
 
Top