Timeline



Nov 1, 2013:

6:09 PM Ticket #2315 (Server 2012 @OSVersion not correct) closed by J-Paul Mesnage
Fixed: Fixed by revision [9151] in version: 3.3.9.22
4:58 PM Ticket #2315 (Server 2012 @OSVersion not correct) reopened by J-Paul Mesnage
3:01 PM Ticket #2441 (_ExcelReadCell) updated by water
Component changed
3:00 PM Ticket #2441 (_ExcelReadCell) updated by water
When translated to VBS you get a COM error: "Type mismatch", 0x800A000D Set objExcel = CreateObject("Excel.Application") Set objWorkbook = objExcel.Workbooks.Open("C:\Temp\test.xlsx") Wscript.Echo "Value: " & objExcel.Cells(1, 3).Value So - for me - it looks like a problem with the COM error handler of 3.3.9.21.
2:47 PM Ticket #2441 (_ExcelReadCell) updated by water
I reduced the example to: $oExcel = ObjCreate("Excel.Application") $oWorkbook = $oExcel.WorkBooks.Open(@ScriptDir & '\test.xlsx') $sValue = $oWorkbook.Activesheet.Range("C1").Value MsgBox(0, "Value C1", $sValue) Works with 3.3.8.1 and crashes with 3.3.9.21.
9:41 AM Ticket #2315 (Server 2012 @OSVersion not correct) updated by mlipok
I have access to Win 2012 Essential I do a small test: […] AutoIt 3.3.8.1 results: […] AutoIt 3.3.9.21 results: […]

Oct 31, 2013:

10:12 PM Ticket #2315 (Server 2012 @OSVersion not correct) updated by J-Paul Mesnage
In fact Jon close very old posts. If you are for sure the latest Beta is still in Error, just post I cannot check as I have no access to a server 2012
8:28 PM Ticket #2315 (Server 2012 @OSVersion not correct) updated by keithdavis@…
Rejected? Is this a duplicate or is this issue being fixed elsewhere?
11:50 AM Ticket #2517 (MustDeclareVars=1 as default) updated by James
Absolutely not. You're imposing restrictions on developers for no reason other than selfishness. What might be a good idea is to instead set the default AU3 template to set MustDeclareVars, but not do it by default. It's nonsensical to turn it off, rather than on.
6:00 AM Ticket #2517 (MustDeclareVars=1 as default) updated by J-Paul Mesnage
Perhaps a good way is to have Au3Check default enforcing this verification. I assume a lot of designer use SciTE

Oct 29, 2013:

8:32 PM Ticket #2517 (MustDeclareVars=1 as default) updated by Matt Diesel
AutoIt does still allow you to directly assign to undeclared variables, for example the following is still perfectly valid code: […] But running with Opt("MustDeclareVars", 1) won't work. Changing it to the default would break any old scripts that relied on this functionality, and I can't really think of an example where using this option would show something that is not obvious and isn't shown by Au3Check already.
8:00 PM Ticket #2517 (MustDeclareVars=1 as default) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
7:38 PM Ticket #2517 (MustDeclareVars=1 as default) created by Raik
Because i stumbled over scripts again and again, throwing "variable …

Oct 28, 2013:

8:02 AM Ticket #2513 (TCPSend() Not functioning with string over 225 characters in length.) updated by J-Paul Mesnage
In fact the "problem" does not come from 225 to 226 but from the fact that such script is not design to handle several TCPSend() I am not familiar with TCP usage so I cannot help more.

Oct 26, 2013:

11:55 PM Ticket #2516 (FileGetTime - parameter porposal - filename and dir) closed by guinness
Completed: Changed by revision [9147] in version: 3.3.9.22
8:12 PM FileGetTime.txt attached to Ticket #2516 by mlipok
8:09 PM Ticket #2516 (FileGetTime - parameter porposal - filename and dir) created by mlipok
in FileGetTime in parameter: "filename" please consider to change …

Oct 25, 2013:

