Oct 18, 2001 #1 JodieK Instructor Jul 27, 2001 15 GB This is the code I have so far, but I can still edit the form... Private Sub Command14_Click() DoCmd.OpenForm "mainfrmCurrentEmployees" AllowEdits = False End Sub Thank you Jodie
This is the code I have so far, but I can still edit the form... Private Sub Command14_Click() DoCmd.OpenForm "mainfrmCurrentEmployees" AllowEdits = False End Sub Thank you Jodie
Oct 18, 2001 #2 nickjar2 Programmer Jun 20, 2001 778 US goto the properties of the form and set the following to No: Allowedits Allowdeletions allowadditions or in code me.allowedits = false me.alowadditions = false etc etc Nick Upvote 0 Downvote
goto the properties of the form and set the following to No: Allowedits Allowdeletions allowadditions or in code me.allowedits = false me.alowadditions = false etc etc Nick