Nov 30, 2007 #1 Malc8179 MIS Joined Oct 8, 2007 Messages 28 Location GB Hi Guys Any idea on how i can set the option "Edited Record" on the record locking section on the advanced tab of the Options Menu using VBA Malc
Hi Guys Any idea on how i can set the option "Edited Record" on the record locking section on the advanced tab of the Options Menu using VBA Malc
Nov 30, 2007 #2 Remou Technical User Joined Sep 30, 2002 Messages 13,030 Location BE Yes. Code: Const conNoLocks = 0 Const conNoRecords = 1 Const conEditedRecords = 2 Debug.Print GetOption("Default Record Locking") SetOption "Default Record Locking", conEditedRecords Upvote 0 Downvote
Yes. Code: Const conNoLocks = 0 Const conNoRecords = 1 Const conEditedRecords = 2 Debug.Print GetOption("Default Record Locking") SetOption "Default Record Locking", conEditedRecords
Nov 30, 2007 Thread starter #3 Malc8179 MIS Joined Oct 8, 2007 Messages 28 Location GB Thanks worked great Upvote 0 Downvote