यह बहुत अच्छा है कि आप इस तर्क को विकसित कर रहे हैं। वास्तव में मैं आपके प्रश्न को पार कर आया हूँ। अब मैं आपको बैक एंड एमएस एक्सेस 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