|
-
November 25th, 1999, 09:34 AM
#1
DAO Status
What is the property that I can use to return whether a DAO Recordset is opened or closed?
Thanks,
Andrew
-
November 26th, 1999, 03:23 PM
#2
Re: DAO Status
If you close recordset, set it to Nothing explicitly, using this sintax:
Set RS = Nothing.
Then if you need to know if that recordset exists, you can check it with IsObject function. Something like this:
If IsObject(RS) then MsgBox "It's alive"
HTH
Vlad
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
|