Timeline



Jan 30, 2014:

7:37 AM Ticket #2616 (StringRegExp - new example - request) closed by guinness
Rejected
7:34 AM Ticket #2641 (SetError and SetExtended - range for 32bit) closed by guinness
Fixed: Fixed by revision [9763] in version: 3.3.11.4
7:31 AM Ticket #2643 (Global Const $REG_QWORD called twice error) closed by guinness
No Bug: Remove the declaration from RegFunc.au3. I am closing as No Bug as this isn't related to the AutoIt UDFs.
1:31 AM Ticket #2643 (Global Const $REG_QWORD called twice error) updated by BrewManNH
RegFunc isn't a standard UDF so I can't see how this is related to AutoIt.
12:49 AM Ticket #2643 (Global Const $REG_QWORD called twice error) created by Kalel69
RegFunc.au3 calls #include <Constants.au3> RegFunc.au3 1. calls …

Jan 28, 2014:

10:12 PM Ticket #2642 (The function Hex() returns the wrong value) updated by jchd18
I keep being disconnected, but it was me above. 0/1 also a double, of course... geez.
9:53 PM Ticket #2642 (The function Hex() returns the wrong value) updated by anonymous
Turning 1/1 into a double is utter tech perversion, period. 1.0/1 or 1/1.0 as double is expected and necessary in some circumstances, but certainly not 1/1. Anyway this isn't the place to discuss junk food.
7:59 PM Ticket #2635 (Sqlite don't work with windows 2008 R2) closed by J-Paul Mesnage
No Bug
7:54 PM Ticket #2642 (The function Hex() returns the wrong value) updated by Melba23
Surely the result of any calculation involving a division has to be a double as AutoIt has no way of knowing that an integer will be returned and so must assume that the value will be fractional. This code gives the same result: […] which to my eyes is entirely expected. M23
1:31 PM Ticket #2642 (The function Hex() returns the wrong value) updated by jchd18
Agreed, that would be the right subject for a ticket. But that was not the issue raised by he OP.
1:16 AM Ticket #2642 (The function Hex() returns the wrong value) updated by BrewManNH
Why is it being turned into a Double though I think is the question. Neither number is a floating point so I don't understand why it's happening.
1:12 AM Ticket #2642 (The function Hex() returns the wrong value) updated by jchd18
[…] See Hex() help.

Jan 27, 2014:

11:47 PM Ticket #2642 (The function Hex() returns the wrong value) created by Cythor
The code says all what I mean. […]
12:50 PM Ticket #2635 (Sqlite don't work with windows 2008 R2) updated by anonymous
Replying to anonymous: > Replying to Jpm: > > not using #include <SQLite.dll.au3> will use the SQLite3.dll you put in your dir > > so the _SQLite_Startup() is OK. > > to debug you can copy the SQLite.au" in your @scriptdir and change Inside _SQLite_Startup() to have the error cde of the download > > > > {{{ > > SQLite_Download_SQLite3Dll($sDll_Filename, $vInlineVersion) > > If @error Then Return SetError(@error, @extended, "") ; download not successful === line added > > > > }}} > > > > > > PS I assume you get the SQLite3.dll from your XP/Seven environment > > > ############################################ > > Thanks you for your help, everything works again !
12:48 PM Ticket #2635 (Sqlite don't work with windows 2008 R2) updated by anonymous
Replying to Jpm: > not using #include <SQLite.dll.au3> will use the SQLite3.dll you put in your dir > so the _SQLite_Startup() is OK. > to debug you can copy the SQLite.au" in your @scriptdir and change Inside _SQLite_Startup() to have the error cde of the download > > {{{ > SQLite_Download_SQLite3Dll($sDll_Filename, $vInlineVersion) > If @error Then Return SetError(@error, @extended, "") ; download not successful === line added > > }}} > > > PS I assume you get the SQLite3.dll from your XP/Seven environment ############################################ Thanks you for your help !

Jan 26, 2014:

11:21 PM Ticket #2641 (SetError and SetExtended - range for 32bit) created by mlipok
Please correct in SetError.txt and SetExtended.txt now there is: …
7:43 PM Ticket #2638 (macros.htm - proposal) closed by water
Rejected: Closed as requested by mlipok.
4:51 PM Ticket #2640 (Surprising conversion) created by jchd18
It would be natural to expect an integer from the following …
2:35 PM Ticket #2639 (Unable to Copy/Paste from Embedded IE object) created by JLogan3o13
This issue was reported in the Help and Support forum. Since an …
8:44 AM Ticket #2636 (SciTE History is not available) closed by Jos
Fixed: is currently nothing in beta, but this file got removed as well. It is restored.

Jan 25, 2014:

9:32 PM Ticket #2638 (macros.htm - proposal) updated by mlipok
good comments please close this ticket
11:31 AM Ticket #2638 (macros.htm - proposal) updated by guinness
Also ConsoleWrite() shouldn't be used in the examples as not everyone has access to SciTE or an editor which can capture the STDOUT stream.

Jan 24, 2014:

