AngelTouch Posted February 16, 2012 Posted February 16, 2012 (edited) I made a small script to increase workers salary by 40% if they work for 12 H and 15% for 8H any way i have problem converting to time $Ttime = $time *60 $worktime = $Ttime*40 / 100 ; if he worked for 12h 12*60 * 40 / 100 = 288 $Total = $Ttime - $worktime ; total will be 720 - 288 = 432 till now every thing is gr8 this what i want ; my problem is that 432 is [7h and 12 mins (7:12)] i can't convert the total to time if u /60 it will give u 7.2 Edited February 16, 2012 by AngelTouch
Moderators Melba23 Posted February 16, 2012 Moderators Posted February 16, 2012 AngelTouch, You should have paid more attention during your basic maths clases: $iTotal_Mins = 432 $iHours = Int($iTotal_Mins / 60) $iMins = 432 - ($iHours * 60) MsgBox(0, "Result", $iHours & ":" & $iMins) M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
AngelTouch Posted February 16, 2012 Author Posted February 16, 2012 Thanx for the fast replay and help i know that 1 h = 60 mins i think my problem was$iHours =Int($iTotal_Mins / 60)cause 432/60 = 7.2it works perfectly now
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now