Jul 17, 2007 #1 dashen Programmer Jul 14, 2005 233 US Code: Now.ToString("MM/dd/yy") This is a simple problem I believe, but what is the format to show the date of tomorrow in a string format. Also what is the format key if I want it to look like "July 18, 2007" Thanks in advanced.
Code: Now.ToString("MM/dd/yy") This is a simple problem I believe, but what is the format to show the date of tomorrow in a string format. Also what is the format key if I want it to look like "July 18, 2007" Thanks in advanced.
Jul 17, 2007 #2 Zathras Programmer Nov 12, 2002 3,317 US Try this: Code: Now.AddDays(1.0).ToString("MMM dd, yyyy") Upvote 0 Downvote