Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (229 - 231 of 3933)

Ticket Resolution Summary Owner Reporter
#230 Fixed Wrong GuiCtrlSetResizing after ControlMove in GUIs with Menus Jpm anonymous
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 herewasplato
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

"C:\Program Files\AutoIt3\SciTe\AutoIt3Wrapper\AutoIt3Wrapper.exe" /run /beta /ErrorStdOut /in "c:\Temp\SciTE-temp.au3" /autoit3dir "C:\Program Files\AutoIt3\beta" /UserParams

+>05:57:05 Starting AutoIt3Wrapper v.1.10.1.4 Environment(Language:0409 Keyboard:00000409 OS:WIN_XP/Service Pack 2 CPU:X86)

Running AU3Check (1.54.13.0) from:C:\Program Files\AutoIt3\beta

+>05:57:06 AU3Check ended.rc:0

Running:(3.2.11.10):C:\Program Files\AutoIt3\beta\autoit3.exe "c:\Temp\SciTE-temp.au3"

+>05:57:06 AutoIT3.exe ended.rc:0

Exit code: 0 Time: 1.850

#232 No Bug StdoutRead with peek = true doesn't exits loop gcriaco <gcriaco@…>
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

$line = StdoutRead($foo, True) If @error Then ExitLoop MsgBox(0, "STDOUT read:", $line)

Wend

MsgBox(0, "Debug", "Exiting...")

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