Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (247 - 249 of 3893)

Ticket Resolution Summary Owner Reporter
#916 Fixed Line inversion in INet.au3 Gary jchd <usenet@…>
Description

There's a little bug in Inet.au3.

Func _INetExplorerCapable($s_IEString)

If StringLen($s_IEString) <= 0 Then

Return SetError(1) ; <-- unreachable code

Else

should be:

Func _INetExplorerCapable($s_IEString)

If StringLen($s_IEString) <= 0 Then

SetError(1) Return

Else

I've contacted the author who replied he lost interest with AutoIt and now favors C++. Well, noone's perfect ;-)

Please make the correction for next release, it's only a couple of seconds away to get it right.

Thank you.

#919 Fixed Binary() is ignored in ConsoleWrite() Valik jchd
Description

The code below shows the problem.

Global $s = "Bug"

ConsoleWrite(Binary("Bug"))		; here Binary() is completely ignored!
ConsoleWrite(@LF)

ConsoleWrite(Binary($s))		; again Binary() is completely ignored!
ConsoleWrite(@LF)

ConsoleWrite(Binary("Correct") & @LF)	; a concatenation is a workaround

ConsoleWrite(Binary("Correct") & "")	; any concatenation is a workaround
ConsoleWrite(@LF)
#923 Fixed Tidy upcases .eval COM object method Jos DaleHohm
Description

SciTe Tidy will update the .eval method in the following line:

$o_object.document.parentWindow.eval($s_eval)

and changes it to this:

$o_object.document.parentWindow.Eval($s_eval)

.eval is a JavaScript method and is case sensitive. It is so subtle a change and fails sy cryptically that it is hard find

It would be great if Tidy could be made to ignore keywords when embedded in a form like this.

Note: See TracQuery for help on using queries.