Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (130 - 132 of 3875)

Ticket Resolution Summary Owner Reporter
#1088 Rejected GuiCtrlSetOnEvent - Easier Event handling Bitboy
Description

Maybe you can upgrade the function to something like this: GUICtrlSetOnEvent ( controlID, "function" [, Event]) with Events like "DoubleClick", "LeftClick", "KeyUp" and so on. Default Value for Event should be "LeftClick" so it is compatible with older Versions.

Another idea is to set a macro like @EVENT in the so called function.

I hope you can understand my english.

Greetings from Germany Bitboy

#3536 Fixed Almost all version queries with _WinAPI_GetVersion in \Examples\Helpfile\*.au3 is wrong... Jpm Bitnugger
Description

_WinAPI_GetVersion() ................... --> 10.0 If _WinAPI_GetVersion() < '6.0' Then ... --> True If _WinAPI_GetVersion() < 6.0 Then ... --> False

Would be nice if someone corrected that.

#3643 No Bug For...To...Step...Next - variable is NOT (see Remarks in AutoIt Help) in Local scope! Bitnugger
Description
#include <AutoItConstants.au3>

Local $sScope, $sRemarks = ' --> Remarks: The variable will be created automatically with Local scope, even when MustDeclareVars is on.'
ConsoleWrite('> For $i = 0 To 1 Step 1' & @CRLF)
For $i = 0 To 1 Step 1
	ConsoleWrite('@ $i = ' & $i & @CRLF)
Next
Switch IsDeclared('i')
	Case $DECLARED_GLOBAL  ;  1
		$sScope = '! $i = $DECLARED_GLOBAL  ( 1) '
	Case $DECLARED_LOCAL   ; -1
		$sScope = '+ $i = $DECLARED_LOCAL   (-1) '
	Case $DECLARED_UNKNOWN ;  0
		$sScope = '- $i = $DECLARED_UNKNOWN ( 0) '
EndSwitch
ConsoleWrite($sScope & $sRemarks & @CRLF)

Note: See TracQuery for help on using queries.