Talk2Tom11 Posted June 10, 2006 Posted June 10, 2006 I have code for displaying the current date.... txtbox1.text = DateTime.Now.ToShortDateString but i want to be able to display tomorrows date and the next day. doesn't anyone know what the code would be for this? Quote
dick_nl Posted June 10, 2006 Posted June 10, 2006 Consider the following (C#): DateTime.Now.AddDays(1).ToShortDateString() Quote
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.