hi
I have the code :
I want to add something to this code : I want to check if days>48 but not 168.
To describe shortly if days = 168 i dont want the above code to execute. so i tried to use
if days>48 and not days=168 then ...
but it didnt work .
How can i do that
TY
I have the code :
B4X:
If days>48 Then
lbl1.text = "ok"
end if
To describe shortly if days = 168 i dont want the above code to execute. so i tried to use
if days>48 and not days=168 then ...
but it didnt work .
How can i do that
TY