Hi all,
I want to be able to add minutes (1 to 59) to the current device time.
Sorry but I couldn't find an example.
In vb6 it looks similar to: time_sum = now() + x/1440
Thank you in advance.
Edit example:
I want to be able to add minutes (1 to 59) to the current device time.
Sorry but I couldn't find an example.
In vb6 it looks similar to: time_sum = now() + x/1440
Thank you in advance.
Edit example:
B4X:
Private Sub Command1_Click()
mm = Format(Now() + 20 / 1440, "HH:MM")
MsgBox mm
End Sub
Last edited: