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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top