Refinement:
As an example, this property returns:
"2/13/2004 1:52:39 PM"
To make sure I get just the date, I used this code:
DateArray = Split(SubFolder.DateCreated, " ")
strCreate = DateArray(0)
This method uses the " " space to create array elements, and then I just take the first element (0) as my value. I pass this to the database.
mmcdonal
|