|
-
Feb 25th, 2000, 03:01 AM
#1
Thread Starter
Lively Member
Please help me !!!
How can I Open a table and not the rest of tables from VB exclusevely.
-
Feb 25th, 2000, 04:20 AM
#2
Use the Options Flags, ie.
Set oRS = oDB.OpenRecordset("Table1", dbOpenTable, dbDenyRead Or dbDenyWrite) 'Open Table1 Exclusively, Don't Allow anyone else to Read/Write with the Table
The Lock is Released when the Recordset is Closed.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|