Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (448 - 450 of 3933)

Ticket Resolution Summary Owner Reporter
#3543 Rejected New example script for "Ternary" operator's help page TheDcoder <TheDcoder@…>
Description

Hello, I would like to propose a new example which can be added to the Ternary operator's help page.

#include <MsgBoxConstants.au3>

Example()

Func Example()
	$vBoolen = True
	$vExpression = ($vBoolen = True) ; This will evaluate to True since $vBoolen is equal to True
	$vResult = ($vExpression) ? ("$vExpression is True") : ("$vExpression is False") ; Everything inside brackets or parenthesis is an expression
	MsgBox($MB_SYSTEMMODAL, "Result", $vResult)
EndFunc
#3542 No Bug IniReadSectionNames string truncated rootx
Description
[I:\aaa\cc\aa vv vv vv (dd).txt]
name=aa vv vv vv (dd).txt
[I:\ffff\ffff\ffff ffff ffff ffff  [ffff]\ffff\ffff.txt]
name=ffff.txt

$ini = IniReadSectionNames(@ScriptDir&"\my.ini")
_ArrayDisplay($ini)
for $x = 1 to UBound($ini)-1
ConsoleWrite($ini[$x]&@CRLF)
Next
#3541 Fixed Typo in _WinAPI_DragQueryFileEx sample code mLipok anonymous
Description

Tiny typo in the sample codes used in the help for these funcs _WinAPI_DragQueryFileEx _WinAPI_DragAcceptFiles _WinAPI_DragFinish

_WinAPI_DragQueryFileEx returns an array so the $sFileList variable should be written $aFileList

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