È molto bello che tu stia sviluppando questa logica. In realtà ho incrociato la TUA domanda. Ora posso consigliarti del codice vb.net utilizzando il back-end MS ACCESS 2007 .well Devi solo convalidare quando un dipendente ha effettuato l'accesso, quindi inserire questo codice dopo il pulsante di accesso o qualsiasi cosa tu stia utilizzando.
Dim cmd1 as oledbcommond
cmd1 = New OleDbCommand("SELECT * FROM LOGTIME WHERE timein<>null and timeout<>null and dt='" & Label8.Text & "' and eid='" & txtemid.Text & "' ", cn)
dr = cmd1.ExecuteReader()
If dr.Read Then
MessageBox.Show("Already this Employee ID contains today's attendance,now you can't Log again", "Information On Your ID", MessageBoxButtons.OK, MessageBoxIcon.Information)
cmd1.Dispose()
cn.Close()
Exit Sub
End If