Dates Question

  • Thread starter Thread starter WStoreyII
  • Start date Start date
W

WStoreyII

does vb.net have any built in functions for dates that would give me the
string version of day or a month

for instance if i wanted to convert the number ten to the
tenth or 10th or for month the number 4 would be april

Thanks again ?

WStoreyII
 
* "WStoreyII said:
does vb.net have any built in functions for dates that would give me the
string version of day or a month

for instance if i wanted to convert the number ten to the
tenth or 10th or for month the number 4 would be april

For the month name: 'MonthName'.

For all other formatting questions: See documentation to
'DateTime.ToString'.
 
Back
Top