Custom Query
Results (130 - 132 of 3883)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3831 | No Bug | GUICtrlSetPos and $GUI_DOCKHCENTER | Jon | kAnon |
Description |
Using GUICtrlSetPos on elements with $GUI_DOCKHCENTER set does not work correctly. #include <GUIConstants.au3> test() Func test() GUICreate('', 400, 400, -1, -1, $WS_OVERLAPPEDWINDOW, $WS_EX_WINDOWEDGE) Local $idButton_SetPos = GUICtrlCreateButton('GUICtrlSetPos', 20, 20, 360, 40) GUICtrlSetResizing(-1, BitOR($GUI_DOCKTOP, $GUI_DOCKHCENTER, $GUI_DOCKSIZE)) GUISetState() While True Switch GUIGetMsg() Case $GUI_EVENT_CLOSE ExitLoop Case $idButton_SetPos GUICtrlSetPos($idButton_SetPos, 50, 50, 300) EndSwitch WEnd EndFunc ;==>test Windows 10 Pro 21H1 x64 AutoIt Version: 3.3.14.5 / 3.3.15.4 |
|||
#3830 | Fixed | GUICtrlSetResizing and fullscreen mode | Jon | kAnon |
Description |
$GUI_DOCKBOTTOM doesn't work correctly when switching fullscreen mode. #include <GUIConstants.au3> test() Func test() GUICreate('', 400, 400, -1, -1, -1, $WS_EX_WINDOWEDGE) Local $idButton_Fullscreen = GUICtrlCreateButton("Fullscreen", 20, 340, 360, 40) GUICtrlSetResizing(-1, BitOR($GUI_DOCKBOTTOM, $GUI_DOCKHCENTER, $GUI_DOCKSIZE)) GUISetState() While True Switch GUIGetMsg() Case $GUI_EVENT_CLOSE ExitLoop Case $idButton_Fullscreen fullscreen() EndSwitch WEnd EndFunc ;==>test Func fullscreen() Local $aStyles = GUIGetStyle() If BitAND($aStyles[0], $WS_CAPTION) Then GUISetStyle($WS_POPUP, 0) GUISetState(@SW_MAXIMIZE) Else GUISetState(@SW_RESTORE) GUISetStyle($GUI_SS_DEFAULT_GUI, $WS_EX_WINDOWEDGE) EndIf EndFunc ;==>fullscreen Windows 10 Pro 21H1 x64 AutoIt Version: 3.3.14.5 / 3.3.15.4 |
|||
#3828 | Fixed | SetError() and SetExtended() - broken link to Return in Related | Jpm | mLipok |
Description |
In SetError() and in SetExtended() documentation in "Related section", link to "Return" is broken. I was trying to figure out how to fix it but I stuck, the only thing what I see is that hh.exe showing URL to: res://ieframe.dll/dnserrordiagoff.htm#mk:@MSITStore:z:\autoitportable\autoit_3_3_15_4_beta\autoit.chm::/html/functions/keywords/Func.htm but proper URL is mk:@MSITStore:z:\autoitportable\autoit_3_3_15_4_beta\autoit.chm::/html/keywords/Func.htm BAD: .../html/functions/keywords/Func.htm GOOD: .../html/keywords/Func.htm |