Timeline



Aug 22, 2009:

2:17 AM Ticket #1146 (Obfuscator & OnAutoItExitRegister.) updated by anonymous
Roger, thanks.
12:00 AM Ticket #1146 (Obfuscator & OnAutoItExitRegister.) updated by TicketCleanup
Milestone changed
Automatic ticket cleanup.

Aug 21, 2009:

11:01 PM Ticket #1146 (Obfuscator & OnAutoItExitRegister.) closed by Jos
Fixed: It is just a matter of adding one line to obfuscator.dat: onautoitexitregister,1,0 Download the version available in the Beta Directory and save it in the Obfuscator program directory. Jos
10:47 PM Ticket #1146 (Obfuscator & OnAutoItExitRegister.) updated by Jos
Status changed
Will have a look.
8:00 PM Ticket #1146 (Obfuscator & OnAutoItExitRegister.) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
7:46 PM Ticket #1146 (Obfuscator & OnAutoItExitRegister.) created by anonymous
OnAutoItExitRegister() set functions get stripped in Obfuscated …
7:39 PM Ticket #1145 (GUICtrlCreateTreeView() steals application focus) reopened by Valik
Your ticket describes activation, your example describes focus and demonstrates focus. It does demonstrate the problem for me on 3.3.1.1. Fixing the ticket to describe the problem correctly. In the future, please submit carefully written and well thought out issues with examples to avoid further hassle.
7:20 PM Ticket #1145 (GUICtrlCreateTreeView() steals application focus) updated by anonymous
i have attached the file
7:18 PM Test.au3 attached to Ticket #1145 by tayou fabrice
This file demontrate my Problem
5:16 PM Ticket #1145 (GUICtrlCreateTreeView() steals application focus) closed by Valik
No Bug: Go read WikiStart and stop wasting people's time, please. Not only did you fail to provide an example so I could show you where the problem in your code lies, you shouldn't have even been posting here in the first place.
12:19 PM Ticket #1145 (GUICtrlCreateTreeView() steals application focus) created by tayou fabrice
The following code steals focus from the active application even …
8:09 AM Ticket #1144 (Typo in AutoIt help file (.chm)) created by anonymous
Found a typo in the following section: Function Reference > File, …
4:27 AM Ticket #1143 (Winamp cause script to fail) closed by Valik
No Bug: That's nice. Now go read WikiStart to find out why this ticket has been closed.
4:11 AM Ticket #1143 (Winamp cause script to fail) created by anonymous
My script is heavy on ControlSend items I noted today while Winamp …

Aug 20, 2009:

9:40 PM Ticket #1134 (Code cleanup of _FileWriteToLine()) updated by MrCreatoR <mscreator@…>
This function is litle bit bugy... Reproduce example: […] Here we get @error = 1, but there is 20 lines in file, yes, the lines are delimited by @LF not @CRLF, but some text editors do the same when we manualy writing lines to file, so we need to take this in count. So here is a fixed version, plus speed improvements: […]
11:05 AM Ticket #1142 (_ArraySearch return 0 (number vs string)) created by JKFN
#Include <Array.au3> Dim $array[1] $array[0]=0 …

Aug 19, 2009:

7:53 PM Ticket #1141 (@InetGetActive - @InetGetBytesRead not in au3.keyword.properties) closed by Valik
No Bug: Even though you filed this report against version 3.3.0.0 you are clearly using the 3.3.1.1 definitions for SciTE. The 3.3.1.1 version of SciTE does not contain those macros, which is correct. I suggest using the 3.3.0.0 definitions if you really are using the 3.3.0.0 version of AutoIt. However, if you are using 3.3.1.1 version of AutoIt, then read the changelog.
6:21 PM Ticket #1141 (@InetGetActive - @InetGetBytesRead not in au3.keyword.properties) created by cramaboule
Hello all, Those '@InetGetActive' and '@InetGetBytesRead' are not in …
12:22 PM Ticket #1140 (_ArraySearch return 0 (if $avArray is not a 1 dimensional array)) created by JKFN
WRONG: If UBound($avArray, 0) > 2 Or UBound($avArray, 0) < 1 Then …
5:59 AM Ticket #1139 (Run filename plus path) updated by bo8ster
Since notepad.exe is on the system path, it is always going to work. Adding the following examples may help understanding […]
4:00 AM Ticket #1139 (Run filename plus path) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
2:21 AM Ticket #1139 (Run filename plus path) created by Richard Robertson <icekirby1@…>
The help pages for Run, RunWait, RunAs and RunAsWait functions could …
2:14 AM Ticket #1033 (UDF's missing @error checks after DLLCalls()) updated by Valik
What the fuck does any of that have to do with this ticket? It has nothing to do with this ticket, that's what. Post on the support forum next time and read WikiStart before you attempt to use the issue tracker again.
1:13 AM Ticket #1033 (UDF's missing @error checks after DLLCalls()) updated by anonymous
these were the rest of the calls at the end of the program. the purpose of the code was to prevent multiple instances of the program from running. however, this part of the code may not be necessary. apparently the NSIS code does not call CloseHandle for some reason, and I do not know what the upshot of this is. while 1 Case $MSG==$GUI_EVENT_CLOSE ;$result = DllCall("kernel32.dll", "int", "ReleaseMutex" & $kernelfunctioncalltype, "ptr", $hmutex) ;if @error<>0 then ; ;do something ;endif $result = DllCall("kernel32.dll", "int", "CloseHandle" & $kernelfunctioncalltype, "ptr", $hmutex) if @error<>0 then ;do something endif Exit
12:48 AM Ticket #1033 (UDF's missing @error checks after DLLCalls()) updated by jmichae3@…
I am trying to make kernel32.dll calls to CreateMutex() (CreateMutexA or CreateMutexU) but no matter what I do instead of getting a HANDLE back (used hwnd) I always get an emoty string for a result. should be getting 0 or NULL or a pointer value. so I tried returning a pointer, which is, after all, what a HANDLE is defined as in VC++. same result. this function works in NSIS but fails totally to work in auto-it3. #include <GUIConstants.au3> $kernelfunctioncalltype="" ;"A" or "W" or "" $hmutex=0; ;-----code to prevent multiple instances. doesn't seem to work. ;-----NSIS code: System::Call 'kernel32::CreateMutexA(i 0, i 0, t "mutex-phonelistGUI-3.0-1.0") i .r1 ?e' $hmutex = DllCall("kernel32.dll", "ptr", "CreateMutex" & $kernelfunctioncalltype, "ptr", 0x00000000, "int", 0x00000000, "str", "mutexGUI-phonelist-3.0") $e=@error if 0 <> $e then msgbox(0,"error",$e) ;never pops up endif If 0==$hmutex OR ""==$hmutex Then ;failed to get mutex. do nothing until closing time. apparently we have succeeded ; MsgBox(0,"mutex",$hmutex) Else ;got a mutex. another instance is running, so exit. ; MsgBox(0,"mutex",$hmutex) Exit EndIf and yes, @error always is 0 no matter what kernel32.dll function I call. what's the deal with this? somebody please fix. and someone fix the variables so they can handle pointers. at least useably convert it to an int and back!

