Custom Query (3931 matches)
Results (292 - 294 of 3931)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #3708 | Fixed | Error in documentation for _WinAPI_LoadCursor | ||
| Description |
$sName should start with $OCR_* and not $IDC_* |
|||
| #3707 | Fixed | GUISetOnEvent with empty func name does not disables the event | ||
| Description |
Remarks for GUISetOnEvent / GUICtrlSetOnEvent in docs sais: If the function is an empty string "" the previous user-defined is disabled. But it's not working. The same for GUICtrlSetOnEvent. Reproducing example: #include <GUIConstantsEx.au3>
#include <MsgBoxConstants.au3>
Opt("GUIOnEventMode", 1)
GUICreate("Parent1")
GUISetOnEvent($GUI_EVENT_CLOSE, "SpecialEvents")
GUISetOnEvent($GUI_EVENT_CLOSE, "")
GUISetState(@SW_SHOW)
While 1
Sleep(10)
WEnd
Func SpecialEvents()
Select
Case @GUI_CtrlId = $GUI_EVENT_CLOSE
MsgBox($MB_SYSTEMMODAL, "Close Pressed", "ID=" & @GUI_CtrlId & " WinHandle=" & @GUI_WinHandle)
GUIDelete()
Exit
EndSelect
EndFunc
|
|||
| #3706 | No Bug | AutoIt3.exe /ErrorStdOut should output filename without quotes | ||
| Description |
AutoIt3.exe outputs error where file is quoted: "C:\AutoIt_3.3.14.5\Include\GUIConstantsEx.au3" (2) : ==> Unknown function name.: Test ^ ERROR In this case SciTE can not recognise the file when we double click on the line. Au3Check outouts without quotes: C:\AutoIt_3.3.14.5\Include\GUIConstantsEx.au3 (2,7) : error: test(): undefined function. test ~~~~~~^ |
|||
Note:
See TracQuery
for help on using queries.
