How do I get the month by the number...
something like
dateName(11) returns Novemeber...
dateName(2) returns Feb....
What is that dateName function in VB???
Printable View
How do I get the month by the number...
something like
dateName(11) returns Novemeber...
dateName(2) returns Feb....
What is that dateName function in VB???
not far off, use the MonthName function :)
(VbAndersonic)
Thanks...
PS>..I wouldnt earn much at the price is right,... :)
You can make an array:
Dim dateName(1 to 12) as string
and to enter value in the array like:
dateName(1)="January"
I'm not sure u mean this but...