7:35 AM Ticket #2515 (Force close the std out stream will have memory leak in windows XP) updated by kimyumiko@…
Hi, Example script: […] NOTE: If we use a loop to read all the data of the std out stream, then call StdioClose, the memory leak will not happen. Memory leak only occurs when we don't read all the data.
6:58 AM Ticket #2515 (Force close the std out stream will have memory leak in windows XP) updated by J-Paul Mesnage
Can you add a repro script to be sure in which case the memory leak is occuring? Thanks
4:33 AM Ticket #2515 (Force close the std out stream will have memory leak in windows XP) created by anonymous
If we use StdioClose to force close the std out stream, it will have …

Oct 24, 2013:

8:11 PM Ticket #2514 (_FileWriteFromArray - Count of elements in 2nd dimension is fixed to 3!) updated by guinness
Already fixed in #2242.
8:09 PM Ticket #2514 (_FileWriteFromArray - Count of elements in 2nd dimension is fixed to 3!) closed by guinness
Fixed
8:00 PM Ticket #2514 (_FileWriteFromArray - Count of elements in 2nd dimension is fixed to 3!) created by BugFix
If you write an 2D-Array with more than 3 elements in columns, you get …
6:13 AM Ticket #2513 (TCPSend() Not functioning with string over 225 characters in length.) created by NullSchritt
Hello I have found a bug that appears to be present in all the most …

Oct 22, 2013:

