Steve wrote:

> I just read the help file for Date::Manip concerning Delta
> Format.  Delta_Format seems to be what I want for what I want to do but I
> can't quite get to to work.  I have this:
> 
> my $diff_tot=&Delta_Format($diff,3,@format);
> 
> @format is set to %MNt.  But all I get printed out is "MNt".  What I want
> is Days hours minutes seconds all in terms of seconds.
> 
> What is the right way to use Delta_Format?
> 

your format %MNt is not understood by the module. the format is always a two 
bytes string. if you want days and all smaller unit(hours, minutes and 
seconds). the right format should be:

%dd

david

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to