I have the following code that picks time in 24 hour format
I would like to add 3 minutes to lbltime.Text. How can i do that? I know i can add the minutes to timenow, but I want to add them to lbltime (later after i have already set lbltime)
B4X:
DateTime.TimeFormat="HH:mm"
timenow=DateTime.Time(DateTime.Now)
lbltime.Text=timenow
I would like to add 3 minutes to lbltime.Text. How can i do that? I know i can add the minutes to timenow, but I want to add them to lbltime (later after i have already set lbltime)