
03/03/2006, 12:32
|
| | Fecha de Ingreso: febrero-2006
Mensajes: 18
Antigüedad: 19 años, 2 meses Puntos: 0 | |
Pues no lo pillo. Entiendo +o- como la función
<%' mostrar el ultimo dia de un mes
Function LastDayOfMonth(iMonth, iYear)
NextMonth = DateAdd("m", 1, DateSerial(iYear, iMonth, "01"))
LastDayOfMonth = Day(DateAdd("d", -1, NextMonth))
End Function
%>
fuerza a mostrar el último día del mes, pero no cómo puedo adaptarlo a mi código |