View Single Post
  #4 (permalink)  
Old November 5th, 2004, 12:07 PM
mmcdonal mmcdonal is offline
Friend of Wrox
 
Join Date: Mar 2004
Posts: 3,069
Thanks: 0
Thanked 10 Times in 10 Posts
Default

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
Reply With Quote