AmandaBurlingham
Registered User.
- Local time
- Today, 10:13
- Joined
- Aug 25, 2009
- Messages
- 12
I have now created a logon page where users choose their name and enter a password to get on database. the details:
SELECT tblEmployees.[lngEmpID], [tblEmployees].[strEmpName] FROM tblEmployees ORDER BY [strEmpName];
I have many forms with an 'updated by' field (i need to know the last time info has been changed) How do i set these boxes to be completed each time data changes - based on who has logged in? (I do not want to use the computer user name!) Do i need just a text box in the form or am i right actually having a field in the underlying table calld last updated by?
EG once data has changed on frmPersonal details i have a box called Last Updated: i want it to change to Burlingham, Amanda - 02/09/09 - 11:15PM
I think this will be so easy but being a complete novice.....
SELECT tblEmployees.[lngEmpID], [tblEmployees].[strEmpName] FROM tblEmployees ORDER BY [strEmpName];
I have many forms with an 'updated by' field (i need to know the last time info has been changed) How do i set these boxes to be completed each time data changes - based on who has logged in? (I do not want to use the computer user name!) Do i need just a text box in the form or am i right actually having a field in the underlying table calld last updated by?
EG once data has changed on frmPersonal details i have a box called Last Updated: i want it to change to Burlingham, Amanda - 02/09/09 - 11:15PM
I think this will be so easy but being a complete novice.....