Microsoft
Software
Hardware
Network
Question : How to open a database in Exclusive Mode
The only ways I know to open databases in exclusive mode are:
- Open the MS Access application (rather than an Access file), select an Access file, hit File/ Open, click on the arrow on the Open button, and select Open Exclusive.
Add this switch to the string that opens the database: /EXCL .
Are there any other ways?
Answer : How to open a database in Exclusive Mode
Like so:
Dim db As DAO.Database
Set db = OpenDatabase("YourMdbName"
, True)
The two you mentioned plus this one are the only ones I'm aware of. Well, there is also the OpenCurrentDatabase method also with the same Options parameter (True).
mx
Random Solutions
Chunk rows of records into 64K blocks and create .xls files..
Hide Actions menu in SharePoint library
How do I add a hyperlink to a InfoPath picture?
vb.net sata hard drive serial number
Type of conditional expression cannot be determined because there is no implicit
VBA Set Cell/Range Properties
read .xlsx file from asp
How can I play a .ARV video file?
Visual Studio console application without visible console
Need to strip string / email from message body, with Outlook XP VBA?