Custom Query (3917 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (361 - 363 of 3917)

Ticket Resolution Summary Owner Reporter
#362 Fixed _GUICtrlListView_InsertItem() - doc typo Gary Zedna
Description

Parameters

$sText Item text. If set to -1, the item set is set via the $LVN_GETDISPINFO notification message.

should be $sText Item text. If set to -1, the item text is set via the $LVN_GETDISPINFO notification message.

#363 No Bug UDF Func Declaration & #CS #CE Comment goldenix
Description

Try Running This, You will see, that its Not Skipping the #Cs Comments & its erroring: ERROR: _UDF_ByReference() already defined.. If you delete all Commented Stuff, it works.

;~ Sample 1
;~ ==================================================================================
;~ ----------------------------------------------
$e = _UDF_ByReference(100,200)
MsgBox(0, 'Sample 1', $e)
;~ ----------------------------------------------
MsgBox(0, 'Sample 2', _UDF_ByReference(200,200))
;~ ----------------------------------------------

Func _UDF_ByReference($parameter1,$parameter2)
    $xxx = $parameter1 + $parameter2
    Return $xxx
EndFunc
;~ ==================================================================================

#cs-----------------
;~ Sample 1
;~ ==================================================================================
;~ ----------------------------------------------
$e = _UDF_ByReference(100,200)
MsgBox(0, 'Sample 1', $e)
;~ ----------------------------------------------
MsgBox(0, 'Sample 2', _UDF_ByReference(200,200))
;~ ----------------------------------------------

Func _UDF_ByReference($parameter1,$parameter2)

    Return $parameter1 & $parameter2
EndFunc
;~ ==================================================================================
#ce-----------------
#364 No Bug Error at runtime caused by obfuscator Jos madflame991
Description

After I compile this I get "Line -1: Error: Array variable subscript badly formatted". Why? I tested it on WinXP Pro Sp 1 and it worked, but on WInXP Pro SP2 it crushed. The script has been compiled under version 3.2.12.0 and obfuscated under version 1.0.24.12

#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_UseUpx=n
#AutoIt3Wrapper_Run_Obfuscator=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
Global $var[4]
$var[1] = 'boo'
MsgBox(0, 'title', $var[1])
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.