Oct 4, 2002 #1 J jhilb Active member Joined Jan 14, 2002 Messages 27 How can I easily (without a huge case statement) get the current date in the format: Friday October 4, 2002 I found the DayWeek (returns int) and stuff like that, but nothing that gives me the result back in a string like above.
How can I easily (without a huge case statement) get the current date in the format: Friday October 4, 2002 I found the DayWeek (returns int) and stuff like that, but nothing that gives me the result back in a string like above.
Oct 4, 2002 #2 Derek Stone Exalted One Joined Nov 17, 2002 Messages 1,878 Location Rhode Island User Rank *Expert* Code: Dim dTime As System.DateTime = System.DateTime.Now MessageBox.Show(dTime.ToLongDateString(),"")
Code: Dim dTime As System.DateTime = System.DateTime.Now MessageBox.Show(dTime.ToLongDateString(),"")