Re: Run-Time Error 3219
From: Peter Hoyle (peter.hoyle_at_ntlworld-NOT.com)
Date: 03/16/04
- Next message: Eric D.: "Filter"
- Previous message: NickH: "Microsoft-Form-Subform"
- In reply to: PamK: "Run-Time Error 3219"
- Next in thread: PamK: "Re: Run-Time Error 3219"
- Reply: PamK: "Re: Run-Time Error 3219"
- Messages sorted by: [ date ] [ thread ]
Date: Tue, 16 Mar 2004 15:53:53 -0000
> I found a KB article 208379 on this error, but don't understand how I need
to change my code to fix it. I didn't have a problem until I split my
database. Below is the problem code. Can someone show me how to fix this?
> Set rs = db.OpenRecordset("tblPassword", dbOpenTable)
Looking at KB208379 it seems like the above line is causing the problem.
Try
Set rs = db.OpenRecordset("tblPassword")
Or
Set rs = db.OpenRecordset("tblPassword", dbOpenDynaset)
Cheers,
Peter
-- http://www.peterhoyle.co.uk/
- Next message: Eric D.: "Filter"
- Previous message: NickH: "Microsoft-Form-Subform"
- In reply to: PamK: "Run-Time Error 3219"
- Next in thread: PamK: "Re: Run-Time Error 3219"
- Reply: PamK: "Re: Run-Time Error 3219"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|