Nov 30, 2007 #1 Malc8179 MIS Oct 8, 2007 28 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 Sep 30, 2002 13,030 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