Custom Query (3922 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (346 - 348 of 3922)

Ticket Resolution Summary Owner Reporter
#1252 No Bug Issue in help file example code for "_MouseTrap()" naikma@…
Description

Help file shows example code as:

#include <GuiConstantsEx.au3>
#include <Misc.au3>

Opt("MustDeclareVars", 1)

_Main()

Func _Main()
    Local $GUI, $coords[4]

    $GUI = GUICreate("Mouse Trap Example", 392, 323)

    GUISetState()

    While 1
        $coords = WinGetPos($GUI)
        _MouseTrap($coords[0], $coords[1], $coords[0] + $coords[2], $coords[1] + $coords[3])
        Switch GUIGetMsg()
            Case $GUI_EVENT_CLOSE
                ExitLoop
            Case Else
                ;;;
        EndSwitch
    WEnd
    _MouseTrap()
    Exit
EndFunc   ;==>_Main


Here

$coords = WinGetPos($GUI) 

should be changed to:

$coords = WinGetPos("Mouse Trap Example")
#1253 No Bug command run("c:\windows\system\soundrecorder.exe) can't launch soundrecorder under WIN7 64bit anonymous
Description

as title.Is this normal?autoit version 3.3.1.4

#1254 No Bug _WeekNumberISO and GUICtrlCreateMonthCal return different weeknumbers for same day Jimblack@…
Description

I suspect _WeekNumberISO function is 'off by 1' since it returns a week number 1 greater than GUICtrlCreateMonthCal. This would result in 53 weeks in this year instead of 52. this is in 3.3.0.0 and 3.3.1.4.

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