JohnBoy2005
Programmer
How would I go about writing a routine that would list the next 18 months.
May 07
Jun 07
Jul 07
etc...
Cheers
John
May 07
Jun 07
Jul 07
etc...
Cheers
John
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim tdate, i
tdate = Now()
For i = 1 to 18
tdate = DateAdd("m",1,tdate)
Response.Write MonthName(Month(tdate)) & " " & Year(tdate) & "<br/>"
Next