Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (238 - 240 of 3893)

Ticket Resolution Summary Owner Reporter
#882 Fixed Helpfile : _GUICtrlEdit_InsertText Jpm Xenobiologist
Description

Hello,

Tidy --> C:\Programme\AutoIt3\Beta\Examples\Helpfile\_GUICtrlEdit_InsertText.au3(13,18) : WARNING: $StatusBar: declared, but not used in func.

Local $StatusBar,

C:\Programme\AutoIt3\Beta\Examples\Helpfile\_GUICtrlEdit_InsertText.au3 - 0 error(s), 1 warning(s)

There is no need for $StatusBar in the example.

Mega

#885 Fixed Investigate why Default compares true to False Valik Valik
Description

The following code compares true and displays "False" when tested. That doesn't seem correct. Default should only compare true to an empty string (""), the numeric value -1 and Default itself.

Local $a[3] = [ Default, True, False ]
For $i = 0 To UBound($a) - 1
	If $a[$i] = Default Then ConsoleWrite($a[$i] & @CRLF)
Next
#886 Fixed Make it explicit that operator == is a forced string comparison. Valik Valik
Description

It's ambiguous how operator == works. It needs to mention it is a forced string comparison. It currently implies that it behaves just like operator = except when comparing strings it's case sensitive. That is not true, it always compares as strings.

Note: See TracQuery for help on using queries.