I've created a form for entering data. It works fine and as you enter each record the bit at the bottom says 'record 1 of xx' but when you close the form and reopen it, it says 'record 1 of 1'
I know it storing what i enter in the right table, so why isn't it reading it back???
The following might make it easier to provide answers:
The 'record source' is:
SELECT [Faults].[Stove Type], [Faults].[Rec By], [Faults].[Invoice Number], [Faults].[Serial Number], [Faults].[Date of Purchase], [Faults].[Date of Installation], [Faults].[Installed By], [Faults].[DAccountRef], [Dealers].[Name], [Dealers].[Address], [Dealers].[Contact], [Dealers].[Tel Number], [Customer].[Name], [Customer].[Address Line 1], [Customer].[Address Line 2], [Customer].[Post Code], [Customer].[Tel No], [Customer].[Fax], [Faults].[Date], [Faults].[Passedto], [Faults].[Actionreq], [Faults].[FOC], [Faults].[ActionDone], [Faults].[Completed], [Faults].[DateC], [Faults].[SO], [Faults].[test], [Faults].[test2] FROM (Dealers INNER JOIN Faults ON [Dealers].[Account Ref]=[Faults].[DAccountRef]) INNER JOIN Customer ON [Faults].[ID]=[Customer].[ID];
It has a drop down list box for selecting an account refference which then fills out the address and name text boxes.
Also there a two combo boxes that are synched with each other so that you can select a category and then a subcategory.
I know it storing what i enter in the right table, so why isn't it reading it back???
The following might make it easier to provide answers:
The 'record source' is:
SELECT [Faults].[Stove Type], [Faults].[Rec By], [Faults].[Invoice Number], [Faults].[Serial Number], [Faults].[Date of Purchase], [Faults].[Date of Installation], [Faults].[Installed By], [Faults].[DAccountRef], [Dealers].[Name], [Dealers].[Address], [Dealers].[Contact], [Dealers].[Tel Number], [Customer].[Name], [Customer].[Address Line 1], [Customer].[Address Line 2], [Customer].[Post Code], [Customer].[Tel No], [Customer].[Fax], [Faults].[Date], [Faults].[Passedto], [Faults].[Actionreq], [Faults].[FOC], [Faults].[ActionDone], [Faults].[Completed], [Faults].[DateC], [Faults].[SO], [Faults].[test], [Faults].[test2] FROM (Dealers INNER JOIN Faults ON [Dealers].[Account Ref]=[Faults].[DAccountRef]) INNER JOIN Customer ON [Faults].[ID]=[Customer].[ID];
It has a drop down list box for selecting an account refference which then fills out the address and name text boxes.
Also there a two combo boxes that are synched with each other so that you can select a category and then a subcategory.