Hi All
I have looked at the jDateUtils and cannot find any process to seperate the month, day, year ect from a DateTime stamp that is stored in my sqlite database.
The string is 2017-04-01 02:37:56.0 and I want to add 7 days onto it and display the result.
Seems like it should be easy , I have tried all the subs and nothing gives me the answer. The closeest answer is on thread
Dim daysDiff as int = + or - the number of days ( -7 or 7)
'
Dim p As Period
p.Days = daysDiff
Dim newdate As Long = DateUtils.AddPeriod(DateTime.Now, p)
'
Dim daysDiff as int = + or - the number of days ( -7 or 7)
'
Dim p As Period
p.Days = daysDiff
Dim newdate As Long = DateUtils.AddPeriod(DateTime.Now, p)
'