onlinemaster
onlinemaster
Friends 2
onlinemaster
Added topic FYI: generic calculation of DaysOfMonth()
CHECK ANY MONTH WITH THIS CODE: int DaysOfMonth(int cYear = 2016, int cMonth = 2, int cDay = 29) {    if (cYear < 1969 || cMonth < 1 || cMonth > 12 || cDay < 1 || cDay > 31) return(0);    datetime xDate;