I have a silly nuisance on an error.
I have access front end and sql back end. In a form with a Record Source: Select * from ViewX(View of 2 tables each with autoID)
The problem is..I copy a row and paste it underneath..it works but the AUTOID column doesn't update...I have to manually press F5 to reload the whole thing and THEN it updates..
ViewX(Removed some details):
SELECT TOP (100) PERCENT dbo.Trial.TrialID, dbo.Culture.CultureID, dbo.Culture.Crop
FROM dbo.Trial LEFT OUTER JOIN dbo.Culture ON dbo.Trial.CultureID = dbo.Culture.cultureID
TrialID and CultureID are identity columns in their own tables.
Any ideas?