Creation Time Property

I have a LS agent that is running through all of my docs and response docs. The problem that I am having is that there are some ghost documents in the code. I need to tell my code to skip document with a creation time of 12:00:00 AM. Can some one help me with what is the Notes property that contains creation time?

I thought it was something along the lines of notesDoc.CreationTime

Thanks,

Subject: You can use NotesDocument.Created which returns both the Date and time…

Then use Settstr = Format(NotesDocument.Created, “hh:nn:ss AM/PM”)

if dt.TimeOnly = “12:00:00 AM” then…

Subject: RE: You can use NotesDocument.Created which returns both the Date and time…

Perfect, thanks for the help.