これは、このロジックを開発していることを非常に嬉しく思います。実際、私はあなたの質問に交差しました。これで、バックエンドMS ACCESS 2007を使用してvb.netコードをお勧めします。従業員がログインしたときに検証し、ログインボタンまたは使用しているものの後にこのコードを配置するだけです。
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