Based on a given date, how would i determine the ending date?
For example:
The current date is 15/01/2008 (day, month, year), how would i get the current date + 24 months result ? (15/01/2010)
Thanks...
Printable View
Based on a given date, how would i determine the ending date?
For example:
The current date is 15/01/2008 (day, month, year), how would i get the current date + 24 months result ? (15/01/2010)
Thanks...
Dim NewDate As Date = Date.Now.AddYears(2)
Casey.
Thanks alot Casey for your quick answer! Thanks!