sassy
2007-06-05 07:04:38 UTC
When my program loads, it should only display the dates a week from now. My code for that is this:
TextBox1.Text = DateTime.Now.ToShortDateString
TextBox2.Text = DateTime.Now.AddDays(1).ToShortDateString()
TextBox3.Text = DateTime.Now.AddDays(2).ToShortDateString()
But this only displays the dates in a textbox. I need to display them in a drop-down list or a radio button list.
But I have no idea how to change this code! Please help if you know how!! I have to get this out asap!! Thanks a million...