Timeline



Mar 11, 2014:

6:29 PM Ticket #2669 (TCP Send and TCP Receive (Example 2)) updated by anonymous
Replying to AoRaToS: > but when you try them over a network there are issues I don't see any issues with the examples. I tried yours but the schema is incorrect: When the connection is etablished while the server choose where to save the file, the client sends data in the void. After that I always get connection lost.

Mar 10, 2014:

1:42 PM Ticket #2669 (TCP Send and TCP Receive (Example 2)) updated by AoRaToS
The examples as they are in the documentation work for 127.0.0.1 but when you try them over a network there are issues, that's what I meant by "issue".
10:44 AM Ticket #2513 (TCPSend() Not functioning with string over 225 characters in length.) updated by FireFox
Please ignore the files I attached. I created another ticket #2670 not to hijack this one.
10:43 AM client_#2670.au3 attached to Ticket #2670 by FireFox
10:42 AM server_#2670.au3 attached to Ticket #2670 by FireFox
10:42 AM Ticket #2670 (TCP connection lost on blocking functions.) created by FireFox
The connection seems to be closed when there's a blocking function …
9:02 AM Ticket #2669 (TCP Send and TCP Receive (Example 2)) updated by FireFox
There's no issue. I agree in main cases it should be the client who sends the file to the server, and not the contrary, so it will be modified.
6:47 AM Ticket #2669 (TCP Send and TCP Receive (Example 2)) updated by FireFox
Owner, Status, Description changed
6:37 AM Ticket #2668 (Subclassing issue on CallWindowProc) updated by anonymous
I forgot to add that the issue is showed by dragging the 1st column.

Mar 9, 2014:

8:26 PM Ticket #2669 (TCP Send and TCP Receive (Example 2)) created by AoRaToS
Hello, There is an issue with the examples in these 2 functions. The …

Mar 8, 2014:

9:44 PM Ticket #2662 (Internet Window unable to be hidden) updated by anonymous
Replying to jchd18: Sorry about that, that was my fault, thank you for your help and time!
9:31 PM Ticket #2656 (array automatic redim for $array[] = ...) updated by anonymous
Replying to anonymous: > I think that it's time to get AutoIT native functions for working with arrays, and not rely on additional libraries such as _array .. Hm... why not $arr.push($value), returning $value? That doesn't require a new operator.
6:11 PM client.au3 attached to Ticket #2513 by FireFox
6:11 PM server.au3 attached to Ticket #2513 by FireFox
3:58 PM subclassing.au3 attached to Ticket #2668 by FireFox
3:57 PM Ticket #2668 (Subclassing issue on CallWindowProc) created by FireFox
Hi, There's an issue on the CallWindowProc function …
10:01 AM Ticket #2656 (array automatic redim for $array[] = ...) updated by anonymous
Replying to anonymous: > That is only syntactic sugar for _ArrayAdd($arr, 3), is that really necessary? I think that it's time to get AutoIT native functions for working with arrays, and not rely on additional libraries such as _array ..

Mar 6, 2014:

9:11 PM Ticket #2666 (StringReplace($sString, $pos, "") doesn't work) updated by mlipok
Replying to guinness: > If this isn't a bug then additional remarks need to be added to StringReplace(). Replying to anonymous: > Ok, understandable. > That should be added in the help, just as explained. > > "The confusion is that the way StringReplace operates is quite different in both cases (searchstring/start)" > That´s it.... I watched this Track Ticket notification Change the documentation seems to be necessary.
3:46 PM Ticket #2666 (StringReplace($sString, $pos, "") doesn't work) updated by anonymous
Ok, understandable. That should be added in the help, just as explained. "The confusion is that the way StringReplace operates is quite different in both cases (searchstring/start)" That´s it.…

Mar 5, 2014:

9:32 AM Ticket #2667 (Crypt.au3) closed by guinness
Rejected
9:16 AM Ticket #2666 (StringReplace($sString, $pos, "") doesn't work) updated by anonymous
If your replacement string would contain one character, it would replace position 3. StringReplace("abcdef", 3, "X") returns "abXdef" If your replacement string would contain two caracters, it would replace position 3 and 4. StringReplace("abcdef", 3, "XY") returns "abXYef" "It works like correction fluid for the length of the replacement string" It will start replacing character for character form the starting position. Therefore, if your replacement string has no characters, it will not replace anything. You cannot replace one character with more/less than one character if a starting position is used. Hopefully this explains enough.

