Custom Query (3926 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (406 - 408 of 3926)

Ticket Resolution Summary Owner Reporter
#1312 Fixed _GUIImageList_BeginDrag.au3 - example in helpfile Valik Zedna
Description

"C:\Program Files\AutoIt3\Beta\Examples\Helpfile\_guiimagelist_begindrag.au3"

1) on my WINXP SP2 Czech it doesn't show any image at cursor position while draging listview items (also cursor doesn't change to draging cursor)

2) there is bug: after draging is set bad item text at target (dropped) position --> only first letter is shown in first column of listview

3) I suggest this change/correction to show implemented also "autoscrolling" while draging:

...
;~ 	$hListView = _GUICtrlListView_Create($main_GUI, "Entry Name|Category", 5, 75, 220, 280, -1, BitOR($WS_EX_CLIENTEDGE, $WS_EX_STATICEDGE))
	$hListView = _GUICtrlListView_Create($main_GUI, "Entry Name|Category", 5, 75, 220, 180, -1, BitOR($WS_EX_CLIENTEDGE, $WS_EX_STATICEDGE))
;~ 	$LV_Height = 280 - 75 ; --> this was wrong in original
	$LV_Height = 180
...
#1319 Fixed AutoIt3.exe always exists after closing script with RichEdit trancexx BugFix
Description

Hi, i've used in SciTE the following script with Windows XP Home SP2. At first with Beta 3.1.1.5 . After ending exists furthermore process AutoIt3.exe with an CPU load of 98 %. Then i've updated to Beta 3.3.1.6 with same effect.

#include <EditConstants.au3>
#include <GuiRichEdit.au3>

$Form1 = GUICreate("Form1", 400, 500, 300, 220)
$Edit = _GUICtrlRichEdit_Create($Form1, "", 10, 10, 380, 360, BitOR($ES_MULTILINE, $ES_AUTOVSCROLL))
GUISetState(@SW_SHOW)

Do
Until GUIGetMsg() = -3
#1320 Fixed _GUIImageList_DragMove() - bad hWnd parameter Valik Zedna
Description

In documentation there is mentioned bad (not existent) hWnd parameter:

_GUIImageList_DragMove($hWnd, $iX, $iY)

Source in GUIImageList UDF and example are OK:

Func _GUIImageList_DragMove($iX, $iY)
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.