10:03 PM Ticket #2635 (Sqlite don't work with windows 2008 R2) updated by jchd18
This belongs to the help forum.
5:56 PM Ticket #2635 (Sqlite don't work with windows 2008 R2) updated by J-Paul Mesnage
not using #include <SQLite.dll.au3> will use the SQLite3.dll you put in your dir so the _SQLite_Startup() is OK. to debug you can copy the SQLite.au" in your @scriptdir and change Inside _SQLite_Startup() to have the error cde of the download […] PS I assume you get the SQLite3.dll from your XP/Seven environment
4:42 PM Ticket #2638 (macros.htm - proposal) updated by Melba23
I see no advantage to adding this code to the page. The majority of the macros are self-explanatory and quite a few of them are meaningless outside of a script where they are given values depending on the specific circumstances. M23
4:19 PM Ticket #2635 (Sqlite don't work with windows 2008 R2) updated by anonymous
Replying to Jpm: > In fact if no .dll found a temporary .dll is supposed to be downloaded. > I don't know what Windows 2008 R2 does which makes the downloading bad > > Just change _SQLite_Startup() > to > Local $sDll = _SQLite_Startup() > MsgBox(262144, 'Debug line ~' & @ScriptLineNumber, 'Selection:' & @CRLF & '$sDll' & @CRLF & @CRLF & 'Return:' & @CRLF & $sDll & @CRLF & @CRLF & '@error:' & @CRLF & @error & @CRLF & @CRLF & '@extended:' & @CRLF & @extended & ' (0x' & Hex(@extended) & ')') ;### Debug MSGBOX > > > to see what is going wrong in your environment > > Windows8.1 32-bit/64-bit is OK for me ################################## Thank you for your answers. I copied the sqlite3.dll file in the same directory and I tried this: #RequireAdmin #include <SQLite.au3> #include <SQLite.dll.au3> #include <MsgBoxConstants.au3> Local $hQuery, $aRow, $sMsg Local $sSQliteDll $sSQliteDll = _SQLite_Startup() If @error Then MsgBox($MB_SYSTEMMODAL, "SQLite Error", "SQLite3.dll Can't be Loaded!" & @CRLF & @CRLF & _ "Not FOUND in @SystemDir, @WindowsDir, @ScriptDir or @WorkingDir") Exit -1 EndIf ConsoleWrite("_SQLite_LibVersion=" & _SQLite_LibVersion() & @CRLF) _SQLite_Open() ; open :memory: Database _SQLite_Exec(-1, "CREATE TABLE aTest (a,b,c);") ; CREATE a Table _SQLite_Exec(-1, "INSERT INTO aTest(a,b,c) VALUES ('c','2','World');") ; INSERT Data _SQLite_Exec(-1, "INSERT INTO aTest(a,b,c) VALUES ('b','3',' ');") ; INSERT Data _SQLite_Exec(-1, "INSERT INTO aTest(a,b,c) VALUES ('a','1','Hello');") ; INSERT Data _SQLite_Query(-1, "SELECT c FROM aTest ORDER BY a;", $hQuery) ; the query While _SQLite_FetchData($hQuery, $aRow) = $SQLITE_OK $sMsg &= $aRow[0] WEnd _SQLite_Exec(-1, "DROP TABLE aTest;") ; Remove the table MsgBox($MB_SYSTEMMODAL, "SQLite", "Get Data using a Query : " & $sMsg) _SQLite_Close() _SQLite_Shutdown() ; Output: ; ;~ Hello World Result Sqlite3.dll can't be load but i don't understand why ######################################### I also tried here and there ok : #include <SQLite.au3> #include <Constants.au3> Local $sSQliteDll $sSQliteDll = _SQLite_Startup() If @error Then MsgBox($MB_SYSTEMMODAL, "SQLite Error", "SQLite3.dll Can't be Loaded!" & @CRLF & @CRLF & _ "Not FOUND in @SystemDir, @WindowsDir, @ScriptDir or @WorkingDir") Exit -1 EndIf MsgBox($MB_SYSTEMMODAL, "SQLite3.dll Loaded", $sSQliteDll & " (" & _SQLite_LibVersion() & ")") ConsoleWrite("_SQLite_LibVersion=" & _SQLite_LibVersion() & @CRLF) _SQLite_Shutdown()

Jan 23, 2014:

11:15 PM Ticket #2638 (macros.htm - proposal) created by mlipok
Please consider adding this code […] to the macros.htm …
6:19 AM Ticket #2637 (_GUICtrlStatusBar_.. doc example proposal) closed by guinness
Completed: Added by revision [9761] in version: 3.3.11.4
2:24 AM Ticket #2596 (TCPRecv not returning data, and setting @error to -1) updated by garbb
After experimenting with this a bit more it seems that TCPRecv() will just set @error=-1 when it has no data to return (when the tcp buffer is empty?) This is probably why when you add a delay after sending with TCPSend() you will not get @error=-1. You have allowed enough time to pass for the server to return some data and the TCP buffer to be filled. So really the issue here is an undocumented change to the way that TCPRecv() works (what it sets @error to in what cases) If you simply change your error handling to only check for @error>0 after a TCPRecv call then it should work as in v3.3.8.1
1:58 AM Ticket #2596 (TCPRecv not returning data, and setting @error to -1) updated by garbb
I was having the same problem. It seems that TCPRecv() is now setting @error=-1 in different situations in v3.3.10.2 than it was in v3.3.8.1. Like you say, -1 is not a fatal error, it just means that it it waiting/not ready. I tested forcibly disconnecting a connection I made with a v3.3.10.2 script using external software and got @error=10054 which is "connection reset by peer" so it is setting @error as it was in v3.3.8.1 other than the -1 thing.

Jan 22, 2014:

6:27 PM CHANGED.ZIP attached to Ticket #2637 by mlipok
6:27 PM Ticket #2637 (_GUICtrlStatusBar_.. doc example proposal) created by mlipok
I add Sleep(1000) Because that way you can see better what exactly is …

Jan 21, 2014:

10:44 AM Ticket #2635 (Sqlite don't work with windows 2008 R2) updated by J-Paul Mesnage
In fact if no .dll found a temporary .dll is supposed to be downloaded. I don't know what Windows 2008 R2 does which makes the downloading bad Just change _SQLite_Startup() to Local $sDll = _SQLite_Startup() MsgBox(262144, 'Debug line ~' & @ScriptLineNumber, 'Selection:' & @CRLF & '$sDll' & @CRLF & @CRLF & 'Return:' & @CRLF & $sDll & @CRLF & @CRLF & '@error:' & @CRLF & @error & @CRLF & @CRLF & '@extended:' & @CRLF & @extended & ' (0x' & Hex(@extended) & ')') ;### Debug MSGBOX to see what is going wrong in your environment Windows8.1 32-bit/64-bit is OK for me
9:22 AM Ticket #2636 (SciTE History is not available) created by unc3nzured@…
Sorry, I'm not sure if I'm writing to the right place, but I noteiced …

Jan 20, 2014:

