Re: Formatting a Date in a Cell in Excel

2005-12-19 Thread Dennis Kelly
o effect the value entered... #$Sheet1->Range("D2")->Format("MMM yyyy"); ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs -- R. Dennis Kelly ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Re: Formatting a Date in a Cell in Excel

2005-12-19 Thread Dennis Kelly
1->Range("D2")->{'Value'} = $monthYear; # this does not work #$Sheet1->Range("D2")->{'Value'} = $formatedDate; #this doesn't seem to effect the value entered... #$Sheet1->Range("D2")->Format("MMM ");

Re: Find the date of the newest file????

2005-06-20 Thread Dennis Kelly
On robust file systems - where there are explicit creation and modify dates (e.g. not FATnn), the creation of a new file in a directory (or delete or rename, etc.) represents a modify to the directory itself. Therefore, "the newest file date in" such a "directory" should be the modify date of t

Re: Prevent Loading from Cache in Internet Explorer

2005-06-19 Thread Dennis Kelly
Perhaps a little follow up wisdom. Caching can happen anywhere between the origin server and the browser, so the browser specific solution might not meet all conditions. RFC 2616 - Hypertext Transfer Protocol -- HTTP/1.1 http://www.faqs.org/rfcs/rfc2616.html is very explicit about caching. Sear