Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (175 - 177 of 3866)

Ticket Resolution Summary Owner Reporter
#176 Duplicate Check for Updates on Windows XP x64 TurboX455
Description

Just built a new x64 system and installed 3.2.10.0 and 3.2.11.2 beta. Check for Updates does not display the installed versions. It seems that during installation, the AutoIT version information was only written to the Wow6432Node\Software registry key. I assumed that 'Check for Updates' reads only from the 32 bit HKLM\Software key and manually added the values to test. Worked as expected.

Not a show stopper, but thought I'd give you a heads up.

Great work on AutoIT!!! It's my most valuable scripting tool.

#177 Fixed PixelGetColor third param not accepted (AutoIt error) Jpm Saunders <admin@…>
Description

Perhaps the modification was not included when the latest beta was compiled because I get an AutoIt error whenever I try to use the new third parameter in the PixelGetColor function.

ConsoleWrite(@AutoItVersion & @CRLF)
$hWnd = WinGetHandle('')
If @error Then Exit
PixelGetColor(100, 100, $hWnd)

Console output:

3.2.11.2
C:\Documents and Settings\Rob\Local Settings\Temp\tmp.au3 (5) : ==> Incorrect number of parameters in function call.:
PixelGetColor(100, 100, $hWnd)
^ ERROR
#178 Fixed GUIRegisterMsg: change of behaviour in WM_NCHITTEST message handler Jpm rover
Description

WM_NCHITTEST message handler for moving gui form by client area with mouse not working in beta 3.2.11.1 and up was working in 3.2.10.0

Is this related to Ticket #169?

tested on 2 machines running XP SP2 EN X86 AutoIt: prod. v3.2.10.0 beta v3.2.11.1 to v3.2.11.3

this alternative works - WM_NCLBUTTONDOWN http://quadryders.com/phpcc/snippet.php?sid=46 http://www.autoitscript.com/forum/index.php?showtopic=63323

Is this usage now deprecated?

Global Const $WM_NCHITTEST = 0x0084 Global Const $HTCAPTION = 2, $HTCLIENT = 1 $hGui = GUICreate("Test", 300, 200, -1, -1) GUIRegisterMsg($WM_NCHITTEST, "WM_NCHITTEST") GUISetState()

Do

$msg = GUIGetMsg()

Until $msg = -3

Func WM_NCHITTEST($hWnd, $Msg, $wParam, $lParam)

If $hWnd = $hGUI And $Msg = $WM_NCHITTEST Then

Local $iProc = DllCall("user32.dll", "int", "DefWindowProc", _ "hwnd", $hWnd, "int", $Msg, "int", $wParam, "int", $lParam) If @error Then Return SetError(@error, 0, 0) $iProc = $iProc[0] If $iProc = $HTCLIENT Then

Return $HTCAPTION

Else

Return $iProc

EndIf

EndIf

Return 'GUI_RUNDEFMSG'

EndFunc

; or ;Func WM_NCHITTEST($hWnd, $iMsg, $iwParam, $ilParam)

;If ($hWnd = $hGUI) And ($iMsg = $WM_NCHITTEST) Then Return $HTCAPTION

;EndFunc ;==>WM_NCHITTEST

Note: See TracQuery for help on using queries.