This is not the proper way of using the FindFirst method. Try:
Code:
Private Sub LookUp_Click()
Dim db As DAO.Database
Dim rs As DAO.Recordset
Dim strCriteria As String
strCriteria = "vzid = " & Me.InputT.Value
Set db = CurrentDb
Set rs = db.OpenRecordset("Login", dbOpenSnapshot)
rs.FindFirst strCriteria
If rs.NoMatch = False Then
TimeIn.Visible = True
TimeOut.Visible = True
End If
rs.Close
Set rs = Nothing
End Sub
Ideally, you should test for a Null in
InputT before performing the search.