To pickup and use the windows logon id:
Create a module called: vbAPI
Function GetUserID()
' RMO, 2/3/98
' API to get the Username from the Windows registry
Dim strName As String
Dim lngSize As Long
Dim lngRetVal As Long
lngSize = 199
strName = String(200, 0)
lngRetVal = GetUserName(strName, lngSize)
GetUserID = UCase(Left(strName, lngSize - 1))
End Function
On your form
add an expression for save or change or whatever and call the function
Me.ChangedBy = CurrentUser
Thanks,
John McKenney
Work Hard... Play Harder