I have this code:
Compiled without error but message box display the same number.
Ps: All I want is getting just 5 first numbers of milliseconds value.
B4X:
Dim now As Long
Dim str As String
now = DateTime.Now
str = now
str.SubString2(0,5)
Msgbox(str, now)
Compiled without error but message box display the same number.
Ps: All I want is getting just 5 first numbers of milliseconds value.