Like Tieval says, you can use DateSerial. The tricky bit is determining the last day of the month.
Take a look at this:
DateSerial(Year(DateAdd("m",2,date())),Month(DateAdd("m",2,date())),0)
The idea here is you add two months to the current date to determine the year and month after the one...