I have the following code:
And I need to retrieve the date format in English AND Spanish. Is there a 'SetEnvironment' command or something similar that I cant find that I could use, or do I need to actually go thru and make several case statements to replace the English verbage into Spanish?
Monday = Lunes
Tuesday = Martes
...
January = Enero
February = Febrero
etc. etc.
Code:
strCutOffDate = UCase(Format(strCutOffDate, "dddd mmm dd, yyyy"))
And I need to retrieve the date format in English AND Spanish. Is there a 'SetEnvironment' command or something similar that I cant find that I could use, or do I need to actually go thru and make several case statements to replace the English verbage into Spanish?
Monday = Lunes
Tuesday = Martes
...
January = Enero
February = Febrero
etc. etc.