Although I am not experienced at Access programming even I have realised that Access likes to save the data.
But, somehow I have messed this up.
I have a menu that opens a form as follows:
Code:
DoCmd.OpenForm "FrmNewScore"
Forms!frmnewscore!ScoreName.SetFocus
I then enter the details and have button that does a save and close as follows
Code:
If Me.Dirty Then Me.Dirty = False
DoCmd.Close acForm, Me.Name
If I then look at the table it is there.
Until I do the next entry which just overwrites this one, I only ever have one entry in the table.
What have I done