11:47 PM Ticket #2635 (Sqlite don't work with windows 2008 R2) updated by BrewManNH
_SQL_Startup attempts to download the SQLite.DLL file to the @SystemDir folder if it's not found in the @ScriptDir or the @WorkingDir. If you don't have access to that folder it won't download the dll, you should use @RequireAdmin if you need to have the script download the dll. The best thing to do would be to put the dll file in the script directory instead of having the script attempt to download it. The help file does explain all of this.
7:20 PM Ticket #2633 (more possibilities when assigning values to variables) updated by Matt Diesel
No, but it is ambiguous, and means you can't assign the result of a comparison to a variable. For example in a preprocessor that expands variable names, the following could have two different meanings: […] If $c was a constant, and was expanded to 4, the result would look like: […] Which is very different, and will assign True to $a. Technically I'm sure it's possible to implement, but it's a bad idea and a bad design for a language. The only reason it works in other languages is because the = operator returns the result of the assignment.
6:15 PM Ticket #2633 (more possibilities when assigning values to variables) updated by anonymous
Thank you Mat. And maybe I can include 1) in my preprocessor, so it's not a big problem that it isn't possible.
5:35 PM Ticket #2630 (_XOR() and _XNOR() - new function) updated by mlipok
it would be good
4:22 PM Ticket #2635 (Sqlite don't work with windows 2008 R2) created by raclius@…
Hi, I have a strange behavior between sqlite and Windows 2008 R2 …
3:03 PM Ticket #2633 (more possibilities when assigning values to variables) updated by Matt Diesel
The first is completely impossible, because of the dual use of = in AutoIt. It's already used to imply $a = ($b = $c) which assigns $a to the result of the comparison. So no, 1st can be rejected straight away. The 3rd is exactly the same as the 2nd, it's just a result of the order of operations, which if what you want in the 2nd is implemented correctly should always be the case. So basically the ticket is can we assign a tuple of values to a tuple of variables. Which is basically asking whether we can have tuples in AutoIt, because this is one of the features that's very common to languages that use tuples. When I get round to it, I will open a new ticket requesting tuples, as it's been requested in the past, and then close this one.
7:22 AM Ticket #2569 (_ExcelReadSheetToArray - Error Code 4 When Excel Object Was Attached) closed by water
Wont Fix: Won't be fixed because the next Beta of Autoit will include a completely rewritten Excel UDF.

Jan 19, 2014:

7:26 PM Ticket #2634 (Treat keyword Default like an unset optional parameter) created by water
When keyword Default is passed to a function for an optional parameter …
5:02 PM Ticket #2630 (_XOR() and _XNOR() - new function) updated by anonymous
I would add it as a keyword instead (like And, Or and Not): […]
5:00 PM Ticket #2633 (more possibilities when assigning values to variables) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
4:59 PM Ticket #2633 (more possibilities when assigning values to variables) created by anonymous
Just a few nice things that will probably be rejected: 1) […] 2) …
11:54 AM Ticket #2632 (MouseDown dose not delay even i set MouseClickDownDelay to 2000 ...) created by zhengbowang1984@…
MouseDown dose not delay 10 milliseconds, even i set …

Jan 18, 2014:

6:09 PM Ticket #2631 (Change delimiters used in SciTE.session) updated by J-Paul Mesnage
Summary changed
5:00 PM Ticket #2631 (Change delimiters used in SciTE.session) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
4:10 PM Ticket #2631 (Change delimiters used in SciTE.session) created by anonymous
Can delimiters used in SciTE.session file changed to something like …
3:32 PM Ticket #2630 (_XOR() and _XNOR() - new function) updated by Matt Diesel
Or BitXOR($A ? 1 : 0, $B ? 1 : 0) Generally if it can be done in one line then there really isn't a need to add it to the standard UDFs.
12:44 PM Ticket #2630 (_XOR() and _XNOR() - new function) created by mlipok
Please consider adding such a function: …

Jan 17, 2014:

2:44 PM Ticket #2626 (ControlGetText wrong encoding for some words.) updated by anonymous
And WinGetTitle() too (see example above)
12:24 PM Ticket #2626 (ControlGetText wrong encoding for some words.) updated by anonymous
> ControlGetText wrong encoding WinGetText() wrong encoding too […]
12:00 PM Ticket #2629 (GUIRegisterMsg/GUIUnregisterMsg) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
11:50 AM Ticket #2629 (GUIRegisterMsg/GUIUnregisterMsg) created by Melba23
This is a reopening of Ticket 2624 now I have realised what …

Jan 16, 2014:

3:59 PM Ticket #2628 (Add mode to StringRegExp) created by asdf8
I propose add an additional mode to function StringRegExp - to allow …
9:10 AM Ticket #2626 (ControlGetText wrong encoding for some words.) updated by anonymous
The same example, the text encoding utf-16 […]
7:21 AM Ticket #2627 (WinExists not working on Windows 8) closed by J-Paul Mesnage
No Bug: It is true that Win8 and 7 introduce a non-breaking blank in the title "CLASS:Notepad" is better mainly when using non english windows

Jan 15, 2014:

10:05 PM Ticket #2627 (WinExists not working on Windows 8) updated by Jon
Works fine here. Windows 8 x64.
9:33 PM Milestone 3.3.11.3 completed
9:21 PM Ticket #2627 (WinExists not working on Windows 8) updated by BrewManNH
Does the Notepad window have the same title as it did in previous versions of windows?
7:45 PM Ticket #2624 (GUIUnRegisterMsg) closed by Melba23
Rejected
7:45 PM Ticket #2624 (GUIUnRegisterMsg) updated by Melba23
I am afraid that yoru reply makes no sense to me at all. And this ticket is not the place to start discussing how a standard UDF can be modified to justify your initial request - I suggest that you open thread on the forum where the subject can be discussed in detail. I am closing this ticket and you can open another if the situation warrants it after the forum discussion. M23
7:26 PM Ticket #2627 (WinExists not working on Windows 8) updated by anonymous
I found a workaround, here it is: ;Test for seeing if we can see notepad ;NotepadTest.au3 DIM $CompletionWindowStr = "Untitled - Notepad" ;$WaitCompleteResult = WinExists($CompletionWindowStr) $WaitCompleteResult = WinExists("[CLASS:Notepad]") If ($WaitCompleteResult = 1) Then MsgBox(1,"Info", "Notepad found", 30) Else MsgBox(1,"Info", "Notepad NOT found", 30) EndIf Exit
6:49 PM Ticket #2627 (WinExists not working on Windows 8) created by Daniel.Paquette@…
The following code works fine on windows 7 (32 and 64 bit), but fails …

