Custom Query (3933 matches)
Results (229 - 231 of 3933)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #230 | Fixed | Wrong GuiCtrlSetResizing after ControlMove in GUIs with Menus | ||
| Description |
Probably related to the fixed #214 ticket. After moving controls with ControlMove in a GUI with menus, the height of the controls using $GUI_DOCKBOTTOM is increased at next GUI resize event. #include <GuiConstantsEx.au3>
#include <WindowsConstants.au3>
$GUI = GUICreate("GuiCtrlSetResizing and ControlMove in GUIs with menus (beta v3.2.11.10)", 600, 300, -1, -1, BitOR($WS_MINIMIZEBOX, $WS_CAPTION, $WS_POPUP, $WS_SYSMENU,$WS_SIZEBOX))
$cListView = GUICtrlCreateListView("H1|H2", 0,0,400,200)
GuiCtrlSetResizing($cListView, $GUI_DOCKLEFT+$GUI_DOCKTOP+$GUI_DOCKRIGHT+$GUI_DOCKBOTTOM)
$s_text='1. Resize GUI and notice the resizing of listview.' & @LF & @LF & _
'2. Press the ControlMove button to reposition the ListView Control (with ControlMove) and update its resizing (with GuiCtrlSetResizing).' & _
@LF & @LF & '3. Resize horizontally the GUI and notice that the listview height is increased (probably by the size of menu bar)' & _
@LF & @LF & '4. Repeat steps 2 and 3.'
$c_lbl = GUICtrlCreateLabel($s_text, 420,10,170,210)
GuiCtrlSetResizing($c_lbl, $GUI_DOCKRIGHT+$GUI_DOCKTOP+$GUI_DOCKWIDTH+$GUI_DOCKHEIGHT)
$c_btn_CtrlMove = GUICtrlCreateButton("ControlMove", 420,230,80,20)
GuiCtrlSetResizing($c_btn_CtrlMove, $GUI_DOCKRIGHT+$GUI_DOCKTOP+$GUI_DOCKWIDTH+$GUI_DOCKHEIGHT)
$cMenu=GuiCtrlCreateMenu("MENU")
GUISetState()
While 1
$msg = GUIGetMsg()
Switch $msg
Case $GUI_EVENT_CLOSE
Exit
Case $c_btn_CtrlMove
ControlMove('','',$cListView, 0, 0)
GuiCtrlSetResizing($cListView, $GUI_DOCKLEFT+$GUI_DOCKTOP+$GUI_DOCKRIGHT+$GUI_DOCKBOTTOM)
EndSwitch
WEnd
|
|||
| #231 | Rejected | Modifier keys stick | ||
| Description |
I seem to recall that this has been reported before, but I could not locate the report. The test code is pretty simple on an XP Pro SP2 OS: Send("#l") ; to lock your computer Then manually unlock it and type l on my system, it locks again. You can see this post for more info and more code to test: http://www.autoitscript.com/forum/index.php?s=&showtopic=37289&view=findpost&p=512706 Is this an OS problem or AutoIt? It also happens with 3.2.11.10
+>05:57:05 Starting AutoIt3Wrapper v.1.10.1.4 Environment(Language:0409 Keyboard:00000409 OS:WIN_XP/Service Pack 2 CPU:X86)
+>05:57:06 AU3Check ended.rc:0
+>05:57:06 AutoIT3.exe ended.rc:0
|
|||
| #232 | No Bug | StdoutRead with peek = true doesn't exits loop | ||
| Description |
Using peek = true the StdoutRead loop never terminates (@error = 0) See the example below: #include <Constants.au3> Local $foo = Run(@ComSpec & " /c dir foo.bar", @SystemDir, @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD) Local $line While 1
Wend MsgBox(0, "Debug", "Exiting...") |
|||
