Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (463 - 465 of 3933)

Ticket Resolution Summary Owner Reporter
#808 No Bug _ArrayConcatenate() anonymous
Description

your _ArrayConcatenate($array1,$array2) command works well butt if i try _ArrayConcatenate($array1,Memgetstats()) it gives me an error

#810 Fixed Local or Global declarations can ignore OnAutoItExit function david@…
Description

If I declare AND define a variable via a function and the function exits instead of returning then it ignores the OnAutoItExit() function.

For example, in the following script the MsgBox will NOT be displayed.

Local $Value = Repro()

Func Repro()
	Exit 0
EndFunc

Func OnAutoItExit()
	MsgBox(0,"Success","The OnAutoItExit function triggered!")
EndFunc

However, this example will display the dialog.

Local $Value
$Value = Repro()

Func Repro()
	Exit 0
EndFunc

Func OnAutoItExit()
	MsgBox(0,"Success","The OnAutoItExit function triggered!")
EndFunc

#811 Rejected Add macros(@ScriptFile,@ScriptFunction) to get file,function executing in a script winux38@…
Description

Hello, It could be good to add the @ScriptFile and @scriptFunction to get current filename and function name currently executing. Today @scriptFilename returns the name of the launched script and loose the names of included files In any way congratulation to all the developpers team for this excellent software.

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