I have a Form that, on the Load event, changes a label caption from "Production" to "Blank". I then want to be sure that change is saved when the Form is closed by the user. To do that, I am using: DoCmd.Save acform, "FormName" right after I change the label caption, even using "Me.Repaint" first, but the change in the label caption is not saved - I can verify this by checking the label caption when looking at the form in Design View - it still is "Production". Any ideas on why this is not working and what other way there would be to save changes on the form when its closed? Thanks for any help you can provide.