How do I subtract a month from a date object in VB.NET?
I have tried:
Today.AddMonths(-1)
However, given that Today is 01-Jan-2010, the
I have used the following and it works.
Dim dtToday As DateTime = Date.Today dtToday = dtToday.AddMonths(-2)