Jan 14, 2014:

7:23 PM Ticket #2309 (ObjEvent on ADO.Connection not returning strings) updated by Jon
Fixed by revision [9696] in version: 3.3.11.3
6:41 PM Ticket #2625 (_ExcelBookSaveAs() and _GDIPlus_GraphicsDrawBezier() displaying ...) closed by guinness
Fixed
3:02 PM Ticket #2309 (ObjEvent on ADO.Connection not returning strings) closed by Jon
Fixed: Fixed by revision [9680] in version: 3.3.11.3
2:10 PM Ticket #2624 (GUIUnRegisterMsg) updated by asdf8
Replying to Melba23: > Absolute nonsense - most of my UDFs use GUIRegisterMsg and are perfectly compatible with any script if they are used correctly. For example: try to function _ArrayDisplay of UDF Array.au3 instead of buttons to select the copy mode cells to implement a context menu for cell - if this used GUIRegisterMsg heap bugreports from users will not force itself to wait. Will explain each trick, how to get out of this situation?
1:59 PM Ticket #2618 (_StringBetween malfunction when before and after parameters are identical) closed by Melba23
Fixed: Fixed by revision [9678] in version: 3.3.11.3
1:23 PM Ticket #2624 (GUIUnRegisterMsg) updated by Melba23
"GUIRegisterMsg function is not practically possible to use in UDF" Absolute nonsense - most of my UDFs use GUIRegisterMsg and are perfectly compatible with any script if they are used correctly. The trick is to create separate handler functions which can be called from with an existing message handler and provide an initial registering function that allows the user to register only those messages which are not already registered in the script. Take a look at my GUIListViewEx UDF for examples of how this is done. M23
9:46 AM Ticket #2613 (AutoIt crashes whenever an array value returned from a WMI query is null) closed by Jon
Fixed: Fixed by revision [9671] in version: 3.3.11.3
9:43 AM Ticket #2622 (Object method crash autoit) closed by Jon
Duplicate
9:40 AM Ticket #2626 (ControlGetText wrong encoding for some words.) updated by anonymous
the same is observed in Notepad.exe If text is exactly Выполнение приложений no extra spaces and line breaks, this script gives an incorrect result: […]
9:32 AM Ticket #2626 (ControlGetText wrong encoding for some words.) created by anonymous
[…] In console and in Autoit v3 Windows Info on Visible Text tab …

Jan 13, 2014:

9:40 PM Ticket #2625 (_ExcelBookSaveAs() and _GDIPlus_GraphicsDrawBezier() displaying ...) created by guinness
docs\autoit\english\txt2htm\txtlibfunctions\_ExcelBookSaveAs.txt ! The …
3:39 PM Ticket #2622 (Object method crash autoit) updated by anonymous
This is the same bug as reported in ticket #2613.
9:43 AM Ticket #2624 (GUIUnRegisterMsg) created by asdf8
GUIRegisterMsg function is not practically possible to use in UDF. …
8:28 AM Ticket #2622 (Object method crash autoit) updated by anonymous
jchd18, this report not about autoit array and its ubound. If you can read you will see, that it about autoit crash with runtime errror -1073741819

Jan 12, 2014:

11:10 PM Ticket #2623 (RegDelete() returns 0 instead of 2 when unable to delete key) updated by anonymous
Thank you.
11:09 PM Ticket #2623 (RegDelete() returns 0 instead of 2 when unable to delete key) created by Factfinder
After installing the latest AutoIt version (3.3.10.2) I noticed it. …
7:08 PM Ticket #2622 (Object method crash autoit) updated by jchd18
AutoIt arrays indices start at 0 and end at UBound(array) - 1 This is not the place to ask such basic questions. General Help forum exists for a reason.
11:26 AM Ticket #2622 (Object method crash autoit) created by anonymous
I have virtual net adapter VMware Virtual Ethernet Adapter for VMnet1 …
11:12 AM Ticket #2621 (Problem comparing strings) closed by J-Paul Mesnage
No Bug: Please read Operators page, You will see that Not opetator has a higher precedence that = so your expression is executed as (Not string1) = string2
7:36 AM Ticket #2621 (Problem comparing strings) updated by guiness
This has always been the case when using Not. No Bug.
6:27 AM Ticket #2621 (Problem comparing strings) created by diegomainster@…
Hello, in version 3.3.10.2, I have to put the strings to be compared …
12:00 AM Ticket #2620 (Ternary operator and php 5.3 sugar syntax) updated by TicketCleanup
Version changed
Automatic ticket cleanup.

Jan 11, 2014:

11:31 PM Ticket #2620 (Ternary operator and php 5.3 sugar syntax) created by Tlem
Hi. Is it possible to use the sugar syntax for ternary operateur like …
10:01 PM Ticket #2618 (_StringBetween malfunction when before and after parameters are identical) updated by Melba23
Owner, Status changed
6:23 PM Ticket #2619 (_ArrayDisplay does not show the presence of data in the cells, if ...) closed by Melba23
Fixed: Fixed by revision [9655] in version: 3.3.11.3
6:13 PM Ticket #2619 (_ArrayDisplay does not show the presence of data in the cells, if ...) updated by Melba23
Owner, Status changed
6:05 PM Ticket #2619 (_ArrayDisplay does not show the presence of data in the cells, if ...) updated by BrewManNH
It looks to be a result of an old "bug" that wasn't accounted for in the new arraydisplay function. https://www.autoitscript.com/trac/autoit/ticket/1833
6:05 PM Ticket #2619 (_ArrayDisplay does not show the presence of data in the cells, if ...) updated by BrewManNH
It looks to be a result of an old "bug" that wasn't accounted for in the new arraydisplay function. http://www.autoitscript.com/trac/autoit/ticket/1833
4:26 PM Ticket #2618 (_StringBetween malfunction when before and after parameters are identical) updated by Melba23
See proprosed new version in the linked thread. M23
4:22 PM Ticket #2619 (_ArrayDisplay does not show the presence of data in the cells, if ...) created by asdf8
#Include <Array.au3> Dim $ar[10][2] $ar[0][1] = …
10:50 AM Ticket #2618 (_StringBetween malfunction when before and after parameters are identical) updated by Melba23
As explained in that thread, the results are not "messed up", they are just not what you were expecting and what was the case in previous releases. As it seems that there is a requirement for both the "old" and "new" behaviour the obvious answer is to add a parameter to switch between them - so we are looking into that. M23
10:29 AM Ticket #2618 (_StringBetween malfunction when before and after parameters are identical) created by Morthawt
As documented in this post: …

