function daymon ;+ ; ; DAYMON ; A function that returns a string containing the current day and ; month in the format 'xxMmm'. Useful for naming files. ; ; Call Sequence: ; Result = DAYMON() ; ; Returns: ; Current day and month in 'xxMmm' form, taken from systime(0). ; ; Katie Peek / March 2008 ; ;- day = strmid(systime(0),8,2) mon = strmid(systime(0),4,3) if strhas(day,' ') then day='0'+strmid(day,1) dm=day+mon return,dm end