Aug 18, 2009:

5:16 PM Ticket #1138 (XML) closed by Valik
Rejected: This has been answered so many times before.
10:12 AM Ticket #1120 (Overwrite hidden system files with FileInstall()) updated by partypooper@…
FYI, FileWriteLine() works but _FileWriteToLine() doesn't.
8:18 AM Ticket #1138 (XML) created by athiwatc
XML has been a standard and I know there is a XML UDF out there. But …
3:09 AM Ticket #1136 (IsArray sets @extended=0) updated by anonymous
I very much apologise. Did not know that in each function @extended is set to 0.
2:23 AM Ticket #1137 (Change RegEnumKey/RegEnumVal error return to be more sensible.) updated by Valik
Version, Type, Summary changed
I don't think this is a bug, but I do think the behavior should be changed. Adjusting ticket to reflect a feature request.
1:46 AM Ticket #1137 (Change RegEnumKey/RegEnumVal error return to be more sensible.) created by xelotiac@…
Hello, I hope it will not be 'is a feature, not a bug' ;) Both …

Aug 17, 2009:

5:39 PM Ticket #1136 (IsArray sets @extended=0) closed by Valik
No Bug: Sigh. Why do we bother writing documentation when people don't bother reading it. Try reading the documentation for SetExtended().
5:29 PM Ticket #1136 (IsArray sets @extended=0) created by anonymous
When i use function IsArray then resets @extended. In help for IsArray …
3:36 PM Ticket #1062 (language support) closed by Valik
No Bug: Due to lack of additional information I'm closing this as no bug.
3:23 PM Ticket #1133 (NOT and Int64 numbers) closed by Valik
Duplicate: Closing as a duplicate of #767.
3:22 PM Ticket #1135 (bug with beta version about Option OnExitFunc) closed by Valik
No Bug: You don't say? Maybe you should try reading the changelog and the script-breaking changes page as well if you're going to use the beta? Otherwise, don't use the beta.
12:00 PM Ticket #1135 (bug with beta version about Option OnExitFunc) created by loulou
This instruction Opt("OnExitFunc", "EzSkinOnExitFunc") works well …
11:39 AM Ticket #1133 (NOT and Int64 numbers) updated by anonymous
yea, your right.
4:00 AM Ticket #1134 (Code cleanup of _FileWriteToLine()) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
3:14 AM Ticket #1134 (Code cleanup of _FileWriteToLine()) created by partypooper@…
Just a slight code clean-up by reducing the number of lines required …

Aug 16, 2009:

9:00 PM Ticket #1133 (NOT and Int64 numbers) updated by Ultima
That'd probably fall under the "Beter 64-bit integer support" ticket #767
12:00 AM Ticket #1133 (NOT and Int64 numbers) updated by TicketCleanup
Version changed
Automatic ticket cleanup.

Aug 15, 2009:

11:04 PM Ticket #1133 (NOT and Int64 numbers) created by anonymous
NOT only acts on 32bit part of Int64 numbers. Request to make it Int64 …
6:42 AM Ticket #1125 (StringRegExpReplace fails for case insensitive group (?i...)) updated by J-Paul Mesnage
Owner, Status changed
1:19 AM Ticket #1120 (Overwrite hidden system files with FileInstall()) updated by anonymous
Sorry, my mistake - I assumed because FileOpen() and FileMove() worked the others did too. First lesson I guess is not to assume anything. Thumbs.db is a good example of what I want overwritten when installing (re-installing) picture directories.
12:09 AM Ticket #1132 (@OSVersion Incorrect on Windows 7) closed by Valik
No Bug: AutoIt 3.3.0.0 doesn't support Windows 7 because quite obviously AutoIt 3.3.0.0 shipped before any publicly available version of Windows 7. Try the beta. ALWAYS try the beta before reporting a bug.