Mar 4, 2014:

10:00 PM Ticket #2667 (Crypt.au3) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
9:21 PM Ticket #2667 (Crypt.au3) created by Kelmox
Please add new hash Function in the UDF, Example ripemd160, sha-3 and so
9:13 PM Ticket #2666 (StringReplace($sString, $pos, "") doesn't work) updated by mikell
Following anonymous' logic, the important concept in "character position to start the replacement" is the word "position" Thus StringReplace($sString, 3, ...) doesn't mean "replace 3rd character", it means "start replacing from 3rd character position" This looks a lot like some regex patterns allowing to match a position between 2 characters rather than a "real" string or character
7:01 PM Ticket #2666 (StringReplace($sString, $pos, "") doesn't work) updated by AndyG
From the Helpfile: "The substring to search for or the character position to start the replacement." StringReplace($sString, 3, "#") ;works, the character at the 3rd position is replaced by "#" StringReplace($sString, 3, "") ;doesn´t work, because the character at the 3rd position is not replaced by "nothing" anonymous wrote: "The function will start replacing from the start position" ;right, 3rd position is to be replaced "(with the amount of characters of the replacement string)" ;right, amount is zero(-string) which replaces the string at this position "If the replacement string is empty, it will replace zero characters." ;I think this is wrong. If the replacement string is empty, it has to be replaced with "nothing" (same as StringReplace((String,"d","") "d" is replaced with "nothing")
1:57 PM Ticket #2666 (StringReplace($sString, $pos, "") doesn't work) updated by guinness
If this isn't a bug then additional remarks need to be added to StringReplace().
1:03 PM Ticket #2666 (StringReplace($sString, $pos, "") doesn't work) updated by mikell
I understand this logic The confusion is that the way StringReplace operates is quite different in both cases (searchstring/start) About @extended : if the start (character position) method is used then maybe storing in @extended the number of performed replacements makes no sense, as this number is equal to StringLen("replacestring") Thus it's probably the reason why the @extended value is not set and always equal to 0 regardless of the number of characters replaced If so, this should be a little better explained in the help file

Mar 3, 2014:

3:07 PM Ticket #2666 (StringReplace($sString, $pos, "") doesn't work) updated by anonymous
Seems to me this is the expected behaviour. The function will start replacing from the start position (with the amount of characters of the replacement string). If the replacement string is empty, it will replace zero characters.
9:47 AM Ticket #2666 (StringReplace($sString, $pos, "") doesn't work) updated by mikell
Incidentally, if using "character position" StringReplace returns a wrong @extended value even when it's working […]
12:35 AM Ticket #2666 (StringReplace($sString, $pos, "") doesn't work) created by mikell
StringReplace with "" (nothing) as replacement string doesn't work if …

Mar 2, 2014:

11:31 PM Ticket #2664 (_GUICtrlListView_GetItemText - proposal) closed by guinness
Rejected: I have no comment to what has already been said.
10:00 AM Ticket #2665 (Support for EFS (Encrypting File System)) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
9:16 AM Ticket #2665 (Support for EFS (Encrypting File System)) created by anonymous
I've got my first Windows (8.1 Pro) with EFS support. I started using …

Mar 1, 2014:

11:23 PM Ticket #2663 (StringRegExpReplace backreference not working) updated by guinness
You have access to edit this information.
10:42 PM Ticket #2663 (StringRegExpReplace backreference not working) updated by BrewManNH
Now the fog is clearing. Thanks for that explanation. The documentation for StringRegExp[Replace] needs to be modified then to make it clear that they aren't technically back references but are replacement patterns that just happen to look the same as the back references.

Feb 28, 2014:

10:26 PM Ticket #2663 (StringRegExpReplace backreference not working) updated by jchd18
StringRegExpReplace uses a PCRE pattern for matching and a separate replacement string specification for actual replace. The latter doesn't follow PCRE pattern specifications. AutoIt devs decided to allow for \1 and $1 but they could have adopted a completely different syntax. All PCRE back-reference syntaxes are accepted in the PCRE pattern part. Only \i and $i with i a positive integer are accepted in the replacement specification string (which is not processed by any PCRE function).
9:18 PM Ticket #2664 (_GUICtrlListView_GetItemText - proposal) updated by mlipok
Thanks for the clarification. If no one else has any other comments you can close this ticket.
4:29 PM Ticket #2629 (GUIRegisterMsg/GUIUnregisterMsg) updated by Melba23
chesstiger, I agree that it can be done by subclassing in the UDF, but I also agree that subclassing is not simple and so would deter many from writing UDFs which required it. So I believe that it would be advantageous to have this facility in core code. It is also easy enough to arrange by using a UDF wrapper around separate GUIRegisterMsg calls, but then everyone would have to agree to use this UDF wrapper rather than the native function - and this idea has not found favour with the developers when I have suggested it in the past. M23
4:22 PM Ticket #2664 (_GUICtrlListView_GetItemText - proposal) updated by Melba23
The same remark could be made for any number of UDF functions. Either we add error-checking code to each and every UDF function - or we rely on the coder to check parameters before calling those which do not have a specific error return. I would class parameter limit checking as standard coding practice and not something that should be remarked upon for every function. M23
2:08 AM Ticket #2629 (GUIRegisterMsg/GUIUnregisterMsg) updated by anonymous
> If you crash when you app exits then you are probably not doing it right. I don't crash. > > You should ask for help in the forum. Normally, SetWindowLong/SetWindowLongPtr is safe. But it's not safe if you use it to subclass your window (pass nIndex= -4, so you replace window procedure function with your own function). Subclassing is dangerous. In many case, you will not see every thing suggest that your app crash, but an exit code not equals to 1 in output window. Also, manually subclassing is rarely discussed in the forum.

Feb 27, 2014:

10:46 PM Ticket #2664 (_GUICtrlListView_GetItemText - proposal) updated by mlipok
Thanks for your comments. You have right UDF should not need do this. but... It would be good to do a note in HelpFile about it. Because how you say: "So in this case I believe it must be incumbent on the coder to do the necessary parameter checking before calling the function" But he (coder) want to know about this incumbent.
8:13 PM Ticket #2664 (_GUICtrlListView_GetItemText - proposal) updated by Melba23
As an item/subitem could quite easily contain an empty string, I do not think that this is a reasonable proposal - how would you distinguish between a valid empty return and one returned by a non-existent item/subitem? Also looking at the function in detail I cannot see an easy way to determine whether a returned item/subitem value is from a valid element. So in this case I believe it must be incumbent on the coder to do the necessary parameter checking before calling the function - the UDF should not need to do this for itself. M23
5:31 PM Ticket #2663 (StringRegExpReplace backreference not working) updated by BrewManNH
If they're not back references then why are they in the backreference section of the help file, and the link in the help file marked "complete description of PCRE patterns"? If they can't be used in StringRegExpReplace, it should be documented, and if they don't work at all, they should be fixed.
9:04 AM Ticket #2664 (_GUICtrlListView_GetItemText - proposal) updated by mlipok
I'm sorry too stingy description. In one of the scripts I had a situation in which I used the index non-existent, which caused some complications. I noticed that this function does not return any errors in the @error and @extended so I thought that the documentation could use at least a relevant mention of. Please give favorable consideration to my proposal.
8:55 AM Ticket #2664 (_GUICtrlListView_GetItemText - proposal) created by mlipok
Add description something like this: "If item or subitem not exist …
8:00 AM Ticket #2663 (StringRegExpReplace backreference not working) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
7:59 AM Ticket #2663 (StringRegExpReplace backreference not working) updated by J-Paul Mesnage
Type changed
Definitly is not a bug as \g \k concern only the pattern as describe in the doc. Not sure it can be extend to replace parameter of StringRegExpReplace() I move it to feature Request for Jon analysis
5:31 AM Ticket #2663 (StringRegExpReplace backreference not working) updated by jchd18
There is no bug here, at most a feature request. \1 and up or $1 are not PCRE backreferences. They are a way to specify replacement of captured strings in the replacement pseudo-pattern: this is not something performed by PCRE itself, but by the wrapper around it (PCRE API doesn't have a replace function). All forms of PCRE back-reference work inside the pattern, also references to subroutines, recursion and all bells and whistles.
1:22 AM Ticket #2663 (StringRegExpReplace backreference not working) updated by DXRW4E
why you need the group 1 ?? […]
12:44 AM Ticket #2663 (StringRegExpReplace backreference not working) created by BrewManNH
The only backreferences working in RegExp functions are \1\2\3... and …

Feb 26, 2014:

5:22 PM Ticket #2629 (GUIRegisterMsg/GUIUnregisterMsg) updated by anonymous
Replying to anonymous: > Also, using these WinAPI in AutoIT make your program does not exit in a nomal way (in Window Vista or later, you will see a compatibility-issue window suggest that your program ends unexpectedly) If you crash when you app exits then you are probably not doing it right. I don't crash. You should ask for help in the forum.

Feb 23, 2014:

10:10 PM Ticket #2629 (GUIRegisterMsg/GUIUnregisterMsg) updated by anonymous
@chesstiger: Use SetWindowLong / SetWindowLongPtr API manually will cause processing window procedure slow although you do nothing in WndProc function (return DefWindowProc only). This will be seen clearly with painting message, your window will be tearing when drag/drop. Also, using these WinAPI in AutoIT make your program does not exit in a nomal way (in Window Vista or later, you will see a compatibility-issue window suggest that your program ends unexpectedly)
12:08 PM Ticket #2661 (_GUICtrlHeader_GetItemFlags.au3) closed by guinness
Fixed: Fixed by revision [9890] in version: 3.3.11.4

Feb 22, 2014:

7:53 PM Ticket #2656 (array automatic redim for $array[] = ...) updated by anonymous
That is only syntactic sugar for _ArrayAdd($arr, 3), is that really necessary?
6:58 PM Ticket #2629 (GUIRegisterMsg/GUIUnregisterMsg) updated by chesstiger (autoit.de)
You can use the API function SetWindowLong or SetWindowLongPtr to replace the WndProc of a window (implemented in WinAPI.au3 as _WinAPI_SetWindowLong). In your own WndProc you can grab and process any message, and, if required, call the original WndProc for calling windows internal features and such things like GUIRegisterMsg.
6:53 PM Ticket #2656 (array automatic redim for $array[] = ...) updated by anonymous
This feature requires an internal replacement for _ArrayAdd. But PHP shows... It's possible. I like the idea.
6:43 PM Ticket #2662 (Internet Window unable to be hidden) closed by jchd18
No Bug
6:43 PM Ticket #2662 (Internet Window unable to be hidden) updated by jchd18
* Wrong: the URL should be "login.live.com" * Untrue: the IE window is hidden. * Untested: else you would have realized that page "http" can't be found! * Invalid: trac formatting rules violated. Congrats!
6:07 PM Ticket #2662 (Internet Window unable to be hidden) created by onlineth@…
Hi, I tried to do this, Global $oIE = …
5:12 PM Ticket #2661 (_GUICtrlHeader_GetItemFlags.au3) created by Tweaky
_GUICtrlHeader_GetItemFlags.au3 _GUICtrlHeader_SetItemFlags.au3 I …
1:40 PM Ticket #2589 (Exit has to be put in function in order to use it in short if.) updated by anonymous
plus that would work is an expression: HotKeySet('some key',Exit)
8:51 AM Ticket #2660 (GUICtrlSetState Doc example bug) closed by J-Paul Mesnage
Fixed: Fixed by revision [9889] in version: 3.3.11.4
1:19 AM Ticket #2660 (GUICtrlSetState Doc example bug) created by mlipok
[…] top=370 is besides the size of the window height=200. Author: …

Feb 21, 2014:

11:53 PM Ticket #2655 (FileReadToArray and binary file) closed by guinness
Rejected: Create your own wrapper function using the already available functions in AutoIt.
11:52 PM Ticket #2656 (array automatic redim for $array[] = ...) updated by guinness
I personally would reject this feature.
11:51 PM Ticket #2630 (_XOR() and _XNOR() - new function) closed by guinness
Rejected: What Mat said.
11:49 PM Ticket #2651 (IE.Au3 - proposal - _IE_MSIEVersion()) closed by guinness
Rejected: This belongs in the Examples sections and not the UDF.
11:21 PM Ticket #2658 (AutoItWrapper - checking for space on disk) updated by Jos
Pretty sure your OS warns you in time.
11:20 PM Ticket #2658 (AutoItWrapper - checking for space on disk) closed by Jos
Rejected
11:19 PM Ticket #2659 (Au3Check - continuation line proposal) closed by Jos
Rejected
11:16 PM Ticket #2657 (requireAdministrator - Compile Error) closed by Jos
Fixed: Use the current available Beta version of AutoIt3Wrapper : http://www.autoitscript.com/autoit3/scite/download/beta_SciTE4AutoIt3/AutoIt3Wrapper.exe Jos
10:27 AM Ticket #2659 (Au3Check - continuation line proposal) updated by mlipok
supplement: first script does not display the error, and the solution I wanted to report as a 'Feature Request'
10:23 AM Ticket #2659 (Au3Check - continuation line proposal) created by mlipok
repro script: […] How you can see I use two times continuation. …

Feb 20, 2014:

11:00 AM Ticket #2658 (AutoItWrapper - checking for space on disk) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
10:04 AM Ticket #2658 (AutoItWrapper - checking for space on disk) created by mlipok
Today I had a strange case . Tidy removed , a greater part of the …

Feb 19, 2014:

10:30 PM Ticket #2657 (requireAdministrator - Compile Error) updated by mlipok
When Beta ceases to be Beta, then it becomes current relase. You have to wait or use the Beta.
7:59 PM Ticket #2657 (requireAdministrator - Compile Error) updated by anonymous
Found quote in forum: "That is fixed in the current version of the installer and in the AutoIt3Wrapper made available in both Beta and Prod." But it isn't fixed in current setup.
7:24 PM Ticket #2657 (requireAdministrator - Compile Error) updated by mlipok
If it is already fixed in beta why You post a ticket ?
7:16 PM Ticket #2657 (requireAdministrator - Compile Error) updated by anonymous
Error: EndUpdateResource: Returncode = 0 - LastError:1359:An internal error occurred.rc:2 Error: Program Resource updating Failed. The output program will not contain the Resource updatesrc:2
7:14 PM Ticket #2657 (requireAdministrator - Compile Error) created by anonymous
The following produces an error in the newest Scite from 1/22/2014: …
6:41 PM Ticket #2589 (Exit has to be put in function in order to use it in short if.) updated by mlipok
The question which therefore is simply a string? String is expression? [hr] So the problem is not in the way this feature works, but the description in the documentation is incomplete or is not right. According to me, a section called "Return Value" is missing here. some proposal: Return Value: Return from Expression1 or Expression2, relative to Return from first conditional Expression ps. probably someone describe it better than me ;)
6:02 PM Ticket #2589 (Exit has to be put in function in order to use it in short if.) updated by anonymous
The documentation clearly indicates that the "arguments" must be expressions. Exit is a statement. An assignment is a statement. A comparison is an expression. So, a=b will be a comparison and not an assignment.
5:55 PM Ticket #2589 (Exit has to be put in function in order to use it in short if.) updated by mlipok
Here I have another "explantation/suplementar" example: […]
5:36 PM Ticket #2589 (Exit has to be put in function in order to use it in short if.) updated by mlipok
I think I have another example […] Please confirm that this is (or not) the same problem.
2:10 PM Ticket #2655 (FileReadToArray and binary file) updated by anonymous
jchd18, you're right :( Can then still an option, the number of bytes to the index ... But I think that's another function is obtained …
1:03 PM Ticket #2656 (array automatic redim for $array[] = ...) updated by jchd18
I ain't a Dev, so only future will tell.
1:02 PM Ticket #2655 (FileReadToArray and binary file) updated by jchd18
Text files containing more than 16777216 lines are fairly uncommon. Accumulating log data in large log files is easy by appending, but routine processing of such large data is best done using a database. Thus FileReadToArray seems to fit the bill decently. OTOH binary files > 16 Mb are plenty and the need to address every byte individually in one load is questionnable. From Language Reference - Arrays: You can use up to 64 dimensions in an Array. The total number of entries cannot be greater than 224 (16 777 216).
11:58 AM Ticket #2656 (array automatic redim for $array[] = ...) updated by anonymous
jchd18, which future function are you talking about?
11:53 AM Ticket #2655 (FileReadToArray and binary file) updated by anonymous
jchd18, well, what of it that arrays are limited? Everyone knows, however filereadtoarray function exists. Your comment can simply display help for this function.
11:00 AM Ticket #2654 (Unable to do automation for installing a software) closed by Melba23
Rejected
9:36 AM Ticket #2655 (FileReadToArray and binary file) updated by jchd18
This is a very limited syntactic sugar. You can already do that in a few lines of code and without size limit. Remember that AutoIt arrays are limited to 16*1024*1024 = 16777216 cells, so you could only read that many bytes of a file using your suggestion.
9:25 AM Ticket #2656 (array automatic redim for $array[] = ...) updated by jchd18
Your suggestion of this syntactic sugar is greatly inferior to what ReDim currently allows. Hence ReDim would still be needed for N-dimensional arrays. Moretheless it would possibly collide with another future feature using part of this syntax.
8:00 AM Ticket #2655 (FileReadToArray and binary file) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
7:00 AM Ticket #2656 (array automatic redim for $array[] = ...) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
6:30 AM Ticket #2656 (array automatic redim for $array[] = ...) created by anonymous
dear developers. Whether technically difficult to make constructions …
6:18 AM Ticket #2655 (FileReadToArray and binary file) created by anonymous
whether it is possible to do so FileReadToArray return bytes instead …

Feb 18, 2014:

3:40 PM Ticket #2654 (Unable to do automation for installing a software) updated by BrewManNH
That's not the version of AutoIt, that's probably the version of SciTE the editor. This is also something for the forums as I don't see any bug report here. You should post this question there.
1:27 PM Ticket #2654 (Unable to do automation for installing a software) created by narasimha
hi, i am using autoit to do install a software but most of the windows …

Feb 17, 2014:

4:32 PM Ticket #2653 (ObjCreate with arguments) created by chesstiger (autoit.de)
Hello, I just want to create COM objects with non-empty constructors. …

Feb 16, 2014:

2:45 PM Ticket #2652 (Allow ExpandVarStrings to expand com properties as well.) created by this-is-me
The ExpandVarStrings option does not currently expand if the variable …

Feb 14, 2014:

2:00 PM Ticket #2651 (IE.Au3 - proposal - _IE_MSIEVersion()) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
1:38 PM Ticket #2651 (IE.Au3 - proposal - _IE_MSIEVersion()) updated by mlipok
oh I forgot about description Please consider to add this function to the IE.au3 UDF thanks
1:37 PM Ticket #2651 (IE.Au3 - proposal - _IE_MSIEVersion()) created by mlipok
[…]

Feb 11, 2014:

3:10 PM Ticket #2650 (_FileListToArrayRec returns an extra row in array with number of ...) closed by Melba23
Fixed
3:10 PM Ticket #2650 (_FileListToArrayRec returns an extra row in array with number of ...) updated by Melba23
Good. M23
1:49 PM Ticket #2650 (_FileListToArrayRec returns an extra row in array with number of ...) updated by itaushanov@…
You are right, issue seems fixed in 3.3.11.3.
9:41 AM Ticket #2650 (_FileListToArrayRec returns an extra row in array with number of ...) updated by guinness
I am not getting any issue either.
8:15 AM Ticket #2650 (_FileListToArrayRec returns an extra row in array with number of ...) updated by Melba23
Using that file structure I can reproduce the problem with 3.3.10.2, but 3.3.11.3 gives me the correct result as the bug which caused the problem was fixed (by me) in revision 9156. I have just downloaded the 3.3.11.3 zip and the fix is definitely in place in File.au3 so are you sure that you are actually running 3.3.11.3? M23

Feb 10, 2014:

11:30 PM Ticket #2650 (_FileListToArrayRec returns an extra row in array with number of ...) created by itaushanov@…
Simple script: #include <File.au3> #include <Array.au3> $f = …
Note: See TracTimeline for information about the timeline view.