Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Setting Record Locking

Status
Not open for further replies.

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
 
Yes.

Code:
Const conNoLocks = 0
Const conNoRecords = 1
Const conEditedRecords = 2

Debug.Print GetOption("Default Record Locking")

SetOption "Default Record Locking", conEditedRecords
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top