Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (85 - 87 of 3866)

Ticket Resolution Summary Owner Reporter
#2634 Fixed Treat keyword Default like an unset optional parameter water
Description

When keyword Default is passed to a function for an optional parameter it should be replaced by the default value for this parameter. This would save a lot of statements in many UDFs to set the value of a parameter to the default value as defined in the Func statement for optional parameters.

Example: The MsgBox should always display 1 for P1 even when passed as keyword Default.

_Test()
_Test(Default)
Func _Test($P1 = 1, $P2 = 2)
	MsgBox(0, "Parameters", "P1: " & $P1 & @CRLF & "P2: " & $P2)
EndFunc

Has been discussed here: http://www.autoitscript.com/forum/topic/139892-enhance-autoit-udfs/page-5#entry995563

#2725 Fixed Problem printing help file with multiple examples Jpm water
Description

When printing the help file for _Excel_RangeCopyPaste only the first of 4 examples is printed. I get the help text and the first example printed. For examples 2 to 4 I just get the heading "Example x Copy to clipboard" and a lot of empty lines but no example code.

Other users have notices this as well. Details can be found in this thread: http://www.autoitscript.com/forum/topic/161436-problem-printing-help-file-with-multiple-examples

#2795 Fixed Syntax Highlighting in the forum still uses "old" Excel UDF syntax water
Description

Since 3.3.12.0 there is a new Excel UDF with new function names. The syntax highlighting in the forum still uses the old function names. Example: _ExcelBookClose() ; Excel UDF up to 3.3.8.1 - Is highlighted but shouldn't be _Excel_BookClose() ; Excel UDF after 3.3.8.1 - Is not highlighted but should be

Note: See TracQuery for help on using queries.