>How do I return the data in ISO format >Ie 19960412
You can use a date object to get you part of the way there: aDate = the systemdate y = aDate.year m = aDate.month if m < 10 then m = "0" & m d = aDate.day if d < 10 then d = "0" & d put string(y)&string(m)&string(d) -- "20020518" [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
