Search results

  1. R

    How to copy unbound txt box on form to a currrent record in table

    I will try to modify and test it! Thanks a million for all of your input.
  2. R

    How to copy unbound txt box on form to a currrent record in table

    I am kinda where you are thinking with this: Private Sub Txtuser_Click() Me.Txtuser = Environ("Username") If (DLookup("TblALLUsers", " (userlogin) = '" & Me.Txtuser & "'")) Then MsgBox "User needs added to data. Please contact the local CSM", vbOKOnly, "Login Info" The logged in...
  3. R

    How to copy unbound txt box on form to a currrent record in table

    I created an unbound text box on a form that automatically pulls the current logged in user by using this: Private Sub Txtuser_Click() Me.Txtuser = Environ("Username") The form grabbs the logged in user with no problems, however, I ultimately want this information to also end up in my table...
Back
Top Bottom