Oct 4, 2002 #1 J jhilb Freshman 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 D Derek Stone Exalted One Joined Nov 17, 2002 Messages 1,875 Location Rhode Island, USA Visual Basic: Dim dTime As System.DateTime = System.DateTime.Now MessageBox.Show(dTime.ToLongDateString(),"")
Visual Basic: Dim dTime As System.DateTime = System.DateTime.Now MessageBox.Show(dTime.ToLongDateString(),"")