vote up 0 vote down star

I have a series of dates formatted as:

26/03/1992 12/06/2010 13/01/1995

etc... it's in DD/MM/YYYY. I need to find the day like "Tuesday", "Monday" etc out of them.

I know I need to parse the date or something but I'm unsure how to go about this. thanks.

flag

5 Answers

vote up 0 vote down

Convert the date into a date datatype, then use the format function. This displays monday:

Dim d As Date
d = "11/23/2009"
MsgBox(Format(d, "dddd"))

You could also get a numeric day of the week using d.DayOfWeek.

link|flag
vote up 0 vote down

you could try dateValue.DayOfWeek.ToString()

link|flag
vote up 1 vote down

You want to look at the format strings for the ToString method. MyDate.ToString("dddd") will get you what you want.

link|flag
+1. You can also use VB6-style: Format$(mydate, "dddd") – MarkJ Nov 4 at 14:06
vote up 0 vote down

Have a look at the documentation of the DateTime members Parse, TryParse, DayOfWeek and ToString.

link|flag
vote up 3 vote down

You can cast it as a DateTime and use the DayOfWeek property which returns a DayOfWeek enumerator.

Not sure in VB.NET but in C# it's like

DateTime.Now.DayOfWeek or DateTime.Parse(theDateString).DayOfWeek
link|flag
In VB.NET it's... the same ;-) – Meta-Knight Nov 4 at 14:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.