Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (454 - 456 of 3933)

Ticket Resolution Summary Owner Reporter
#1428 Fixed AdlibUnRegister function name is case sensitive. Jon martin
Description

If the function name passed to AdlibUnregister does not match a function passed to AdlibRegister exactly then it has no effect. Example

AdlibRegister("MyAdlib")
sleep(2000)
AdlibUnRegister("Myadlib")
ConsoleWrite("after unreg" & @CRLF)
sleep(4000)
Func MyAdlib()
	ConsoleWrite("in func" & @CRLF)
EndFunc
#1436 Fixed Invalid helpfile/example '_INetGetSource.au3' Valik anonymous
Description

There's a small bug in the helpfile/example: ...\Au3 Version 3.3.2\Examples\Helpfile\_INetGetSource.au3 Instead of

#include <INet.au3>
ConsoleWrite(_INetGetSource('www.autoitscript.com'))

it must be

#include <INet.au3>
ConsoleWrite(_INetGetSource(http://www.autoitscript.com'))

to get it working.

#1438 Fixed _ArrayCombinations bug Valik jchd
Description

There is a bug that shows up when using _ArrayCombinations with most values. In fact the bug is in a helper function.

Bug repro:

Local $aArray[8] = [1, 2, 3, 4, 5, 6, 7, 8]
$aArrayCombo = _ArrayCombinations($aArray, 3)

Fix in Array.au3, internal function --Array_Combinations: Line 1485 was Return $i_Total change to: Return Round($i_Total)

Forum discussion: http://www.autoitscript.com/forum/index.php?showtopic=109022

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.