Can anyone help me with the following question?
I have two return variables. Examples:
- 1st - type
decimal
(vdecTotalHoras
) and a - 2nd - also of type
decimal
(vdecMediaAnalise
), both return date and time values indecimal
. How do I convert toDateTime
?
The code below shows how I'm getting the values:
(
decTotalHoras = ((paintHoras * 60) + paintMinutos) / 60;
decMediaAnalise = (decTotalHoras) / paintAnalises;
)
But I can not convert the returns to Hour / Minute / Second.