Hello
In b4a i use
later i get the time difference with
ı use time format hhmmss normally so i add the last :00 to make it okey with the format and it works perfect for b4a.
for b4i we dont have timeparse but datetimeparse and it requires a date. I am a bit confused. Can you please help me achieve what i did in b4a for b4i ?
TY
In b4a i use
B4X:
Dim a As Long = DateTime.TimeParse(DateTime.Time(DateTime.now))
Dim b As Long = DateTime.dateTimeParse(gunes&":00")
later i get the time difference with
B4X:
Dim p As Period = DateUtils.PeriodBetween(a,b)
ı use time format hhmmss normally so i add the last :00 to make it okey with the format and it works perfect for b4a.
for b4i we dont have timeparse but datetimeparse and it requires a date. I am a bit confused. Can you please help me achieve what i did in b4a for b4i ?
TY