Jan 10, 2014:

3:00 PM Ticket #2617 (Incorrect multi-byte characters in "Au3Record.exe /o") created by anonymous
Character is not correct When i record the operation that generates …
9:00 AM Ticket #2616 (StringRegExp - new example - request) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
8:48 AM Ticket #2616 (StringRegExp - new example - request) updated by mlipok
during the weekend I'll try to prepare
8:41 AM Ticket #2616 (StringRegExp - new example - request) updated by J-Paul Mesnage
why not, just add the example you have in mind
8:06 AM Ticket #2616 (StringRegExp - new example - request) created by mlipok
Please make a one new example which show the difference between: …

Jan 9, 2014:

10:58 PM Ticket #2615 (TrayItemGetText: wrong Return Value in documentation) closed by Melba23
Completed: Added by revision [9637] in version: 3.3.11.3
9:31 PM Ticket #2615 (TrayItemGetText: wrong Return Value in documentation) created by Indi2Go
The documentation of the return value of TrayItemGetText() is: […] …
7:13 PM Ticket #2614 (UDPBind Socket aArray is needed by UDPRecv (not UDPSend)) closed by guinness
Fixed: Fixed by revision [9634] in version: 3.3.11.3
6:22 PM Ticket #2614 (UDPBind Socket aArray is needed by UDPRecv (not UDPSend)) created by Indi2Go
In the ReturnTable of the UDPBind function is following sentence: We …
4:32 PM Ticket #2613 (AutoIt crashes whenever an array value returned from a WMI query is null) created by anonymous
Example: _GetIPAddresses() Func _GetIPAddresses($sComputer = …

Jan 8, 2014:

1:05 PM Ticket #2602 (GUIcreate generates blinking/flikering on W2012) closed by J-Paul Mesnage
No Bug: no problem, always please to help when needed
8:38 AM Ticket #2602 (GUIcreate generates blinking/flikering on W2012) updated by anonymous
Hello, We have done more research and it appears that on W8 and Windows 2012, Microsoft is installing a default standard graphic driver that is not enough compatible with some applications and the new Metro interface. As result some application are flickering. As a conclusion, it is not an AutoIt related feature at all. Thank you for your time and help!

Jan 7, 2014:

11:50 PM Ticket #2612 (Au3Check bugs on function reference when function takes byref parameter) created by jchd18
Code to trigger the issue: […] Au3Check gets confused and raises an …

Jan 6, 2014:

4:44 PM Ticket #2602 (GUIcreate generates blinking/flikering on W2012) updated by J-Paul Mesnage
If you reproduce it setup a server so I can analyze. Not sure I will find the pb but at least I will try If you don't to be too public, use private conversation to give me how to use the server Cheers JP
2:47 PM Ticket #2611 (end paramter in "StringFromASCIIArray" is wrong) updated by Matt Diesel
Component changed
2:46 PM Ticket #2611 (end paramter in "StringFromASCIIArray" is wrong) closed by Matt Diesel
Fixed: Fixed by revision [9583] in version: 3.3.11.3
2:44 PM Ticket #2611 (end paramter in "StringFromASCIIArray" is wrong) updated by Matt Diesel
You are correct, it seems that the default is actually UBound($a). As a result, this is not the index to end processing, it is the index+1. For example if you only want to get the third character (index 2) you would use StringFromAsciiArray($a, 2, 3) I'll look at what the correct wording is and update the docs to match current behaviour. I'll then start a discussion as to whether the function should be changed.
12:37 PM Ticket #2611 (end paramter in "StringFromASCIIArray" is wrong) created by Indi2Go
Hello, the help file for the "end" paramter of the function …
10:52 AM Ticket #2610 (..\txtlibfunctions\ - Formating_5 --> <strong>Windows Vista or ...) closed by guinness
Completed: Changed by revision [9575] in version: 3.3.11.3
10:49 AM Ticket #2609 (..\txtlibfunctions\ - Formating_4) closed by guinness
Completed: Changed by revision [9574] in version: 3.3.11.3
8:28 AM Ticket #2602 (GUIcreate generates blinking/flikering on W2012) updated by anonymous
Hello, That is the problem I fight against during the past 6 months (unfortunatly). On some servers, the flickering is obvious (outrageous in fact) and prevent to use the GUI. On others the same code does not flicker at all. Yesterday, when I did place this ticket, I was connected from France to Australia on a W2012 where obviously it was flikering. Then I did run it on my own VMware 2012 test system (2012 R2 64 bits) and I have reproduce locally the same issue. If you need it I can try to setup a test server that reproduce it for you. Kind regards Dominique Benoit
6:00 AM Ticket #2610 (..\txtlibfunctions\ - Formating_5 --> <strong>Windows Vista or ...) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
5:15 AM Formating_5 Vista.zip attached to Ticket #2610 by mlipok
5:14 AM Ticket #2610 (..\txtlibfunctions\ - Formating_5 --> <strong>Windows Vista or ...) created by mlipok
I change : From […] _GUICtrlButton_GetNote.txt …
4:00 AM Ticket #2609 (..\txtlibfunctions\ - Formating_4) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
3:56 AM Formating_4.zip attached to Ticket #2609 by mlipok
3:55 AM Ticket #2609 (..\txtlibfunctions\ - Formating_4) created by mlipok
the next part.…

Jan 5, 2014:

11:02 PM Ticket #2606 (..\txtlibfunctions\ - Formating_3) updated by Matt Diesel
Changed the description to be "a value of zero ...".
9:50 PM Ticket #2608 (COM Objects and Classes) created by James (autoit.de)
Would it be possible to allow AutoIt/ObjCreate to work with object …
9:27 PM Ticket #2569 (_ExcelReadSheetToArray - Error Code 4 When Excel Object Was Attached) updated by guinness
Your proposed fix does not actually fix the error.
8:45 PM Milestone 3.3.11.2 completed
7:02 PM Ticket #2602 (GUIcreate generates blinking/flikering on W2012) updated by mlipok
I checked this on W2012 Essential. Compiled as x86 but also as x64. I do not see any issue.
6:07 PM Ticket #2607 (bad external link in _IEPropertySet doc) closed by guinness
Completed: Removed by revision [9558] in version: 3.3.11.2
5:45 PM Ticket #2607 (bad external link in _IEPropertySet doc) created by anonymous
in the documentation of _IEPropertySet there is a link that point to …
5:43 PM Ticket #2512 (ObjName crash) closed by Jon
Fixed: Fixed by revision [9555] in version: 3.3.11.2
5:25 PM Ticket #2602 (GUIcreate generates blinking/flikering on W2012) updated by J-Paul Mesnage
server 2012 is supposed to have the same code as Win8.1 and nothing wrong about "no responding" !!!
3:37 PM Ticket #2606 (..\txtlibfunctions\ - Formating_3) updated by guinness
zeroth value is okay for me or it could be 0th, but it's not a big issue.
3:17 PM Ticket #2316 (PowerPoint COM event handler initialization error) closed by Jon
Fixed: Fixed by revision [9536] in version: 3.3.11.2
3:00 PM Ticket #2606 (..\txtlibfunctions\ - Formating_3) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
2:44 PM Ticket #2606 (..\txtlibfunctions\ - Formating_3) closed by guinness
Completed: Changed by revision [9530] in version: 3.3.11.2
2:39 PM Ticket #2602 (GUIcreate generates blinking/flikering on W2012) updated by Jon
Hmm, I can't see any issue on my 2012 server, it never seems to say anything about not responding/flickering.
2:35 PM Formating_3.zip attached to Ticket #2606 by mlipok
2:34 PM Ticket #2606 (..\txtlibfunctions\ - Formating_3) created by mlipok
btw there is still this issue: in …
12:36 PM Ticket #2605 (Macro @ScriptLineNumber returns incorrect line) updated by Matt Diesel
Same issue as #2372, as was already mentioned in the thread.
11:49 AM Ticket #2605 (Macro @ScriptLineNumber returns incorrect line) created by Shanheavel
[…] It calls F function which returns true and backs to the first …
10:18 AM Ticket #2316 (PowerPoint COM event handler initialization error) reopened by Jon
Further info: http://www.autoitscript.com/forum/topic/157515-autoit-v33111-beta/#entry1141328
10:08 AM Ticket #2512 (ObjName crash) updated by Jon
Version changed
10:07 AM Ticket #2512 (ObjName crash) reopened by Jon
Further info: http://www.autoitscript.com/forum/topic/157515-autoit-v33111-beta/#entry1141236
2:14 AM Ticket #2604 (Array access on expression & first element) updated by DXRW4E
Replying to Mat: > Not a good idea. It would have to be a special case, that only applies when the array is used with a comparison operator as there would be other cases where it wouldn't work. > > We'd probably start seeing code like: > > {{{ > If $a = 0 Then > $a = 4 > EndIf > }}} > > A confusing feature, especially in a large code base, even with systems hungarian. For pretty much no saving either. Sure for arrays that have the count in the first index it might be nice. > > I've rejected the request. PM me on the forums if you want to discuss it further, if another MVP or dev would like this feature then they can re-open the ticket. the feature already exists […] however i asked only an improvement Ciao.
1:03 AM Ticket #2604 (Array access on expression & first element) updated by DXRW4E
I think you have not understood very well the (Feature) Request http://www.autoitscript.com/forum/topic/157522-array-access-on-expression-first-element/?p=1141292
1:02 AM Ticket #2604 (Array access on expression & first element) updated by anonymous
I think you have not understood very well the (Feature) Request http://www.autoitscript.com/forum/topic/157522-array-access-on-expression-first-element/?p=1141292 Ciao.
12:00 AM Ticket #2604 (Array access on expression & first element) updated by TicketCleanup
Version changed
Automatic ticket cleanup.

Jan 4, 2014:

11:58 PM Ticket #2604 (Array access on expression & first element) closed by Matt Diesel
Rejected: Not a good idea. It would have to be a special case, that only applies when the array is used with a comparison operator as there would be other cases where it wouldn't work. We'd probably start seeing code like: […] A confusing feature, especially in a large code base, even with systems hungarian. For pretty much no saving either. Sure for arrays that have the count in the first index it might be nice. I've rejected the request. PM me on the forums if you want to discuss it further, if another MVP or dev would like this feature then they can re-open the ticket.
11:42 PM Ticket #2604 (Array access on expression & first element) updated by DXRW4E
[…] Ciao.
11:39 PM Ticket #2604 (Array access on expression & first element) created by DXRW4E
Sorry for my English can be enabled (in Array access on expression) …
11:14 PM Ticket #2593 (Static & Global) updated by DXRW4E
the same logic could be used also for Function, example Static Func _FunctionName() ;ect ect ect EndFunc Ciao.
10:59 PM Ticket #2603 (GUI Flickering on Windows 8) closed by guinness
Duplicate
10:19 PM Ticket #2603 (GUI Flickering on Windows 8) updated by adrienc@…
(please delete this ticket, it was in fact already posted and better commented on ticket #2602 - sorry for the trouble!)
9:38 PM Ticket #2603 (GUI Flickering on Windows 8) created by adrienc@…
Hello, This simple AutoIt program demonstrates the issue we are …
8:49 PM Ticket #2602 (GUIcreate generates blinking/flikering on W2012) created by dominiquebenoit@…
Hello, For months I have customers using my AutoIT programs claiming …
2:50 PM Ticket #2543 (Run on WriteOnly Medium) updated by jungwirth.markus@…
Oh, it was my fault. It happens when executing with ShellExecute. But as i read, it is a specific problem of Windows XP with ShellExecute, not of AutoIT. XP tries to write the lastaccess timestamp on the write-protected medium with ShellExecute. Run works as expected. So it is a faulty OS behaviour, not AutoIT. Thanks.
1:30 PM Ticket #2559 (Array incorrect number of subscripts) updated by mlipok
KaFu Are you using the current version of SciTe4AutoIt which contains the relevant amendment to Obfuscator.exe look here: http://www.autoitscript.com/trac/autoit/ticket/2524
1:17 PM Milestone 3.3.11.1 completed
12:57 PM Ticket #2483 (DriveGetDrive - different error for "improper drive type" versus "none ...) closed by Jon
Rejected
12:48 PM Ticket #2512 (ObjName crash) closed by Jon
Works For Me
12:40 PM Ticket #2515 (Force close the std out stream will have memory leak in windows XP) closed by Jon
Works For Me
12:32 PM Ticket #2500 (_IEDocGetObj Help example $oDoc.fileCreatedDate error) closed by Jon
No Bug
12:31 PM Ticket #2454 (if WMI Obj need "Join",au3 crashed.) closed by Jon
Works For Me
12:26 PM Ticket #2317 (ObjCreate Memory Leak) closed by Jon
Works For Me
12:26 PM Ticket #2317 (ObjCreate Memory Leak) updated by Jon
Seems to be an IE thing rather than an AutoIt thing. This script has constant memory use and it's doing a lot more COM interaction […]
12:03 PM Ticket #2598 (Accepting invalid scripts) closed by Jon
No Bug
12:00 PM Ticket #2478 (Assign and Eval do not restrict variable names) closed by Jon
Fixed: Fixed by revision [9505] in version: 3.3.11.1
10:35 AM Ticket #2601 (Deprecated Dim usage in UDF - BUG ??) closed by Jon
No Bug
8:44 AM Ticket #2601 (Deprecated Dim usage in UDF - BUG ??) updated by jchd
AFAIK this is the only situation where Dim can't be avoided: […]
4:59 AM Ticket #2601 (Deprecated Dim usage in UDF - BUG ??) updated by BrewManNH
As guinness stated, it's not deprecated, it's merely suggested that you don't use it. I also had been under the impression that it had been deprecated, but found out otherwise.
12:33 AM Ticket #2600 (GUICtrlSetState.txt - proposal - State table - CleanUp) closed by guinness
Completed: Changed by revision [9492] in version: 3.3.11.1
12:31 AM Ticket #2601 (Deprecated Dim usage in UDF - BUG ??) updated by guinness
Dim isn't deprecated, it has its certain usage though very limited. I will leave this ticket open for others to consider as well.
12:28 AM Ticket #2599 (_Iif in UDF) closed by guinness
No Bug
12:27 AM Ticket #2599 (_Iif in UDF) updated by guinness
I think you'll find the function is called with an additional underscore and has nothing to do with the Misc.au3 function.
12:02 AM Ticket #2601 (Deprecated Dim usage in UDF - BUG ??) created by mlipok
according to: …
12:00 AM Ticket #2600 (GUICtrlSetState.txt - proposal - State table - CleanUp) updated by TicketCleanup
Version changed
Automatic ticket cleanup.

Jan 3, 2014:

11:11 PM GUICtrlSetState.txt attached to Ticket #2600 by mlipok
11:11 PM Ticket #2600 (GUICtrlSetState.txt - proposal - State table - CleanUp) created by mlipok
before […] Proposal […]
10:58 PM Ticket #2599 (_Iif in UDF) created by mlipok
This files contain: WinAPIDiag.au3 WinAPIDlg.au3 WinAPIFiles.au3 …
4:44 PM Ticket #2598 (Accepting invalid scripts) created by root@…
Au3Check.exe accept many invalid scripts like: […]
4:35 PM Milestone 3.3.11.0 completed
4:04 PM Ticket #2573 (GUISetCursor not working correctly) closed by Jon
Fixed: Fixed by revision [9476] in version: 3.3.11.0
3:15 PM Ticket #2566 ("global" cursor in GUISetCursor fails.) closed by Jon
Fixed: Fixed by revision [9475] in version: 3.3.11.0
2:39 PM Ticket #2596 (TCPRecv not returning data, and setting @error to -1) updated by diegomainster@…
I think I found a temporary solution to this problem: If I replace the code below the first TCPRecv […] by that: […] the data is returned in the next call to TCPRecv. So I think @error = -1 does not mean a serious error or that the socket was closed, I think it just means that the socket is not ready to receive data.
1:37 PM Ticket #2596 (TCPRecv not returning data, and setting @error to -1) updated by Matt Diesel
I tried it with www.gov.au as I figured it wouldn't get further away than australia. Ping() would occasionally fail with @error = 2, but would mostly return around 340ms. TCPRecv failed with -1 every time. Adding a 500ms sleep between sending and receiving works. So TCPRecv needs to be changed to wait for data (with timeout?) or does TCPSend need to be modified to wait for a reply before returning success?
4:57 AM Ticket #2596 (TCPRecv not returning data, and setting @error to -1) updated by anonymous
If I test with an "IP / site" my country, the results are similar to yours, but if the "IP / site" is from another country (I think for the ping be higher), the tests I did with the changes you made, 100% @ error = -1. Test with an "IP / site" with a higher ping. I think the problem is these new versions, as in 3.3.8.1 does not have this problem. My test result: http://pastebin.com/rqKj0KqC The same test in version 3.3.8.1: http://pastebin.com/fcBMNdAJ
1:34 AM Ticket #2596 (TCPRecv not returning data, and setting @error to -1) updated by Matt Diesel
I ran it in a loop counting the number of time it succeeded and failed, and it failed 10 times with that error in 1000 tests. (test code: http://pastie.org/8595004 output: http://pastie.org/8595005)
1:15 AM Ticket #2589 (Exit has to be put in function in order to use it in short if.) updated by Matt Diesel
This is a ridiculous misusage of the feature. Unfortunately, it is a bug though.

Jan 2, 2014:

10:41 PM Ticket #2595 (autoit.php) closed by guinness
Completed: Added by revision [9472] in version: 3.3.11.0
10:00 PM Ticket #2597 (- text formating) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
9:45 PM Ticket #2597 (- text formating) closed by guinness
Fixed: Fixed by revision [9470] in version: 3.3.11.0
9:06 PM Formating_2.zip attached to Ticket #2597 by mlipok
9:06 PM Ticket #2597 (- text formating) created by mlipok
with reference to: …
7:23 PM Ticket #2596 (TCPRecv not returning data, and setting @error to -1) created by diegomainster@…
Hello, sorry for my english, I'm using a translator. I would like to …
5:54 PM Ticket #2595 (autoit.php) created by guinness
Certain directives need to be escaped and point to the correct page. …
5:18 PM Ticket #2592 (GUICtrlSetState - State table - MagicNumber) closed by guinness
Completed: Added by revision [9467] in version: 3.3.11.0
2:14 PM Ticket #2594 (_EventLog__Read on Security under Server 2008 R2) created by llewxam
The log count is correct and all field are populated, but information …
11:13 AM Ticket #2453 (FileFindNextFile can find not-matching mask files if non-English ...) closed by Jon
Fixed: Fixed by revision [9455] in version: 3.3.11.0
11:12 AM Ticket #2453 (FileFindNextFile can find not-matching mask files if non-English ...) updated by Jon
Updated the documentation.
10:00 AM Ticket #2593 (Static & Global) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
9:20 AM Ticket #2593 (Static & Global) created by DXRW4E
Is possible (when Au3Check load a file, take all the names of the …
8:40 AM Ticket #2591 (GUICtrlRead - Parameters controlID - proposal) closed by guinness
Rejected
8:00 AM Ticket #2592 (GUICtrlSetState - State table - MagicNumber) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
7:43 AM Ticket #2590 (@ProgramFilesDir results different for AutoIt 32bit and 64bit install.) updated by guinness
Please re-direct any response to the Forum. Thank you.
7:09 AM Ticket #2590 (@ProgramFilesDir results different for AutoIt 32bit and 64bit install.) updated by dogsurfer
My thanks for the quick reply. My initial scan of the forums was not comprehensive enough. I see now this is also described in the help .chm file. I see that Windows has a redirection mechanism returning entirely different values based on whether the 32 or 64 bit AutoIt program accesses it. So AutoIt returns that different value. But it breaks my scripts, and since it has been discussed several times in the forums, the way AutoIt implemented this is causing some of us to think it is a bug. I mean, same script, same system, but it is inconstant, unintuitive, and requires a code work-around to be compatible. It sure seems to quack like a bug. Still, I can achieve the consistency I require by staying on the 32 bit version. I truly appreciate AutoIt, and thank you for your support and time.
7:00 AM Ticket #2592 (GUICtrlSetState - State table - MagicNumber) created by mlipok
Please, in the first column of the table to supplement the information …
7:00 AM Ticket #2591 (GUICtrlRead - Parameters controlID - proposal) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
6:50 AM Ticket #2591 (GUICtrlRead - Parameters controlID - proposal) created by mlipok
please add to Parameter description: See <a …
5:51 AM Ticket #2590 (@ProgramFilesDir results different for AutoIt 32bit and 64bit install.) closed by guinness
No Bug
2:08 AM Ticket #2590 (@ProgramFilesDir results different for AutoIt 32bit and 64bit install.) updated by BrewManNH
The directory will change depending upon which version of the app you're running, either 64 bit or 32 bit. This has been discussed several times on the forums, and this type of question should have been posted there first. If you had, you would have realized that it's not a bug and that it's working exactly as it's supposed to. BTW, it will also change the @SystemDir(system32 or SysWOW64) folder location depending upon the same criteria.
1:52 AM Ticket #2590 (@ProgramFilesDir results different for AutoIt 32bit and 64bit install.) created by dogsurfer
Shouldn't @ProgramFilesDir give the same results for compatible or …

Jan 1, 2014:

11:39 PM Ticket #2589 (Exit has to be put in function in order to use it in short if.) updated by anonymous
lol
11:30 PM Ticket #2589 (Exit has to be put in function in order to use it in short if.) created by shadow_iso@…
The new short if does not accept Statements like Exit. You have to put …
10:20 PM Ticket #2567 (Unknown strange Bug) updated by DXRW4E
watch this http://www.autoitscript.com/forum/topic/157179-cabinet-api-fciaddfile-error/?p=1140582 maybe it helps […] […]
10:16 PM Ticket #2381 (StringIsSpace - does not work in all cases) closed by Jon
Rejected
9:54 PM Ticket #2481 (FileSelectFolder - Windows 7 and later new window type) closed by Jon
Completed: Added by revision [9434] in version: 3.3.11.0
6:14 PM Ticket #2489 (HttpSetUserAgent return value) closed by Jon
Completed: Added by revision [9430] in version: 3.3.11.0
6:05 PM Ticket #2567 (Unknown strange Bug) closed by Jon
Wont Fix: Need something simple to repo this or it's impossible to troubleshoot.
6:01 PM Ticket #2568 (StringStripWS does not strip Chr(0) as Help file states) closed by Jon
Fixed: Fixed by revision [9429] in version: 3.3.11.0
5:36 PM Ticket #2581 (Dec ( "hex" [, flag = 0] ) Does not respond like before.) closed by Jon
Fixed: Fixed by revision [9428] in version: 3.3.11.0
5:22 PM Ticket #2557 (Send Key Count 0 not to send any keys) closed by Jon
Completed: Added by revision [9427] in version: 3.3.11.0
11:48 AM Ticket #2581 (Dec ( "hex" [, flag = 0] ) Does not respond like before.) updated by guinness
Confirmed the same results using AutoIt 3.3.10.2 64-bit.
10:46 AM Ticket #2581 (Dec ( "hex" [, flag = 0] ) Does not respond like before.) updated by Melba23
In fact it is flags 1 & 2 that do not work - flags 0 & 3 still do as shown here: […] 3.3.10.2 returns: […] 3.3.8.1 returns: […] M23
2:47 AM Ticket #2586 (Documentation: Remark: Windows Vista or later) closed by guinness
Completed: Added by revision [9421] in version: 3.3.11.0
Note: See TracTimeline for information about the timeline view.