Question : Commit Data on lost focus

I have a form with tab (pages) in MS Access.  When data is changed on one of the tabs the users goes to other tab and tries to enter additional information however since they did not close out of the form or change to a new record the data in the first tab was not yet commiited.  What i want to occur is when the user clicks on the second page the data on the first tab is commited or save to the database.  I am using MS Access 2003 with a SQL 2008

Answer : Commit Data on lost focus

try the below
1:
2:
3:
SELECT Emp_Name, Hire_Date, datepart([Year],Hire_Date) as YYYY, datepart([Month],Hire_Date) as MM
FROM Table1
where Hire_Date >= dateadd(m, datediff(m, 0, getdate())-13, 0)
Random Solutions  
 
programming4us programming4us