how to advance a date string by 1 year

  • Thread starter Thread starter cmdolcet69
  • Start date Start date
C

cmdolcet69

How can i use this formula: Date.Now.ToShortDateString but if it
returns 06/30/2008 I would also like it to return 06/30/2009 one year
in advance how can i do that?
 
cmdolcet69 said:
How can i use this formula: Date.Now.ToShortDateString but if it
returns 06/30/2008 I would also like it to return 06/30/2009 one year
in advance how can i do that?

date.now.addyears(1).toshortdatestring

LS
 
Back
Top