I have a date called cDte and i want to get the month as text (Janurary,
Feburary, ...)
dim cDte as Date
lblMyMonth.text = cDte.month
gives me 1-12, but want jan, feb, ...
and ideas?
thanks
kes

Signature
I figure if you can''t ask a question honestly, even if it suggests
blasphemy and disturbs the sensibilities of the grand masters of programming
you should quite and join a cult. kes
WebBuilder451 - 15 Jul 2005 23:21 GMT
sorry....... i found the answer:
cDte.ToString("MMMM")

Signature
I figure if you can''t ask a question honestly, even if it suggests
blasphemy and disturbs the sensibilities of the grand masters of programming
you should quite and join a cult. kes
> I have a date called cDte and i want to get the month as text (Janurary,
> Feburary, ...)
[quoted text clipped - 4 lines]
> thanks
> kes