im using that at the minute - or trying to - with the below:
currentDate = Date
DDay = Day(Now())
Dmonth = DateAdd("m", MonthNow, currentDate)
DYear = DateAdd("yyyy", YearNow, currentDate)
dtoday = DateSerial((DYear), (Dmonth), (DDay))
with MonthNow and YearNow both getting their values form combo boxse. It was working fine with just the year one but now im using date add for the month i keep getting an over flow error - both MonthNow and YearNow are set as Integers. Cant get it???
rgds