I have a button that takes the date in a text box and adds 7 days
it works however it will format it in this 12/1/2013 where i want 12/01/2013 this is because later on I use a sort and when I do that it puts 12/17/2013 before 12/2/2013.... Which is not in order...... I tried
AirDate.Text = Format(datAir.AddDays(7).ToString, "mm/dd/yyyy") But obvoiusly it did not work.
Code:
AirDate.Text = Format(datAir.AddDays(7).ToString, "Short Date")AirDate.Text = Format(datAir.AddDays(7).ToString, "mm/dd/yyyy") But obvoiusly it did not work.