Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Bren #1
Convert minutes to Hours and Minutes
Hi There
It's getting late and my brain is feeling like a Larne sausage :-)
What I want to achieve is to convert a total number of minutes into a more
readable format of hours:minutes.
At present I have a variable containing the total number of minutes for a
group of tasks and I want to display that total as hours and minutes.
e.g varTotalTime = 184
I want to dispaly that as Toal Time Taken = 3hrs 4mins
TIA
Regards
Bren
Bren Guest
-
Calculate Hours and Minutes
Yes, DateDiff() in hours shows whole hours only. To get the hours as a decimal, calculate the difference in minutes and divide by 60:... -
Time Format in datagrid (Hours, Minutes, Seconds)
I have a column in my database that stores total seconds. I want to bind this colum to my datagrid. Is there a way to have the time show as hours,... -
More than 25 minutes to install CS ?
Is this normal? Installing the whole CS takes more than 25 minutes I think close to 40 minutes. This was being installed on a PB OSX(10.3.X) and... -
Filemaker Pro 6.0 version 1 taking from 45 minutes to 2 hours to launch?
Folks, I found this information just now while searching the Filemaker knowledge base. I believe this is what is causing my problem with... -
convert seconds to minutes & hours
Erik Waibel wrote: The modulus (%), multiplication (*), and division (/) should be all you need. Just convert everything to seconds, e.g. number... -
Manuel Socarras #2
Re: Convert minutes to Hours and Minutes
VBScript:
hours = vartotalTime \ 60
minutes = vartotalTime Mod 60
Bren wrote:> Hi There
>
> It's getting late and my brain is feeling like a Larne sausage :-)
>
> What I want to achieve is to convert a total number of minutes into a more
> readable format of hours:minutes.
>
> At present I have a variable containing the total number of minutes for a
> group of tasks and I want to display that total as hours and minutes.
>
> e.g varTotalTime = 184
>
> I want to dispaly that as Toal Time Taken = 3hrs 4mins
>
> TIA
>
> Regards
> Bren
>
>Manuel Socarras Guest
-
Alexandro Colorado #3
Re: Convert minutes to Hours and Minutes
On Tue, 19 Apr 2005 00:46:43 +0100, Bren <bren@dontbothertoreply.com>
wrote:
Sorry what server model are you using, tipically you can get this by> Hi There
>
> It's getting late and my brain is feeling like a Larne sausage :-)
>
> What I want to achieve is to convert a total number of minutes into a
> more
> readable format of hours:minutes.
>
> At present I have a variable containing the total number of minutes for a
> group of tasks and I want to display that total as hours and minutes.
>
> e.g varTotalTime = 184
>
> I want to dispaly that as Toal Time Taken = 3hrs 4mins
>
> TIA
>
> Regards
> Bren
>
>
reading the documentation on the date() function. In coldfusion you even
got the LS (locale set).
Within dreamweaver you can configure this by doing a recordset and on that
recordset panel move to the right and clicking on the date field and it
will display different encoding options, if the field is a date, then it
will put the different date formats.
--
Alexandro Colorado
------------------------------
Support Engineer
InterAKT Online
[url]http://www.interaktonline.com[/url]
Tel: 40(21) 312.5312
Alexandro Colorado Guest



Reply With Quote

