ticks

  1. Alexander Stolte

    Android Code Snippet [B4X] convert seconds to ticks

    Sub convert_seconds2Ticks(seconds As Long) As Long seconds = seconds * DateTime.TicksPerSecond 'convert seconds to ticks! Return seconds End Sub
  2. makis_best

    Other [Solved] Convert ticks to date

    Hi I read some dates from SQL Server.... and I save them to my SQLite database. The dates stored like that: /Date(1498856400000)/. Every record has a value like that. It is a correct format? I need to change it some how? After that I try to convert that value in my SQLite query but no luck...
  3. rleiman

    Android Question Converting integer values to ticks long value

    Hi Everyone, If I have 3 separate integer values representing a time such like: Dim intHours As Int = 10 Dim intMinutes As Int = 30 Dim IntSeconds As Int = 0 for the actual time of 10:30:00, can you tell me how to convert those 3 integers into a ticks long value so I can pass it to...
Top