Jul 17, 2007 #1 dashen Programmer Joined Jul 14, 2005 Messages 233 Location 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 Joined Nov 12, 2002 Messages 3,317 Location US Try this: Code: Now.AddDays(1.0).ToString("MMM dd, yyyy") Upvote 0 Downvote