0
Well I know that if I take for example 4.70 and turn the ".70" in minutes, I have q take the 0.70 ( number after the comma ) and multiplied by 60, that would give 42, in value of hours would be 4:42
How do I apply this in VB? how do I get the number after the comma, multiplied by 60?
That’s right, thank you very much! the code I used if anyone is interested in turning decimal to time Dim parte_decimal As Double parte_decimal = (Textbox1.Text - Int(Textbox1.Text)) Textbox2.Text = part_decimal * "60" Textbox3.Text = Int(Textbox1.Text) & ":" & Textbox2.Text & ""
– Mateus Justino