hi
i have a startdate and a enddate
for example
startdate = 1/8/2013
enddate = 31/8/2013
now i would like to know if a third date is between of the two dates
how is it possible i have try it like this but its not working
i have a startdate and a enddate
for example
startdate = 1/8/2013
enddate = 31/8/2013
now i would like to know if a third date is between of the two dates
how is it possible i have try it like this but its not working
B4X:
If nowdate1 >= startdate AND nowdate1 <= enddate Then
'.....
End if