jhilb Posted October 4, 2002 Posted October 4, 2002 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. Quote
*Gurus* Derek Stone Posted October 5, 2002 *Gurus* Posted October 5, 2002 Dim dTime As System.DateTime = System.DateTime.Now MessageBox.Show(dTime.ToLongDateString(),"") Quote Posting Guidelines
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.