Custom Query (3927 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (106 - 108 of 3927)

Ticket Resolution Summary Owner Reporter
#3926 Fixed _GUICtrlTreeView_SetChildren functionality has changed Jpm office@…
Description

https://www.autoitscript.com/forum/topic/209115-_guictrltreeview_setchildren-behaves-differently-in-version-33161/?tab=comments#comment-1508951

#3925 Fixed With..EndWith should error out when associated with a DllStruct Jpm jchd18
Description

With $X is specified to work only if $X is an object. Instead it doesn't errour out when $X is a DllStruct.

Uncomment any other datatype below to produce a runtime error.

Local $m[]
Local $b[3]
Local $a = [ _
	DllStructCreate('wchar string[1024]'), _
 _	; 	$m, _
 _	;	$b, _
 _	;	123, _
 _	;	"abc", _
 _	;	Binary(123), _
 _	;	Ptr(123456), _
 _	;	True, _
 _	;	Null _
	ObjCreate("shell.application") _
]
For $v In $a
	ConsoleWrite(VarGetType($v) & @TAB)
	With $v
		ConsoleWrite("passed" & @LF)
	EndWith
Next

Maybe these checks should also be integrated in Au3Check if at all reasonably possible.

Origin thread: https://www.autoitscript.com/forum/topic/209063-beware-of-abusing-undocumented-withendwith-syntax-on-dllstructs/

#3923 Fixed Typo in help file Jpm pferrucci@…
Description

In page "Send Key list" look for string "If you with", => should be "wish".

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