Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (28 - 30 of 3866)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Ticket Resolution Summary Owner Reporter
#3774 Fixed Comparisons with Null wrong for <= and >= Jpm AlanParry
Description

If one runs this

if Null =  3 Then ConsoleWrite("="  & @CRLF)
if Null <  3 Then ConsoleWrite("<"  & @CRLF)
if Null >  3 Then ConsoleWrite(">"  & @CRLF)
if Null <= 3 Then ConsoleWrite("<=" & @CRLF)
if Null >= 3 Then ConsoleWrite(">=" & @CRLF)
if Null <> 3 Then ConsoleWrite("<>" & @CRLF)
if Null == 3 Then ConsoleWrite("==" & @CRLF)

then <= and >= are True, which can't be what's expected. Why would <= be true when < and = are both false?

Has a <= b been implemented as Not(a > b) perhaps? That may be the problem.

(Also the result for <> is questionable as some other languages would give that as false, but I am happy with autoit's choice in that case, and changing <> is probably a script breaker)

Tested on 3.3.14.5 and 3.3.15.3

Alan

#2041 Duplicate _FTP_ListToArrayEx Datetime Format Albeck
Description

Hi,

I want to sort an Array given from the _ftp_listtoarrayex command so that i have the newest file in the first array collum. BUT:

the datetime format given back from the command above ist YEAR/DAY/MONTH HOUR:MINUTE:SEC

So that for example 2011/25/05 is "newer" than 2011/14/08

I think it would be better to give the datime back this way: YEAR/MONTH/DAY/HOUR/MINUTE/SEC

#2095 Fixed _FTP_ListToArrayEx Helpfile Typo guinness Albeck
Description

Just a little Typo... as seen n the picture :)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Note: See TracQuery for help on using queries.