Re: [2008] Manupilating Date
Yes. Something like this:
vb.net Code:
Dim _Date As DateTime = DateTime.Parse("2008-04-09")
Dim _Day As String = String.Empty
'For Day
_Day = _Date.AddDays(7).DayOfWeek.ToString()
'For Month
_Day = _Date.AddMonths(1).DayOfWeek.ToString()
'For Year
_Day = _Date.AddYears(1).DayOfWeek.ToString()
Re: [2008] Manupilating Date
just select the date in a datetimepicker...
make sure the datetimepicker has the format set to long...
then use code like:
datetimepicker.value.day
that gives you the day value.....
is that what you mean?