SpeedStick
Technical User
I would like to have a text box appear each time a new record is added.
I have form which is used to maintain the staff login page. We only want the password field to be visible only when a new employee is added. Below is the code I have been working on. I am really looking for the value to put in where NewRecord to make this simple function work.
If Me!UserName = NewRecord Then
Me!Password.Visible = True
Else
Me!Password.Visible = False
End If
I have form which is used to maintain the staff login page. We only want the password field to be visible only when a new employee is added. Below is the code I have been working on. I am really looking for the value to put in where NewRecord to make this simple function work.
If Me!UserName = NewRecord Then
Me!Password.Visible = True
Else
Me!Password.Visible = False
End If