Route User ID to table/form?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Using the fOSUserName function to get network id, how can I route this data
to a table or form? New to VB, specifics appreciated. TIA
 
You can display it in a text box on a form by setting the text box's control
source to =fOSUserName() (Note the equal sign in front!)

You cannot use a custom function as a default value for a table, so you'll
forced to go through a form (or a query) in order to get the value into a
table.
 
Back
Top