Yep, you're right.
![[thumbsup] [thumbsup] [thumbsup]](/data/assets/smilies/thumbsup.gif)
I set it that way because of what Kiloez said:
"...D/T setting in order to pass the correct format to a routine so that it will run correctly where ever..."
Without knowing how the "routine" is setup, my conclusion was kiloez has already hard coded the format.
How is the routine set up?
I don't know. Is the date/time to be stripped FIRST to save time because it's being used often thoughout the program(*)? or is it simply used once, in which case it should be passed as a whole(**)?
* Dim MyDAY as integer, MyMonth as integer
MyDAY = val(format(date$, "DD"

)
MyMonth = val(format(date$, "MM"

)
call MyRoutine (MyDAy, MyMonth)
SUB MyRoutine (usrDAY as integer, usrMONTH as integer)
** call MyRoutine (now)
SUB MyRoutine (usrDayTime as date)
Either way, I am hopefull that Kiloez will take the time to look at the help file's examples of the Format command and let us know if anything here helped, other than looking for an API.