S
Seth Williams
I need to fill a textbox with a date that, based on the current day, is 2
months back - PLUS I need it to reflect the first day of the month
so - I've got :
Dim dNow As DateTime = DateTime.Now.ToShortDateString
Dim NewDate As DateTime
NewDate = dNow.AddMonths(-2)
How do I make it so that the day portion of NewDate is always 1?
months back - PLUS I need it to reflect the first day of the month
so - I've got :
Dim dNow As DateTime = DateTime.Now.ToShortDateString
Dim NewDate As DateTime
NewDate = dNow.AddMonths(-2)
How do I make it so that the day portion of NewDate is always 1?