Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (100 - 102 of 3866)

Ticket Resolution Summary Owner Reporter
#101 Fixed _ScreenCapture_Capture: Cursor is not on the right position Gary progandy
Description

If you make a Screenshot and the upper left corner is not 0,0 the cursor has a wrong position. To fix it, line 77 in ScreenCapture.au3 has to be changed to

_WinAPI_DrawIcon($hCDC, $aCursor[3] - $aIcon[2] - $iLeft, $aCursor[4] - $aIcon[3] - $iTop, $hIcon)
#102 Fixed ControlCommand(SelectString) - wrong selection order again Jpm Zedna
Description

When there is value ABC|ABC_DEF in ComboBox then ControlCommand($gui,,$h_combo1,'SelectString','ABC') --> problem: selects ABC_DEF and not ABC As workaround I used: _GUICtrlComboBox_SelectString($h_combo2, 'ABC') --> OK: selects ABC

Note: Here is link to very similar BUG which was fixed already - http://www.autoitscript.com/forum/index.php?showtopic=54738 That older bug is fixed but now in 3.2.10 version doesn't work this new testing example: both comboboxes are the same on the first one is applied ControlCommand(SelectString) on the first one is applied _GUICtrlComboBox_SelectString() as workaround

#include <GUIConstants.au3>
#Include <GuiComboBox.au3>

$gui = GUICreate("SelectString test", 212, 212)
$combo1 = GUICtrlCreateCombo('',10, 20, 100, 100)
GUICtrlSetData($combo1, '|ABC|ABC_DEF', 'ABC_DEF')
GUICtrlCreateLabel('Problem',130, 20, 100)
$combo2 = GUICtrlCreateCombo('ABC|ABC_DEF',10, 70, 100, 100)
GUICtrlSetData($combo2, '|ABC|ABC_DEF', 'ABC_DEF')
GUICtrlCreateLabel('OK',130, 70, 100)
GUISetState(@SW_SHOW)

$h_combo1 = ControlGetHandle($gui, "", $combo1)
$h_combo2 = ControlGetHandle($gui, "", $combo2)

; TEST: should select first row in ComboBox
ControlCommand($gui,'',$h_combo1,'SelectString','ABC') ; problem: selects ABC_DEF
_GUICtrlComboBox_SelectString($h_combo2, 'ABC') ; OK: selects ABC

While 1
	$msg = GUIGetMsg()
	Select
		Case $msg = $GUI_EVENT_CLOSE
			ExitLoop
	EndSelect
WEnd

OS: WINXP SP2 CZ

#103 No Bug a-squared Free says exe's are trojans jcasablanca@…
Description

The latest malware signatures for a-squared Free (http://www.emsisoft.com/en/software/free/) are detecting autoit-produced exe's as having a high-risk trojan.

I will attempt to attach the actual a-squared Free report, in which all reported exe's were produced by AutoIt 3.2.10.0.

Note: See TracQuery for help on using queries.