I am trying to use DateCreated property of RecordSet but getting error.
Set db = CurrentDb
Set rst = db.OpenRecordse t("SELECT name FROM Table1")
If i try:
While rst.EOF = False
MsgBox rst.DateCreated () <- i get error here
rst.MoveNext
'Wend
Error: Operation is not supported for this type of object
How can i fix the error and how can i see the record created date
Thanks
Qi
Set db = CurrentDb
Set rst = db.OpenRecordse t("SELECT name FROM Table1")
If i try:
While rst.EOF = False
MsgBox rst.DateCreated () <- i get error here
rst.MoveNext
'Wend
Error: Operation is not supported for this type of object
How can i fix the error and how can i see the record created date
Thanks
Qi
Comment