I idxyz New member Local time Yesterday, 20:45 Joined May 18, 2020 Messages 29 Jan 13, 2022 #1 Hi, to solve the reource exceeded error in my 2016 access database, could I include this line in the main Form's Load handler: DBEngine.SetOption dbMaxLocksPerFile, 50000
Hi, to solve the reource exceeded error in my 2016 access database, could I include this line in the main Form's Load handler: DBEngine.SetOption dbMaxLocksPerFile, 50000
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 12:45 Joined May 7, 2009 Messages 19,797 Jan 13, 2022 #2 you can. you can even have it once in a function: public function fnMaxLock() DBEngine.SetOption dbMaxLocksPerFile, 500000 end function then RunCode it on AutoExec macro.
you can. you can even have it once in a function: public function fnMaxLock() DBEngine.SetOption dbMaxLocksPerFile, 500000 end function then RunCode it on AutoExec macro.