Custom Query (3910 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (316 - 318 of 3910)

Ticket Resolution Summary Owner Reporter
#2707 Fixed Incorrect GUI client size FredAI
Description

The script below worked fine in the version 3.3.8.1. When using the version 3.3.10.2 or the latest beta 3.3.11.5, WinGetClientSize() and the GetClientRect() Windows api do not exclude the area occupied by the menu like they should.

#include <WindowsConstants.au3>
_main()
Func _main()
	$Gui = GUICreate('Menu and edit example',400,300, -1,-1, _
	BitOR($WS_MAXIMIZEBOX,$WS_SIZEBOX,$WS_CAPTION,$WS_SYSMENU,$WS_MINIMIZEBOX), $WS_EX_ACCEPTFILES)
	$menu = GUICtrlCreateMenu('File')
	$apos = WinGetClientSize($Gui)
	$edit = GUICtrlCreateEdit('',0,0,$apos[0], $apos[1])

	GUISetState()
	While GUIGetMsg() <> -3

	WEnd
EndFunc

#2753 Duplicate "To" keyword incorrectly parsed in COM object FredAI
Description

The "To" keyword is incorrectly parsed when used as a COM object parameter.

$obj = ObjCreate("Whatever.Object")
$myVar = $obj.To

Error: error: missing separator character before keyword. $myVar = $oAction.To

Hope this gets fixed soon. I can't use the 3.3.12 version because of it.

Thanks

#558 Duplicate Documentation Error FrozenTeeth
Description

In the windows help file I found a possible error. Please verify.

_IECreate shows:

$f_takeFocus

Optional: specifies whether to bring the attached window to focus 0 = Bring window into focus 1 = (Default) bring window into focus

Is this feature not implemented or should 0 be don't bring window into focus?

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