currentuser

  • Thread starter Thread starter Frank Dulk
  • Start date Start date
F

Frank Dulk

As I do for leaves the average user (currentuser) as standard value in the
table in the field USER.
 
I don't understand what you are asking, Frank. Could you restate it to
clarify?
 
Frank Dulk said:
As I do for leaves the average user (currentuser) as standard value
in the table in the field USER.

I think you're saying that you want the field USER in your table to have
the current user, as returned by the CurrentUser function, as its
default value. You can't do this in the design of the table itself.
You can only do this for a control on a form, bound the the USER field.
Then you can set the Default Value property of that control to
CurrentUser(). But this will not keep records from being added by other
means, leaving the field empty.
 
Back
Top