Question : Date Function

Hello All. Whats the function to display the date for the next day. I have a button, which upon clicking should display the next date.

Answer : Date Function

Guys, I found the solution.
1:
2:
3:
4:
5:
6:
Dim Dt As DateTime = DateTime.Now()
        Dim dtTomorrow As DateTime
 
        dtTomorrow = Dt.AddDays(1)
 
        TextBox1.Text = dtTomorrow.ToShortDateString
Open in New Window Select All
Random Solutions  
 
programming4us programming4us