5:22 PM Ticket #2505 (Array create without declaration) updated by Matt Diesel
What you are asking for are called literal arrays. The idea has been looked at before. I'm not sure how far it got, or whether it is still on the table.
11:22 AM Ticket #2505 (Array create without declaration) updated by anonymous
But cant like this: Func test() Return ['t','e','s','t'] EndFunc
11:19 AM Ticket #2512 (ObjName crash) created by anonymous
$oHTTP = ObjCreate("WinHttp.WinHttpRequest.5.1") $oHTTP.Open("GET", …

Oct 21, 2013:

8:17 AM Ticket #2511 (New Macro @SourceName) closed by J-Paul Mesnage
Rejected: @ScriptName relates to the script launched not the include files. as stated by BrewManNH, compiles script will no longer have reference to include lines. so even the @ScriptLineNumber will be irrelevant. We don't intend to modify the way Compile script can use @ScriptName and @ScriptLineNumber
3:27 AM Ticket #2505 (Array create without declaration) updated by BrewManNH
The requesters first example works as well. Local $aData = ['p','e','t'] Creates an array with 3 elements containing p, e, and t.
3:24 AM Ticket #2511 (New Macro @SourceName) updated by BrewManNH
Once you compile that script, the "source" won't matter any longer because it's all one long script. If you want different file names to be displayed in your message boxes, why didn't you write them to display the correct file name instead of the "source"? You're overthinking it. I don't see the point or value of what you're requesting.

Oct 20, 2013:

2:11 PM Ticket #2510 (Empty variable) closed by J-Paul Mesnage
No Bug: AutoIt is doing conversion when variable type are not the same so "" and 0 are the same after conversion NO BUG
2:00 PM Ticket #2511 (New Macro @SourceName) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
1:31 PM Wish Macro SourceName.zip attached to Ticket #2511 by Fulgor
Wish New Macro @SourceName
1:27 PM Ticket #2511 (New Macro @SourceName) created by Fulgor
[…]
12:57 PM Ticket #2510 (Empty variable) created by Fulgor
[…]
7:54 AM Ticket #2509 (_FileWriteToLine Bug) updated by guinness
This was fixed yesterday with the resolution stated here >> http://www.autoitscript.com/forum/topic/155510-beta-bug-filewritetoline-damages-the-file-33920/?p=1123848
7:53 AM Ticket #2509 (_FileWriteToLine Bug) closed by guinness
Fixed

Oct 19, 2013:

10:44 PM Ticket #2509 (_FileWriteToLine Bug) created by anonymous
[…]
2:57 PM Ticket #2504 (GUICtrlSendToDummy to нidden window) updated by Melba23
jpm, It was discussed here: http://www.autoitscript.com/forum/topic/143635-guictrlsendtodummy/ (Private forum) following on from a question here: http://www.autoitscript.com/forum/topic/143629-solved-guictrlsendtodummy-problem/ (Open forum) Like you I can see little use for the change - a possible workaround is suggested in the second thread. M23
12:47 PM Ticket #2508 (Proposed amendments to the 50 files: _GDIPlus....) updated by J-Paul Mesnage
I check all and I think my commit is taking in account wht's need to be changed Cheers
9:11 AM Ticket #2508 (Proposed amendments to the 50 files: _GDIPlus....) updated by guinness
I was just looking at this too. There was also a discrepancy in _WinAPI_SetWindowPos() as the include example was missing from your version. I will leave jpm to continue from here.
8:36 AM Ticket #2508 (Proposed amendments to the 50 files: _GDIPlus....) closed by J-Paul Mesnage
Completed
8:28 AM Ticket #2508 (Proposed amendments to the 50 files: _GDIPlus....) updated by J-Paul Mesnage
Thanks, Only 11 need changes. $n... or $f... naming is deliberate next beta incorporate also new example
8:14 AM Ticket #2505 (Array create without declaration) updated by guinness
This is the correct format. […]
12:21 AM CHANGE_6.zip attached to Ticket #2508 by mlipok
CHANGE_6.zip - 50 txt. doc files
12:21 AM Ticket #2508 (Proposed amendments to the 50 files: _GDIPlus....) created by mlipok
_FileWriteToLine.txt _GDIPlus_ArrowCapCreate.txt …

Oct 18, 2013:

2:31 AM Ticket #2505 (Array create without declaration) updated by BrewManNH
You can already use the first format to declare an array in the latest beta.

Oct 15, 2013:

8:28 PM Ticket #2507 (Problem with ObjCreate() on a 64bit PC when compiled with AutoIT_64) closed by Jos
No Bug: Why do you say the ObjCeate() has a problem? Do you have the x64 bits SQL ODBC driver loaded? Maybe stick to the forum before you post a bug report to confirm this is really a bug. Closing for now. Jos
3:59 PM Ticket #2507 (Problem with ObjCreate() on a 64bit PC when compiled with AutoIT_64) created by Tippex
This works on a 64bit PC, but only when compiled in 32bit: […] …
10:06 AM Ticket #2504 (GUICtrlSendToDummy to нidden window) updated by J-Paul Mesnage
Can you add an example when it will be useful? It is strange to post an event to the internal pumping mechanism as hidden GUI is not supposed to handle any event.

Oct 14, 2013:

11:51 PM Ticket #2506 (Proposed amendments to the 25 files: _GUICtrlListView.....) closed by J-Paul Mesnage
Completed: Added by revision [9113] in version: 3.3.9.22
8:49 PM change_5.zip attached to Ticket #2506 by mlipok
25 FILES: _GUICtrlListView.....txt
8:48 PM Ticket #2506 (Proposed amendments to the 25 files: _GUICtrlListView.....) created by mlipok
_GUICtrlListView_AddItem.txt …
5:29 PM Ticket #1573 (TCPConnect TCPTimeout) updated by J-Paul Mesnage
I have submitted the fix to Jon, I hope he will have sometime to commit it Cheers JP
10:18 AM Ticket #2505 (Array create without declaration) created by anonymous
[…]
10:00 AM Ticket #2504 (GUICtrlSendToDummy to нidden window) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
9:43 AM Ticket #2503 (Reference Definition Keyword) updated by anonymous
ByRef cannot compute
9:40 AM Ticket #2504 (GUICtrlSendToDummy to нidden window) created by anonymous
if window is hidden GUICtrlSendToDummy must work.
9:39 AM Ticket #1573 (TCPConnect TCPTimeout) updated by anonymous
Bumpy Bump
1:12 AM Ticket #2502 (COW optimization incorrect) updated by Tasiro
ByRef applies to r-values too, as you can see in the example, and it is effective. But the result is unexpected, why can I modify a copy of an array with a reference to an element of the copied array? The expected second output would be "10 / 1". The link describes a solution to that problem.

Oct 13, 2013:

11:58 PM Ticket #2502 (COW optimization incorrect) updated by jchd18
The error in the above reasonning is that AutoIt != C++. While the documentation (correctly) says that ByRef can be applied to the result of an expression, it should clearly state that ByRef is ineffective in that case. Probably this ticket should be directed to "Documentation" with the complain that ByRef only applies to named variables.
2:54 PM Ticket #2503 (Reference Definition Keyword) created by Tasiro
It is possible to create a reference, but only with a complicated …[…]

Oct 12, 2013:

11:53 PM Ticket #2502 (COW optimization incorrect) created by Tasiro
[…] Too bad there are references. See http://www.gotw.ca/gotw/044.htm.
7:49 AM Ticket #2496 (Runing Au3Info BETA) updated by mlipok
ok
7:27 AM Ticket #2478 (Assign and Eval do not restrict variable names) updated by czardas
Ah, you're going to change it. Although I didn't know about this previously, I think it would be pretty cool if it remained as an undocumented feature. If there are potential issues with behaviour then it should be changed, otherwise I don't see any reason or benefit to change anything. The fact this is even possible seems to open up new possibilities. I made such a function as BrewManNH spoke of, but all variable names use word characters after conversion to hex - allowing case sensitive variable names.

Oct 11, 2013:

9:50 PM Ticket #2496 (Runing Au3Info BETA) closed by Jos
Rejected: Just copy it manually when you want to be able to always use it as this is not a utility that goes through a lot of changes. Jos
12:22 AM Ticket #2501 (SciTE lexer - syntax coloring - bug) updated by mlipok
I confirm it works well. Thanks.

Oct 10, 2013:

8:19 PM Ticket #2491 (AutoIt doesn't functions properly) closed by Jos
No Bug: Asked questions in our forum and only report bugs here when confirmed and has a script attached that reproduces the bug. Closing for now as nobug Cheers Jos
8:17 PM Ticket #2498 (High Memory Consumption) closed by Jos
No Bug: Please discuss in our forums and only report confirmed bug here. Cheers, Jos
8:14 PM Ticket #2501 (SciTE lexer - syntax coloring - bug) closed by Jos
Fixed: Uploaded a fixed SciLexer.dll and SciTE.exe to the beta directory.
11:10 AM Ticket #2498 (High Memory Consumption) updated by jchd18
Trac is for reporting confirmed bugs, not asking for implementation details you "think" are strange. FYI, AutoIt uses COW.

Oct 9, 2013:

6:57 PM Ticket #2501 (SciTE lexer - syntax coloring - bug) updated by Jos
Status changed
9:34 AM Ticket #2498 (High Memory Consumption) updated by Tasiro
[…] AutoIt 3.3.8.1 ||= message box =||= memory =||= change =||= operation =|| || 1 || 69.912 KB|| +69.912 KB||Dim $arr [$size] || || 2 || 69.928 KB|| +16 KB||$arr [0] = $arr || || 3 || 135.600 KB|| +65.672 KB||$arr [1] = $arr || || 4 || 201.268 KB|| +65.668 KB||$arr [2] = 1 || || 5 || 201.268 KB|| +0 KB||$arr [3] = 2 || || 6 || 201.268 KB|| +0 KB||$arr [4] = $arr || || 7 || 266.936 KB|| +65.668 KB||$arr [5] = 3 || Well, I think this behavior is strange. Why is the memory allocation delayed?
3:28 AM Ticket #2498 (High Memory Consumption) updated by BrewManNH
Who says it's copying a pointer? It's copying the contents of the array $arr into element 0 of $arr so in effect you've just doubled the memory needed to hold $arr. Doing it again into element 1 means you now need to triple the memory needed to hold $arr and so on and so on.

Oct 8, 2013:

2:00 PM Ticket #2501 (SciTE lexer - syntax coloring - bug) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
1:32 PM Ticket #2498 (High Memory Consumption) updated by Tasiro
There is a difference of 66 MB after the execution of line 6. Why does it need memory to copy a pointer? No memory is consumed in the statement $arr [0] = $arr (v3.3.8.1).
1:08 PM Ticket #2501 (SciTE lexer - syntax coloring - bug) created by mlipok
SciTe version 3.3.5.0 date 2013/09/28 Repro code: […] How to: …
3:23 AM Ticket #2498 (High Memory Consumption) updated by BrewManNH
I don't see much difference in memory usage between 3.3.9.21 and 3.3.8.1, there's a slight difference on my computer, but not a whole lot. If you're asking why it uses so much memory in the second test, it's because you keep putting the array into itself, every time you do that you're going to use a LOT of memory. I'm not sure what exactly the issue you're complaining about is, maybe you should write it out more clearly explaining EXACTLY what you think is wrong.
1:27 AM Ticket #2500 (_IEDocGetObj Help example $oDoc.fileCreatedDate error) created by oz.mike@…
HI The help example for _IEDocGetObj dosen't work on …

Oct 7, 2013:

10:00 PM Ticket #2499 (GUICtrlSendToDummy documentation clarification) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
9:11 PM Ticket #2499 (GUICtrlSendToDummy documentation clarification) created by MrGeorge <mscreator@…>
As we already …
8:34 PM Ticket #2498 (High Memory Consumption) created by Tasiro
[…] Memory usage differs between v3.3.9.21 and v3.3.8.1. (v3.3.9.21 …
3:22 PM Ticket #2497 (Window Titles and Text (Advanced) - Proposal) updated by mlipok
Yes I know. But all examples of: <a href="../intro/windowsadvanced.htm">Title special definition</a> can be considered as incomplete. It depends on the approach to a data examples. In this part of the documentation can be regarded as sufficient. I think so. And it is this part of the documentation I was thinking of writing this report.
3:05 PM Ticket #2497 (Window Titles and Text (Advanced) - Proposal) updated by guinness
The example you've provided isn't complete.
1:01 PM Ticket #2497 (Window Titles and Text (Advanced) - Proposal) created by mlipok
in "Window Titles and Text (Advanced)" Please add an example: …
10:45 AM Ticket #2491 (AutoIt doesn't functions properly) updated by J-Paul Mesnage
Just for reproduction can you post the link (http...) that can be used.
10:11 AM Ticket #2496 (Runing Au3Info BETA) created by mlipok
In SciTE4AutoIt set in SciTe Menu there is a menu item Au3Info CTRL+F6 …
10:09 AM Ticket #2494 (Example _GUICtrlToolbar_SetHotItem) closed by J-Paul Mesnage
Fixed: Fixed by revision [9103] in version: 3.3.9.22
10:07 AM Ticket #2493 (Examples for _GUICtrlToolbar_GetMetrics, _GUICtrlToolbar_SetMetrics) closed by J-Paul Mesnage
Fixed: Fixed by revision [9102] in version: 3.3.9.22
9:00 AM Ticket #2495 (_FileWriteFromArray for save _ExcelReadSheetToArray arrays) updated by TicketCleanup
Milestone changed
Automatic ticket cleanup.
8:24 AM Ticket #1663 (Au3Recorder x64 does not work on x64 machines.) updated by J-Paul Mesnage
@anonymous What is the purpose of this .exe? Just post what is your proposal if any to modify the current source of au3Record which is BTW not opensource THe current version just run in X32 mode Under a system in 64-bit which is not the most but it is doing the job
8:19 AM Ticket #2495 (_FileWriteFromArray for save _ExcelReadSheetToArray arrays) closed by J-Paul Mesnage
Duplicate: Already fixed in Beta next time verify with current beta
3:00 AM Ticket #2495 (_FileWriteFromArray for save _ExcelReadSheetToArray arrays) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
2:33 AM Ticket #2495 (_FileWriteFromArray for save _ExcelReadSheetToArray arrays) created by anton-ilyasov@…
code of function _FileWriteFromArray : Case 2 Local $s_Temp For …

Oct 5, 2013:

9:32 PM Ticket #2493 (Examples for _GUICtrlToolbar_GetMetrics, _GUICtrlToolbar_SetMetrics) updated by mlipok
I forgot to say that the same problem is in the example in the documentation functions: _GUICtrlToolbar_SetPadding ()
9:31 PM Ticket #2493 (Examples for _GUICtrlToolbar_GetMetrics, _GUICtrlToolbar_SetMetrics) updated by mlipok
now I know more: look in _GUICtrlToolbar_SetPadding(): in Remarks: "Padding is only applied to buttons that have the $TBSTYLE_AUTOSIZE style." First note: $TBSTYLE_AUTOSIZE is no where defined, it seems that it is more about $BTNS_AUTOSIZE But when I use: […] Despite this, using this example, can not see the visual change ToolBar Control.
9:11 PM _GUICtrlToolbar_SetHotItem.au3 attached to Ticket #2494 by mlipok
_GUICtrlToolbar_SetHotItem.au3
9:10 PM Ticket #2494 (Example _GUICtrlToolbar_SetHotItem) created by mlipok
I confirm as AZJIO say: …
6:56 PM Ticket #2493 (Examples for _GUICtrlToolbar_GetMetrics, _GUICtrlToolbar_SetMetrics) created by mlipok
Example from Helpfile is not good, because in my opinion it does not …
3:43 PM Au3Record.exe attached to Ticket #1663 by anonymous

Oct 4, 2013:

11:41 PM Ticket #2492 (_GUICtrlToolbar_ - issue for 6 doc files) closed by J-Paul Mesnage
Fixed: Fixed by revision [9101] in version: 3.3.9.22
7:00 PM Ticket #2492 (_GUICtrlToolbar_ - issue for 6 doc files) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
6:49 PM _GUICtrlTollbar.zip attached to Ticket #2492 by mlipok
_GUICtrlToolbar_LoadBitmap.au3 and _GUICtrlToolbar_SetMetrics.txt
6:46 PM Ticket #2492 (_GUICtrlToolbar_ - issue for 6 doc files) created by mlipok
As AZJIO: …
12:57 PM Ticket #2491 (AutoIt doesn't functions properly) created by venugopal.vysakh@…
I have tried AutoIt for a firefox based login pop-up. While running …
9:54 AM Ticket #2426 (TrayGetMsg and TraySetState - Magic Numbers) closed by J-Paul Mesnage
Completed: Added by revision [9096] in version: 3.3.9.22
8:36 AM Ticket #2488 (@exitMethod - proposal - new mode - Accident) closed by J-Paul Mesnage
Rejected
8:34 AM Ticket #2418 (Where to add a description about file with constants definition. ...) closed by J-Paul Mesnage
Completed: Added by revision [9094] in version: 3.3.9.22
8:33 AM Ticket #2418 (Where to add a description about file with constants definition. ...) updated by J-Paul Mesnage
at least the signaled help are fixed in the beta

Oct 3, 2013:

6:21 PM Ticket #2490 (HttpSetUserAgent return value) closed by Matt Diesel
Duplicate: Duplicate of #2489.
10:50 AM Ticket #2490 (HttpSetUserAgent return value) created by anonymous
Could you please make HttpSetUserAgent return the old user agent when …
10:40 AM Ticket #2489 (HttpSetUserAgent return value) created by anonymous
Could you please make HttpSetUserAgent return the old user agent when …

Oct 2, 2013:

6:33 PM Ticket #2485 (Selection goes invisible after _GUICtrlRichEdit_GetFont) closed by J-Paul Mesnage
Fixed: I found the reason the code has been as this since the beginning Solved with the same fix as #2496
6:24 PM Ticket #2486 (_GUICtrlRichEdit_GetFont does not return an empty string for mixed fonts) closed by J-Paul Mesnage
Fixed: Fixed by revision [9091] in version: 3.3.9.22
4:05 PM Ticket #2485 (Selection goes invisible after _GUICtrlRichEdit_GetFont) updated by J-Paul Mesnage
Not sure what has to be done to force repainting of the control Perhaps a bug in Windows API for richEdit.
Note: See TracTimeline for information about the timeline view.