P
paduanow
The application I am writing will be used to send data via file to a main
database. The application forces the use to input a UserID during the
initial installation. The UserID will never change once entered. The
application that I am writing will have multiple users in different location
in Calif.
The UserID is stored in table User, field UserID.
The main table where the data will be sent is called DateCol. It has a
field called IDUser. I need to set the default value to the value of UserID.
Once this is done it will never change.
Private Sub Client_ID_AfterUpdate() 'UserID field'
DataCol.IDUser.DefaultValue = User.UserID
End Sub
I get Runtime error 424 What am I doing wrong
In my UserID form Afterupdate
database. The application forces the use to input a UserID during the
initial installation. The UserID will never change once entered. The
application that I am writing will have multiple users in different location
in Calif.
The UserID is stored in table User, field UserID.
The main table where the data will be sent is called DateCol. It has a
field called IDUser. I need to set the default value to the value of UserID.
Once this is done it will never change.
Private Sub Client_ID_AfterUpdate() 'UserID field'
DataCol.IDUser.DefaultValue = User.UserID
End Sub
I get Runtime error 424 What am I doing wrong
In my UserID form Afterupdate