Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (109 - 111 of 3875)

Ticket Resolution Summary Owner Reporter
#1500 Fixed _FTP_DirSetCurrent() Return Value Jpm Beege
Description

The current documentation of _FTP_DirSetCurrent() states that the return value is the Directory Name when it actually returns True if successfully set.

#1970 Fixed Bug added to internal __FTP_ListToArray() guinness Beege
Description

Very sorry about this but some time back I submitted a request here http://www.autoitscript.com/trac/autoit/ticket/1499 that had a mistake in it. I thought it got caught before being added to the beta but it didnt. The bug is that if the user specifys only files or only dirs to be returned, nothing gets returned due to incorrect rediming at the end. Attached is the function pulled from the beta udf with all changes/fixs surrounded in xxxxxxxxxxxxxxxx's. The example verifys all possible return methods are working correctly this time and demonstrates current broken code. Again Im very sorry about this.

#2114 Completed Performance increase to _ArrayDisplay() guinness Beege
Description

I notice today that _arraydisplay() does not disable redraw before adding new items to the listview. This can have a big impact on the performance.

Changing the main loop that adds the listview items to:

GUICtrlSendMsg($hListView, 11, 0, 0);$WM_SETREDRAW
; Fill listview
For $i = 0 To $iUBound
	GUICtrlCreateListViewItem($avArrayText[$i], $hListView)
Next
GUICtrlSendMsg($hListView, 11, 1, 0);$WM_SETREDRAW

For a quick test I ran this small script:

Global $g_aArray[1] = [1]
For $i = 2 To 20
	_ArrayAdd($g_aArray, $i)
Next
Global $g_aArrayCombo = _ArrayCombinations($g_aArray, 7, ",")

_ArrayDisplay($g_aArrayCombo)

My times before and after were:

Before - 6569.94750836973 After - 1508.47224799844

Note: See TracQuery for help on using queries.