How can I get which day of the week we're in, and which month it is?
Need to present the weekday/month name in a non-English language.
Thanks.
Printable View
How can I get which day of the week we're in, and which month it is?
Need to present the weekday/month name in a non-English language.
Thanks.
Basically what you would have to do is, use the time code:
and then simply parse out the month, which follows the first \Code:text1.text=date
Gl,
D!m.
For Month USe the Month Function
Like
m = Month(Now)
Returns a Number Between 1 and 12
and Similarly use Weekday function
to get a value between 1 and 7
1 is sunday and 7 is saturday
eg :
w = Weekday(#March 11, 2001#)
Will return 1