Custom Query
Results (106 - 108 of 3883)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1476 | Fixed | _DebugReportVar() example fails | Jon | Beege |
Description |
The example in the documentation for function _DebugReportVar() fails with output: C:\Users\Brian\Documents\_DebugReportVar.au3 (37) : ==> Unable to parse line.: $binary = Binary(0x0102030405060708) $binary = Binary(0x0102030405060708 ERROR AutoIt:3.3.4.0 (Os:WIN_7/X86 Language:0409 Keyboard:00000409 Cpu:X64) |
|||
#1481 | Fixed | _GUICtrlHeader UDF not using correct character set | Jpm | Beege |
Description |
I know I'm not using the correct terminology so I'm sorry about that but for some reason the default character set is non-english. Even more strange, when I set it to use unicodeformat, it will then start to display English characters correctly. I saw this when testing _GUICtrlHeader examples from the documentation. I am posting a snap shot of the header from example _GUICtrlHeader_Create() to better describe what im trying to report. AutoIt:3.3.4.0 (Os:WIN_7/X86 Language:0409 Keyboard:00000409 Cpu:X64) |
|||
#1499 | Fixed | Performance increase to internal __FTP_ListToArray() | Jpm | Beege |
Description |
In the current internal function _FTP_ListToArray, every time a new item is added to the array, the array is Resized by only +1, which can be a major performance hit when getting directory listing of large numbers. If we instead Resize by ubound*2, and then trim unused slots at the end of function, we can avoid a lot or resizing. I learned this method from the original _filelisttoarray() func. I have included a example with changes to the function and a demonstration of the new vs. old. I have put a set of XXXXXXXXXXXXXXXXXXXXXXXXXXX around any lines that I changed or added. Not that many changes were needed since the function already kept track of array size in index $array[0]. Thank you for your consideration and hard work in creating this wonderful language.:) |