I have an input box (TextBox1) that asks for an amount of minutes. From there I output to 3 labels
label1 = The original time from the input (TextBox1)
label2 = The original time plus 25% (TextBox1*1.25)
label3 = The original time plus 50% (TextBox1*1.5)
Example
Enter time in mins = 60
label1 = 60
label2 = 75
Label3 = 90
How can I change these labels so they show the outcome in hours and minutes. I want it to say
label1= 1 hour (or 60 mins)
label2= 1 hour 15 minutes
label3 = 1 hour 30 minutes
thanks all