PDA

Click to See Complete Forum and Search --> : Date and time


Dragev
Mar 10th, 2001, 11:34 AM
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.

Dim
Mar 11th, 2001, 01:21 AM
Basically what you would have to do is, use the time code:

text1.text=date

and then simply parse out the month, which follows the first \

Gl,
D!m.

Active
Mar 11th, 2001, 02:53 AM
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