Calvin
Registered User.
- Local time
- Yesterday, 16:36
- Joined
- Jun 4, 2003
- Messages
- 286
Ok, I've got a new one, I recently created a new MDE app and to help prevent it from becoming bloated and corrupted I made the MDE file ReadOnly (I've done this dozens of times), but all of a sudden I'm having ADO problems when the file is set to ReadOnly, but as soon as I disable the ReadOnly file property it runs fine.
Anyone have any suggestions or hear of this before?
fyi, the table is linked to a BE mdb that is not readonly, so that is not the problem as this works with DAO.
Code:
Dim rst As New ADODB.Recordset
rst.Open "tblPrmDAC_ServiceLog", CurrentProject.Connection, adOpenKeyset, adLockBatchOptimistic
rst.AddNew
fyi, the table is linked to a BE mdb that is not readonly, so that is not the problem as this works with DAO.
Last edited: