increase date from string

Talk2Tom11

Centurion
Joined
Feb 22, 2004
Messages
144
Location
Westchester, NY
I have a textboxdate with a string value in it... the string is going to be a date... for example '9/17/2006'. I want to make another combobox equal to that day plus the next.

I know how to do it like this...

txtbox1.text = DateTime.Now.ToShortDateString
combobox1.items.add(DateTime.Now.AddDays(1).ToShortDateString)

but i want to not do it off of todays date but whatever date is in the textboxdate.
 
Back
Top