Aug 14, 2009:

11:54 PM Ticket #1132 (@OSVersion Incorrect on Windows 7) created by anonymous
@OSVersion reports "WIN_VISTA" when run on Windows 7. Obviously this …
10:00 PM Ticket #1131 (Integration API) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
8:42 PM Ticket #1131 (Integration API) closed by Valik
Rejected: What's stopping you from implementing something? It doesn't have to (and should not) be built in.
6:28 PM Ticket #1131 (Integration API) created by lin.yaxiong@…
It would be a great feature to provide a set of APIs to integrate …
3:54 PM Ticket #1120 (Overwrite hidden system files with FileInstall()) reopened by Valik
Replying to Jpm: > Filecopy does not work either > I will add the same remarks In that case, maybe we should reconsider. I can certainly copy SuperHidden files with stuff like Explorer. Given that the overwrite flag is being used, we should probably do the work for the user. It seems pointless to allow an overwrite flag but still make the user write additional code to ensure the overwrite happens. The same goes for FileCopy() and FileMove() as well. Also DirCopy() and DirMove() need tested to ensure the overwrite flag always overwrites when it should.
3:50 PM Ticket #1125 (StringRegExpReplace fails for case insensitive group (?i...)) updated by Valik
Replying to Jpm: > please post what is wrong in the doc if any and how you suggest to fix it I don't know that it is a documentation issue. I expect the same results martin expects. I can see no reason the pattern would behave differently. This needs more investigation to ensure there's not a PCRE bug or a bug in our implementation.
3:47 PM Ticket #1129 (StringIsXDigit is wrong return value.) closed by Valik
No Bug: The return value is correct for the current implementation. If a UNICODE character corresponds to one of the hex-digits then the return value is true.
2:49 PM Ticket #1130 ($tagNMLVKEYDOWN stuct not working in x64 OS) created by smashly66@…
$tagNMLVKEYDOWN in StructureConstants.au3 "int VKey" needs to be …
2:38 PM Ticket #1129 (StringIsXDigit is wrong return value.) updated by admin@…
and Plus. StringIsAlpha("A")
2:36 PM Ticket #1129 (StringIsXDigit is wrong return value.) created by admin@…
[…] ..? It's report - A is Hex? = 1 - A is Hex? = 1 (A -> …
7:22 AM Ticket #1125 (StringRegExpReplace fails for case insensitive group (?i...)) updated by J-Paul Mesnage
please post what is wrong in the doc if any and how you suggest to fix it
7:21 AM Ticket #1126 (ImageSearch) closed by J-Paul Mesnage
No Bug: You need to have a .dll that run under X64. As I remeber this UDF which is not delivered by AUtoIt don't have one. Next time don't use trak on subject not delivered by the AutoIt installer
6:08 AM _WinAPI_PathFindOnPath.au3 attached to Ticket #1128 by danielkza2@…
_WinAPI_PathFindOnPath
6:08 AM Ticket #1128 (UDF Addition: _WinAPI_PathFindOnPath) created by danielkza2@…
Proposal for inclusion of aforementioned function in the standard UDF …

Aug 13, 2009:

11:56 PM Ticket #1127 (Implement a new function : StdOutReadLine) updated by Valik
Hmm.
9:56 PM Ticket #1127 (Implement a new function : StdOutReadLine) created by i-love-autoit@…
Hi there, I would like to see a new function in AutoIT : …
4:04 PM Ticket #1126 (ImageSearch) created by anonymous
[…] this is the error im getting if i launch my program in autoit …
8:29 AM Ticket #1125 (StringRegExpReplace fails for case insensitive group (?i...)) created by martin
This example […] gives this result […] I think Result 2 should …
6:29 AM Ticket #1120 (Overwrite hidden system files with FileInstall()) updated by J-Paul Mesnage
Filecopy does not work either I will add the same remarks

Aug 12, 2009:

6:25 PM Ticket #1124 (_Date_Time_SystemTimeTo*Str() Errors with bFmt = 1) created by wraithdu
Both the _Date_Time_SystemTimeToDateTimeStr() and …
8:27 AM Ticket #1120 (Overwrite hidden system files with FileInstall()) updated by partypooper@…
User files can be system and/or hidden, not just archive and read-only. I was just thinking that since the other File...() commands all work with +HS so why not FileInstall(). No biggy, it's a simple matter to delete the file first before using fileinstall and then changing the attributes to +HS. As a compromise, can we get a footnote added to the FileInstall section of the help file that the overwrite function doesn't work for +HS attributed files then.

Aug 11, 2009:

10:11 PM Ticket #1120 (Overwrite hidden system files with FileInstall()) closed by Valik
Rejected: I agree.
9:51 PM Ticket #1120 (Overwrite hidden system files with FileInstall()) updated by J-Paul Mesnage
Fileinstall is design to install user files. For me that means normal file. If the user when something more complicated it is up to his script to take care. For me such feature will not be accepted.
9:46 PM Ticket #1122 (_MathCheckDiv. No error return value.) closed by J-Paul Mesnage
Fixed: In fact it is already fix for next beta
9:45 PM Ticket #1122 (_MathCheckDiv. No error return value.) updated by J-Paul Mesnage
no reason that will have avoid the bug …
9:43 PM Ticket #1123 (SetError(), SetExtended(), default return value.) updated by J-Paul Mesnage
Just read the Functions Notes […]
9:35 PM Ticket #1123 (SetError(), SetExtended(), default return value.) closed by Valik
No Bug: Replying to anonymous: > Documentation for both SetError and SetExtended() 'Return Value' say "By default, none, ...". > Assuming "none" stands for or just zero. > > But both return 1 when used without a Return value. > > {{{ > ConsoleWrite('SetError(2) = ' & SetError(1) & @CRLF) > ConsoleWrite('SetExtended(2) = ' & SetExtended(1) & @CRLF) > }}} > It means there is no documented return value unless one is explicitly set. > ps: A additional remark to SetExtended() about the fact that it not just sets @extended, but also resets @error back to zero, might be usefull. Every single function resets @error when it's called. There are no exceptions. That is a documented feature. Also documented is that SetExtended() should only be used if its only necessary to set @extended. Otherwise SetError(<error>, [extended]) should be used. In other words, nothing to see here.
7:40 PM Ticket #1123 (SetError(), SetExtended(), default return value.) created by anonymous
Documentation for both SetError and SetExtended() 'Return Value' say …
5:57 PM Ticket #1122 (_MathCheckDiv. No error return value.) created by anonymous
Is using SetError(1) after Return. They need to be swapped. […] ps: …
3:33 PM Ticket #1121 (uninstall, beta, file FTPEx.au3 still standing.) closed by J-Paul Mesnage
Fixed: Thanks already fix for next beta
6:42 AM Ticket #1112 (Add _WinAPI_SetCheckMethod() and modify _WinAPI_Check()) updated by anonymous
This cuts both ways. On the one hand _WinAPI_Check() is not needed. The user is able to identify the error. On the other hand removal of this functions may lead to incompatibility in the "old programs" or to more serious mistakes.
4:01 AM Ticket #1121 (uninstall, beta, file FTPEx.au3 still standing.) created by anonymous
beta include file FTPEx.au3 was not uninstalled. It still had its …

Aug 10, 2009:

6:00 PM Ticket #1120 (Overwrite hidden system files with FileInstall()) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
4:04 PM Ticket #1120 (Overwrite hidden system files with FileInstall()) created by partypooper@…
FileInstall should to be able to overwrite files with +HS attributes …
3:35 PM Ticket #1119 (Minor change to Help File wording for FileWrite) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.3.1.2

Aug 9, 2009:

6:00 PM Tickets #1118,​1119 batch updated by TicketCleanup
Version changed
Automatic ticket cleanup.
5:38 PM Ticket #1119 (Minor change to Help File wording for FileWrite) created by partypooper@…
Even though they are functionally similar, there is a difference …
5:15 PM Ticket #1118 (Change to _ArrayConcatenate) created by partypooper@…
I'd like to request a change to _ArrayConcatenate. Specifically, I'd …

Aug 8, 2009:

4:56 PM Ticket #1116 (GUICtrlCreateGraphic not obeying GUIResizeMode) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.3.1.2
4:48 AM Ticket #1117 (_excelwriteformula quotes - possible bug) updated by Valik
If we wanted to track bugs on the forum we would still be using the forum. Either post additional information to complete this bug report (See WikiStart) within the next 48 hours or I'm closing this ticket.

Aug 7, 2009:

9:06 PM Ticket #1117 (_excelwriteformula quotes - possible bug) created by Jfish
I searched for a bug on _excelwriteformula but did not see one. I am …
6:00 PM Ticket #1095 (tidy indent with $var_ exception.) updated by TicketCleanup
Milestone changed
Automatic ticket cleanup.
5:21 PM Ticket #1095 (tidy indent with $var_ exception.) closed by Jos
Fixed: Fixed in current Beta v 2.0.28.6 of Tidy.
4:29 PM Ticket #1095 (tidy indent with $var_ exception.) updated by Valik
Description changed
4:21 PM Tickets #1089,​1090,​1095,​1107 batch updated by TicketCleanup
Version, Milestone changed
Automatic ticket cleanup.
4:19 PM Ticket #1112 (Add _WinAPI_SetCheckMethod() and modify _WinAPI_Check()) updated by Valik
Version, Milestone changed
4:18 PM Ticket #1112 (Add _WinAPI_SetCheckMethod() and modify _WinAPI_Check()) reopened by Valik
I'm not sure why you closed this ticket, JP. You are still using __WinAPI_Check() all over the place in the code. The function itself is still in the code. In other words, this ticket is not complete because my statement of "all non-fatal fatal errors are going to be removed from the language" isn't even remotely close to being true. I'm re-opening this ticket until it's actually complete.
1:30 PM Ticket #1113 (Can't use _ to ignore an empty line (using for array initialization)) updated by danielkza
No problem if this is intended behavior. Wasn't sure if it was a parser quirk or a bug. The (ugly) workaround I found was putting the comma in the empty line, removing it from the previous one. Thanks anyway.
1:32 AM Ticket #1116 (GUICtrlCreateGraphic not obeying GUIResizeMode) created by anonymous
GUICtrlCreateGraphic is not obeying AutoItSetOption("GUIResizeMode", …
12:39 AM Ticket #1114 (_ArrayDisplay() not honouring Opt("GUIDataSeparatorChar",...)) updated by partypooper@…
Yes, my mistake JPM, it DOES work under current beta 3.3.1.1 but NOT for the current production 3.3.0.0.

Aug 6, 2009:

11:07 PM Ticket #1112 (Add _WinAPI_SetCheckMethod() and modify _WinAPI_Check()) closed by J-Paul Mesnage
Fixed
11:02 PM Ticket #1114 (_ArrayDisplay() not honouring Opt("GUIDataSeparatorChar",...)) closed by J-Paul Mesnage
Works For Me: Working for me as fixed in the current beta. It was not working under 3.3.0.0
6:41 PM Ticket #1115 (documentation for GuiCreate error) closed by Valik
No Bug: The documentation is correct. You're making the assumption (a reasonable assumption!) that things work like MSDN describes. Unfortunately somebody decided that it would be a good idea to overload that particular extended style to provide some custom behavior hard-coded into AutoIt. In other words, it works as our documentation describes due to a poor design decision.
6:07 PM Ticket #1115 (documentation for GuiCreate error) created by martin
The help says […] This is not correct, or at least it is not …
4:38 PM Ticket #1113 (Can't use _ to ignore an empty line (using for array initialization)) closed by Valik
Wont Fix: I'm closing this as won't fix because I don't think this behavior needs changed. Simple solution? Don't try to include blank lines when using line continuation.
12:42 PM Ticket #1114 (_ArrayDisplay() not honouring Opt("GUIDataSeparatorChar",...)) created by partypooper@…
[…] Should produce: [0] = 4 [1] = ABCDE|FGHI [2] = JKL|MNO [3] = …
12:36 PM Ticket #1113 (Can't use _ to ignore an empty line (using for array initialization)) created by danielkza
Trying to use '_', only followed by whitespace (separating a part of …
10:18 AM Ticket #1110 (AutoIt Doc : Error in syntax description for _INetSmtpMail) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.3.1.2
1:32 AM Ticket #1112 (Add _WinAPI_SetCheckMethod() and modify _WinAPI_Check()) updated by Valik
Most, if not all of these errors are already removed in the next beta. In the future (before the next stable release, so sometime in the beta period) all non-fatal fatal errors are going to be removed from the language.
1:30 AM Ticket #1111 (Typo in _DateAdd remarks) closed by Valik
Fixed: Fixed in version: 3.3.1.2
1:22 AM SetCheckMethod.au3.txt attached to Ticket #1112 by Yashied
The necessary variables and functions
1:18 AM Ticket #1112 (Add _WinAPI_SetCheckMethod() and modify _WinAPI_Check()) created by Yashied
A lot of people "suffer" when using _WinAPI_... functions which …
1:04 AM Ticket #1111 (Typo in _DateAdd remarks) created by a.very.loud.noise@…
Currently reads "When 3 months is are to '2004/1/31' then the result …
12:23 AM Ticket #1107 (Ability to sort hexadecimal numbers using in a Listview) updated by anonymous
Ahh Ok, I see what you guys mean. GUICtrlRegisterListViewSort() is a little more work than the _GUICtrlListView_SortItems() I was using but I'll give it a go. Thanks.

Aug 5, 2009:

10:20 PM Ticket #1110 (AutoIt Doc : Error in syntax description for _INetSmtpMail) created by anonymous
[[Image(http://www.autoitscript.fr/forum/download/file.php?id=624&mode=
10:17 PM Ticket #981 (_WinAPI_AnsiToOem + _WinAPI_OemToAnsi) closed by J-Paul Mesnage
Completed: Added in version: 3.3.1.2
10:14 PM Ticket #981 (_WinAPI_AnsiToOem + _WinAPI_OemToAnsi) updated by J-Paul Mesnage
I update the functions _WinAPI_WideCharToMultiByte() and _WinAPI_MultiByteToWideChar() to support "string" or struct as input and a new optional can force the return in a "string"
9:56 PM Ticket #1107 (Ability to sort hexadecimal numbers using in a Listview) updated by J-Paul Mesnage
Just do inside LVSort the right comparison after the conversion you want. For me there is really no BUG with this GUICtrlRegisterListViewSort() which allow you to take in account the data as you want
9:40 PM Ticket #1077 (GUICtrlSetBkColor excessive recoloring == faulty coloring, and strange ...) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.3.1.2
4:17 PM Ticket #1109 (I cannot double click on the list box located on window) closed by Valik
No Bug: Read WikiStart.
9:52 AM Ticket #1109 (I cannot double click on the list box located on window) created by hari.subramanyam07@…
Hi, i want to click on the list box window using autoit, i have given …
7:25 AM Ticket #1024 (GUICtrlSetTip for tabitems sets incorrectly in certain situations) updated by J-Paul Mesnage
Owner, Status changed
7:23 AM Ticket #1086 (Remove limit on number of files that can be opened.) updated by J-Paul Mesnage
Owner, Status changed
5:42 AM Ticket #865 (winhttp.winhttprequest.5.1 ObjEvent unhandled exception.) updated by J-Paul Mesnage
Owner changed
4:36 AM Ticket #1107 (Ability to sort hexadecimal numbers using in a Listview) updated by partypooper@…
Here's an example using GUICtrlRegisterListViewSort failing to sort hex correctly. 12345678 should always be between 104a76e3 and 1a34f478 regardless of which way it is sorted. […] Be nice if it had an option to sort either alphabetically (which is does by default I believe) or numerically.
3:45 AM Ticket #1107 (Ability to sort hexadecimal numbers using in a Listview) updated by anonymous
Gary, the Help file doesn't list a "GUICtrlRegisterListView" command, only a "GUICtrlRegisterListViewSort" command. Did you mean that one? Currently, I call the following on a list view sort: _GUICtrlListView_RegisterSortCallBack($h_ListLV) _GUICtrlListView_SortItems($h_CheaterLV, GUICtrlGetState($h_ListLV)) _GUICtrlListView_UnRegisterSortCallBack($h_ListLV)

Aug 4, 2009:

9:04 PM Ticket #1107 (Ability to sort hexadecimal numbers using in a Listview) closed by Gary
Rejected: Learn how to use GUICtrlRegisterListView rather than a standard sort.
4:19 PM Ticket #1085 (General timer descrepancies) updated by J-Paul Mesnage
Not sure to understand what can be done in this subject. Do we need to support HW which does not report the high precision counters with correct value? Do we need to force running the AutoIt process on only one processor to have the high precision counter better in multiprocessor system?
4:13 PM Ticket #1107 (Ability to sort hexadecimal numbers using in a Listview) updated by J-Paul Mesnage
can you post a complete repro script as suggested by the writring of a track report? Thanks
4:10 PM Ticket #1108 (Compiling Error) closed by J-Paul Mesnage
No Bug: did you ever try to run it without compile it. $SS_SIMPLE not defined. Compiler does not check if a script can be run . In your case the SciTE check syntax will tell you the error
12:15 PM IPChangerV2.x.au3 attached to Ticket #1108 by anonymous
12:14 PM Ticket #1108 (Compiling Error) created by lilin_318@…
I try to compile the attachment file of my script and it is successful …
10:37 AM Ticket #1107 (Ability to sort hexadecimal numbers using in a Listview) created by partypooper@…
I've looked in the helpfile but there doesn't seem to be a way to sort …

Aug 3, 2009:

6:38 PM Ticket #1105 (Vertical Button, Double Label When Disabled) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.3.1.2
11:09 AM Ticket #1106 (ListView with $WS_EX_STATICEDGE Under Vista no text) closed by J-Paul Mesnage
Wont Fix: Definitely Vista does not accept to set the data windows return and error so the listviewitem is not created as you can see if you check the creation result.
11:05 AM Ticket #1104 (Scientific number, addition failer. (x>2^53)) closed by J-Paul Mesnage
No Bug: No bug, you cannot assume that the precision of a Float number to integer can take in account number that have around 15 digits precision. in this particular case compare to 249 the precision rounding take place at a different place.
11:02 AM Ticket #1103 (Scientific convertion to integer adding +1. (x>=2^49)) closed by J-Paul Mesnage
No Bug: No bug, you cannot assume that the precision of a Float number to integer can take in account number that have around 15 digits precision.
10:57 AM Ticket #1106 (ListView with $WS_EX_STATICEDGE Under Vista no text) created by anonymous
I run XP but as i tested my code on Vista i noticed the extended style …
3:07 AM Ticket #1105 (Vertical Button, Double Label When Disabled) created by anonymous
Version 3.3.0.0 When "$BS_MULTILINE" is assigned to a button, and the …

Aug 2, 2009:

6:12 PM Ticket #1104 (Scientific number, addition failer. (x>2^53)) created by anonymous
[…]
5:49 PM Ticket #1103 (Scientific convertion to integer adding +1. (x>=2^49)) created by anonymous
[…]
1:32 PM Ticket #1079 (GUICtrlSetFont Docs incomplete and / or incorrect.) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.3.1.2
1:29 PM Ticket #1079 (GUICtrlSetFont Docs incomplete and / or incorrect.) updated by J-Paul Mesnage
In fact this Quality parameter was introduce as the last parameter we will add. doc will be updated Sorry for the wrong answer ;)
1:28 PM Ticket #1079 (GUICtrlSetFont Docs incomplete and / or incorrect.) reopened by J-Paul Mesnage

Jul 31, 2009:

1:00 PM Ticket #383 (Include A3X file as a script) updated by anonymous
is doing?
12:49 PM Ticket #1096 (MouseMove() Function) updated by aSigN
Replying to Valik: > 1. Call MouseGetPos(). > 1. Offset the position by whatever you want. > 1. Call MouseMove() with the new coordinates calculated in step 2. > > We really don't need to make a built-in function to do something you can do in two additional steps (or none if you wrap the code in a function). As I Said MouseMove() can't be use in fps game
9:07 AM Ticket #1102 (Doc, StringInStr, count.) created by anonymous
"count [optional] The number of comparisons to make." Kinda read as, …
6:39 AM Ticket #1101 (Docs for _NowTime need to be fixed) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.3.1.2
2:18 AM Ticket #505 (_GUICtrlStatusBar_SetBkColor doesn't work) updated by partypooper@…
Can we have a footnote in the Helpfile about turning off XP themes in order to get this to work as I was about to open another ticket until I did saw this. BTW, what about Vista/2000/Win7 etc., - are they effected as well?
1:56 AM Ticket #1101 (Docs for _NowTime need to be fixed) created by danullman@…
Mild change needed to the help files. In the _NowTime help section it …
12:40 AM Ticket #1100 (ControlCommand not getting state of check box in .NET controls) closed by Valik
No Bug: This is not the support forum. Go read WikiStart to learn how to use the issue tracker. Otherwise post on the forum.
12:13 AM Ticket #1100 (ControlCommand not getting state of check box in .NET controls) created by anonymous
The ClassnameNN looks like this - WindowsForms10.BUTTON.app225. I am …

Jul 30, 2009:

4:31 PM Ticket #1099 (The GUICtrlSetPos() function redraws each draw when moving a graphic) closed by J-Paul Mesnage
No Bug: You are creating too many drawing as you always add. Just recreate the drawing in your adlib.
3:16 PM Ticket #1099 (The GUICtrlSetPos() function redraws each draw when moving a graphic) updated by ankitstr
I am having this problem and can't continue with my project as the project requires constant updating and moving of a number of graphics, hence, taking up all the CPU, gradually slowing down the graphics and finally, stopping.
3:11 PM Ticket #1099 (The GUICtrlSetPos() function redraws each draw when moving a graphic) created by anonymous
The GUICtrlSetPos() function redraws each drawn line,etc. when moving …
12:31 PM Ticket #1062 (language support) updated by J-Paul Mesnage
Replying to xyz33: > GUICtrlCreateTreeViewItem doesn't support korean language Can you follow the Valik request to document your request? You need to describe the way to reproduce with at least a small script. AutoIT support Unicode so there may be no problem.
10:57 AM Ticket #1074 (InputBox left positional reference not working correctly) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.3.1.2
9:59 AM Ticket #998 (@VirtualDesktopWidth + @VirtualDesktopHeight + @DesktopMonitors) updated by J-Paul Mesnage
Those macroes cannot be a good way to validate the positionning of a windows as multiple windows can have different size. I will suggest we add a new function that can validate if x,y,w,h windows can be displayed

Jul 29, 2009:

10:45 PM Ticket #1094 (Left Shift stays down) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.3.1.2
7:04 PM Ticket #1098 (Case logical bug) closed by Valik
No Bug: It's not a bug. The string "abc" is promoted to a number. The number its promoted to is 0 because the string does not contain digits. Thus 0 is compared to 0 which is true.
6:38 PM Ticket #1098 (Case logical bug) created by raphaelpereira.itpro@…
("abc" = 0) IS TRUE IN: Select Case "abc" = 0 MsgBox(0, "test1", …
5:56 PM Ticket #1097 (Strange behavior with MSXML (COM)) closed by Valik
Rejected: Replying to spyro2000: > please see this thread for details and a sample file No. If an issue is not important enough for you to bother summarizing it's not important enough for us to spend time on. See WikiStart for information on correctly submitting a bug report. If you wish to correct this bug report then post additional information. DO NOT CREATE A NEW TICKET. Closing (for now) as rejected because it may or may not be a bug. But it's not important enough to the issuer to tell us about so it's not important enough for me to bother checking.
5:53 PM Ticket #1096 (MouseMove() Function) closed by Valik
Rejected: 1. Call MouseGetPos(). 1. Offset the position by whatever you want. 1. Call MouseMove() with the new coordinates calculated in step 2. We really don't need to make a built-in function to do something you can do in two additional steps (or none if you wrap the code in a function).
5:01 PM Ticket #1056 (InetGet rundll32.exe error on Vista / Windows 7 on "Screen-saver" desktop) updated by J-Paul Mesnage
Owner, Status changed
3:00 PM Ticket #1097 (Strange behavior with MSXML (COM)) created by spyro2000
Hi there, please see this thread for details and a sample file: …
12:52 PM Ticket #1096 (MouseMove() Function) created by aSigN
In a lot of fps game the mouse are centerd all the time. When I set it …
10:29 AM Ticket #1093 (StringFormat not work with non-latin symbols in format string) updated by J-Paul Mesnage
Owner, Status changed
10:28 AM Ticket #1080 (InetGet doesn't return immediately for a background download) updated by J-Paul Mesnage
Owner, Status changed
10:25 AM Ticket #1095 (tidy indent with $var_ exception.) created by anonymous
tidy 2.0.28.3, 2.0.28.4 […]
10:24 AM Ticket #1059 (Incorrect error handling in _FileListToArray()) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.3.1.2

Jul 28, 2009:

8:56 PM Ticket #1094 (Left Shift stays down) created by nick.weltha@…
Is there any way to force all keys up? Preferably through some sort of …
5:09 PM Ticket #1090 (trivial artifact, persistand tidy error message line.) closed by Jos
Fixed: Fixed in current beta version of Tidy v 2.0.28.4 Thanks, Jos
5:07 PM Ticket #1092 (_Timer_SetTimer, Kill datatype discrepancies) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.3.1.2
5:06 PM Ticket #1089 (#AutoIt3Wrapper_Run_Tidy=y, tidy also activated at run-script instant.) closed by Jos
No Bug: It is the default behavior. Jos
12:45 PM Ticket #1093 (StringFormat not work with non-latin symbols in format string) created by Lazycat
Just discovered, that StringFormat stops to work when in format string …
9:56 AM Ticket #1087 (CheckBox on TabItem, CheckBox text.) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.3.1.2
4:58 AM Ticket #1092 (_Timer_SetTimer, Kill datatype discrepancies) updated by Ascend4nt
yup, just checked - the type definitions are wrong in the Beta too

Jul 27, 2009:

10:25 PM Ticket #1092 (_Timer_SetTimer, Kill datatype discrepancies) updated by Valik
Have you checked the beta version? Don't report bugs against 3.3.0.0 because it may be fixed in the beta.
10:06 PM Ticket #1092 (_Timer_SetTimer, Kill datatype discrepancies) created by Ascend4nt
The functions _Timer_SetTimer(), _Timer_KillTimer, and …
4:44 PM Ticket #1091 (Request: Packet Send & Packet Catching) closed by Valik
Rejected: How is this in any way shape or form a "bug"? It's nothing more than a bad feature request. Closing as rejected, it's not going to happen.
3:44 PM Ticket #1089 (#AutoIt3Wrapper_Run_Tidy=y, tidy also activated at run-script instant.) updated by anonymous
I Figured it was not default behavior because: 1) The Scite side effect of a document-reload/revert after running tidy. loosing the documents current folding status. +) #AutoIt3Wrapper_Run_Tidy was added after changing the compile-settings,(ctrl-f7). +) Reading 'compilation' in help as. only when you compile or build a exe or au3 file. Think if Tidy was mentioned in the 'AutoIt3Wrapper will perform the following tasks for you when wrapping AutoIt3 (Run):' section in the AutoIt3Wrapper help. I probably just would have disabled the '*_run_tidy' line and taking it as intended behavior.
2:27 PM Ticket #228 (Parse and write XML) updated by anonymous
Yeah, but it becomes very bloated with those UDF's. I don't think its unreasonable to wish for it to be a core function.
10:58 AM Ticket #1090 (trivial artifact, persistand tidy error message line.) updated by Jos
Status changed
10:55 AM Ticket #1089 (#AutoIt3Wrapper_Run_Tidy=y, tidy also activated at run-script instant.) updated by Jos
Correct, that is the way it is supposed to work. So what do you think the bug is in this case? Jos
10:22 AM Ticket #1091 (Request: Packet Send & Packet Catching) created by Orgasim
I was wondering if there is a way to catch, read, and reply to packets …
9:45 AM Ticket #1074 (InputBox left positional reference not working correctly) updated by partypooper@…
Forgot to add, that no matter what negative value I use for the 'left' positional reference, the inputbox always defaults to -765 according to AU3Info.

Jul 26, 2009:

11:35 PM Ticket #1090 (trivial artifact, persistand tidy error message line.) created by anonymous
when a tidy error message line ends up on the same line as the last …
11:06 PM Ticket #1089 (#AutoIt3Wrapper_Run_Tidy=y, tidy also activated at run-script instant.) created by anonymous
when the line '#AutoIt3Wrapper_Run_Tidy=y' is added to a script. Tidy …

Jul 25, 2009:

9:30 AM Ticket #1075 (scite4utoit beta help activation.) updated by Jos
Post your questions in the forum and I will work with you to see if we can sort things out. Jos
1:14 AM Ticket #1088 (GuiCtrlSetOnEvent - Easier Event handling) closed by Valik
Rejected: You must use GUIRegisterEvent() if you want more fine-grained control. There are no plans to extend the current behavior further.

Jul 24, 2009:

10:26 PM Ticket #1088 (GuiCtrlSetOnEvent - Easier Event handling) created by Bitboy
Maybe you can upgrade the function to something like this: …
6:47 PM Ticket #1087 (CheckBox on TabItem, CheckBox text.) created by anonymous
Moving the mouse over a CheckBox-control thats inside a Tab-Control, …
11:05 AM Ticket #1075 (scite4utoit beta help activation.) updated by anonymous
ignore [ALT-F1] comment, as it also happens with both menu links to beta-help. I used process-monitor to see if that would shed some light on this local problem. Looks like help is started, but also closes down again on its own. Q: is there any info on what might trigger help to close down on its own directly after being started.
7:32 AM Ticket #1079 (GUICtrlSetFont Docs incomplete and / or incorrect.) updated by GEOSoft
Replying to Jpm: > It is a design decision to expose only some font attributes. Quality was excluded. > For the Franglish that I certainly wrote I will correct the doc as suggested. Not sure I understand here. Is the Quality parameter being removed? I did discover that the default quality is 2 which would indicate that we are looking at a numeric range but I've been unable to find out what that range is.

Jul 23, 2009:

5:37 PM Ticket #1086 (Remove limit on number of files that can be opened.) updated by Valik
Version, Description, Summary changed
I'm simply going out on a limb here and assuming, based on your absolutely terrible feature request, that you are bumping into AutoIt's limit for open file handles. As such, I'm rewriting the ticket completely to... actually be useful rather than the garbage you tried to post. Go read WikiStart and maybe put some thought into tickets in the future.
1:40 PM Ticket #1086 (Remove limit on number of files that can be opened.) created by anonymous
Change the internal limit for number of simultaneous open files so …
Note: See TracTimeline for information about the timeline view.