saving clocking in and out of a employee
-
Clocking features are provided for through the integrated use of magnetic card reader/hand held bar code scanner. once the employee scan the card the system should save the time. is there any coding to do this.. pls help
-
Clocking features are provided for through the integrated use of magnetic card reader/hand held bar code scanner. once the employee scan the card the system should save the time. is there any coding to do this.. pls help
Barcode readers and magnetic strip readers put keystrokes into the keyboard buffer, so there for you need to put a textbox control onto your form to capture the barcode into. On the textbox leave event, get the current system time and write it to your database with the Employee Id
Steve Jowett ------------------------- Sometimes a man who deserves to be looked down upon because he is a fool, is only despised only because he is an 'I.T. Consultant'
-
Barcode readers and magnetic strip readers put keystrokes into the keyboard buffer, so there for you need to put a textbox control onto your form to capture the barcode into. On the textbox leave event, get the current system time and write it to your database with the Employee Id
Steve Jowett ------------------------- Sometimes a man who deserves to be looked down upon because he is a fool, is only despised only because he is an 'I.T. Consultant'
can you give me a sample coding.. thanks