Timeline



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 …

Jul 22, 2009:

8:38 PM Ticket #1080 (InetGet doesn't return immediately for a background download) updated by bjashepherd@…
No need to be rude. The point I was trying to make is that the Help file says that the function returns immediately if you set background=1. That's not my experience. (The help doesn't mention anything about 'establishing a connection', I thought it was probably something like that though.) I thought by "as written" you meant "as written in the documentation". No arrogance intended on my part - sorry if it came across badly. Like I say, I appreciate that you're busy and I do think that you're doing a fantastic job on AutoIt. ben
8:27 PM Ticket #1085 (General timer descrepancies) updated by Valik
Sorry doesn't put all this crap into the old ticket where it belongs.
8:05 PM Ticket #1085 (General timer descrepancies) updated by Zoster
PS Before Valik tears me a new one: I'm sorry for opening a new ticket.
7:41 PM Ticket #1085 (General timer descrepancies) created by Zoster
In continuation of #1082: Well I certainly believe that it works for …
7:34 PM Ticket #1083 (ClipPut Function bug or limitation-from ticket 1043) updated by Ricky Valdivia <sistemas@…>
Replying to Valik: You are wright! Sorry, my mistake.
6:56 PM Ticket #1083 (ClipPut Function bug or limitation-from ticket 1043) updated by Valik
Owner, Component, Description changed
6:54 PM Ticket #1082 (TimerDiff results in negative values and resets.) closed by Valik
Works For Me: Closing as works for me.
6:51 PM Ticket #1060 (Run return 0, but failed) updated by Valik
Replying to Ricky Valdivia <sistemas@…>: > I have the same problem, please take a look to ticket 1083 and 1043!!! > > regards Do not shill for other tickets.
6:51 PM Ticket #1081 (Consider this code for include: waiting for the clipboard to fill.) closed by Valik
Rejected: I agree that this doesn't really fit.
6:49 PM Ticket #1084 (Setting for mouse default speed) closed by Valik
Rejected: Closing useless feature requests is also a PITA. Especially when I can think of a trivial solution to the problem.
6:48 PM Ticket #1083 (ClipPut Function bug or limitation-from ticket 1043) updated by Valik
Replying to sistemas@…: > I try to reopen the Ticket 1043 but I can't, so I create a new one. I guess you're too stupid to realize you can still add comments to a closed ticket? Go read WikiStart. Now, before you even bother replying. It's perfectly clear you haven't read it because you've done a number of very annoying things that are covered by WikiStart.
6:20 PM Ticket #1083 (ClipPut Function bug or limitation-from ticket 1043) updated by Ricky Valdivia <sistemas@…>
Repeating the test: 1.) Copy to the clipboard the content of the example above (sTexto.value="Descripcion...") 2.) Running again Clip.ClipPut(Clip.ClipGet) flush/empty the clipboard again.
6:04 PM Ticket #1083 (ClipPut Function bug or limitation-from ticket 1043) updated by Ricky Valdivia <sistemas@…>
I really believe it's a unicode problem or definition type of the variables in AutoItX.dll I test this: 1.) Run CLIPBRD.exe to see the clipboard in live. 2.) copy a lot of plain text to the clipboard, about 3000 chars. 3.) in debugging mode, test this sentence: Clip.ClipPut(Clip.ClipGet) after that, the first 4 characters of the clipboard was replaced with this Unicode characters: chrW(376)+chrW(2751)+chrW(376)+chrW(2751)+[rest of the clipboard] in OEM Text this is similar to this: chr(159)+chr(63)+chr(159)+chr(63)+[rest of the clipboard] This is very strange, but I think is useful to detect the failure.
5:40 PM Ticket #1060 (Run return 0, but failed) updated by Ricky Valdivia <sistemas@…>
I have the same problem, please take a look to ticket 1083 and 1043!!! regards
5:37 PM Ticket #1083 (ClipPut Function bug or limitation-from ticket 1043) updated by Ricky Valdivia <sistemas@…>
Perhaps the problem is the regional settings or unicode. I use Spanish-Argentina for all, including non-unicode. Wrong component selected in the ticket!!''' == Switch to AutoItX ==
5:01 PM Ticket #1084 (Setting for mouse default speed) created by anonymous
I see settings to change click delay and drag delay but can't change …
4:16 PM Ticket #1083 (ClipPut Function bug or limitation-from ticket 1043) updated by sistemas@…
I try to reopen the Ticket 1043 but I can't, so I create a new one.
4:15 PM notepad.jpg attached to Ticket #1083 by sistemas@…
notepad++ display of the string example content
4:14 PM Ticket #1083 (ClipPut Function bug or limitation-from ticket 1043) created by sistemas@…
[from ticket 1043-more explanation] If you put more than 127 …
1:28 PM Ticket #1082 (TimerDiff results in negative values and resets.) updated by Zoster
The problem is actually reproducable with the mockup code from above which I didn't expect. The code runs fine on another machine. My main suspect has become the CPU which is a AMD Geode. From CPU-Z: CPU-Z 1.50 report file Processor(s) Number of processors 1 Number of cores 1 per processor Number of threads 1 per processor Name AMD Geode LX Code Name Castle Specification Geode(TM) Integrated Processor by AMD PCS Package Socket 481 BGU Family/Model/Stepping 5.A.2 Extended Family/Model 5.A Core Stepping Technology 0.13 um Core Speed 499.9 MHz Multiplier x Bus speed 15.0 x 33.3 MHz Rated Bus speed 66.7 MHz Instruction sets MMX (+), 3DNow! (+) L1 Data cache (per processor) 64 KBytes, 16-way set associative, 32-byte line size L1 Instruction cache (per processor) 64 KBytes, 16-way set associative, 32-byte line size L2 cache (per processor) 128 KBytes, 4-way set associative, 32-byte line size Chipset & Memory Southbridge AMD ID2090 rev. 03 Memory Type Memory Size 224 MBytes System System Manufacturer System Name System S/N Mainboard Vendor Mainboard Model AMD-GX3 BIOS Vendor Phoenix Technologies, LTD BIOS Version 6.00 PG BIOS Date 03/13/1907 Memory SPD Software Windows Version Microsoft Windows XP Professional Service Pack 3 (Build 2600) DirectX Version 9.0c
12:58 PM Ticket #1082 (TimerDiff results in negative values and resets.) created by Zoster
I'm getting strange results from TimerDiff in the following setup: …
12:04 PM Ticket #1081 (Consider this code for include: waiting for the clipboard to fill.) updated by zedna
I don't think this is elegant/usefull code which should be included as standard because there is more elegant way to do it with clipboard hook. Look at this post http://www.autoitscript.com/forum/index.php?showtopic=56158&view=findpost&p=426033

Jul 21, 2009:

5:32 PM Ticket #1080 (InetGet doesn't return immediately for a background download) updated by Valik
Replying to bjashepherd@…: > Well, I would argue that it isn't working as written. Um, excuse me, did you write the function? No, you didn't, I did. It's working as written. The download happens in the background. The connection to the server is established in the foreground. The code is written that way, the code was intentionally written that way. Irrelevant of what the documentation says. Anyway, it's a moot point. As I mentioned, I intend to change it.
1:54 PM Ticket #1068 (Wrong converting Binary to Int/Number) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.3.1.2
1:28 PM Ticket #1081 (Consider this code for include: waiting for the clipboard to fill.) created by jondemarks@…
This code block clears the clipboard and waits until it is filled …
8:38 AM Ticket #1080 (InetGet doesn't return immediately for a background download) updated by bjashepherd@…
Well, I would argue that it isn't working as written. According to the documentation, the function returns immediately if you set background = 1. For the small files I tested it on, it waits half a second before returning. Is it downloading in the foreground for small files? It would be good to mention this in the documentation if this is the case. Thanks for your time - I do appreciate you've got a lot of other things to work on. ben
12:00 AM Ticket #1079 (GUICtrlSetFont Docs incomplete and / or incorrect.) updated by TicketCleanup
Milestone changed
Automatic ticket cleanup.

Jul 20, 2009:

9:59 PM Ticket #1079 (GUICtrlSetFont Docs incomplete and / or incorrect.) closed by J-Paul Mesnage
Fixed: 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.
6:00 PM Tickets #1076,​1078 batch updated by TicketCleanup
Milestone changed
Automatic ticket cleanup.
5:12 PM Ticket #1080 (InetGet doesn't return immediately for a background download) updated by Valik
Version, Type changed
This is not a bug. It's working as written and as intended. However, I am going to change this to a feature request because I do intend to change the behavior.
4:35 PM Ticket #1078 (find skipping quote caracters.) closed by Jos
Fixed: Our merged version of SciTE 1.79 also works correctly so assume this was an issue in 1.78. Jos
4:30 PM Ticket #1076 (SciLexer.dll beta, passing EOL.) closed by Jos
Fixed: This seems to be fixed in the 1.79 version. Have copied that to the Beta directory.
2:02 PM Ticket #1080 (InetGet doesn't return immediately for a background download) created by bjashepherd@…
I have some code that loops through and downloads a series of images. …

Jul 19, 2009:

6:25 PM Ticket #1079 (GUICtrlSetFont Docs incomplete and / or incorrect.) created by GEOSoft
For GUICtrlSetFont there seems to be some inconsistency and missing …
3:00 PM Ticket #1078 (find skipping quote caracters.) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
1:32 PM Ticket #1078 (find skipping quote caracters.) created by anonymous
[…] second ' or " character in these lines are not found with …
9:01 AM Ticket #1077 (GUICtrlSetBkColor excessive recoloring == faulty coloring, and strange ...) updated by Valik
An obvious (and confirmed) GDI handle leak.
8:59 AM Ticket #1077 (GUICtrlSetBkColor excessive recoloring == faulty coloring, and strange ...) updated by Valik
Description changed
7:21 AM Neu Textdatei.txt attached to Ticket #1077 by Mulder
The script as a txt file
7:20 AM Ticket #1077 (GUICtrlSetBkColor excessive recoloring == faulty coloring, and strange ...) created by Mulder
Tested on Win2000 and XP On XP its just wrong coloring on Win2000 …

Jul 18, 2009:

8:58 PM Ticket #1075 (scite4utoit beta help activation.) updated by anonymous
[ALT-F1]? normal help has a similar issue, but only when trying to open help with [F1] for the first time while some code is selected. like 1 or more lines.
8:37 PM Ticket #1076 (SciLexer.dll beta, passing EOL.) created by anonymous
SciLexer.dll beta 11-Jul-2009 08.45. cursor ignores End.Of.Line boundary.
4:18 PM Ticket #1073 (_FileListToArray on *.lnk files) closed by Gary
Works For Me: Works for me on XP Pro SP3 in both Release and beta.
3:40 PM Ticket #1075 (scite4utoit beta help activation.) closed by Gary
Works For Me: Works for me. Make sure you have a file with the extension .au3 open.
11:00 AM Ticket #1075 (scite4utoit beta help activation.) created by anonymous
scite4autoit beta help fail to open when, for example, the cursor is …
7:48 AM Ticket #1074 (InputBox left positional reference not working correctly) created by partypooper@…
Setting the 'left' reference option to a negative number (as used with …

Jul 17, 2009:

9:20 PM Ticket #1066 (filewrite() not working in mode 16(BinaryMode).) updated by mvgulik
Yea I get it now. Thanks for clearing things up.
5:13 PM Ticket #1066 (filewrite() not working in mode 16(BinaryMode).) updated by Valik
Jesus fucking Christ you're being stupid. I said the FileSetPos() function was not broke because its not. I said there is a bug somewhere else in our FileOpen() code. So let's think about that for three fucking seconds: Developer said there's a bug. Oh, maybe THERE'S A MOTHERFUCKING BUG IN THE CODE. Do you get it now? Something is broke. That something is not FileSetPos(). But, something is broke none-the-less. So how about we wait until the bug is fixed before we go making stupid feature requests that make no sense anyway? Seriously, why would FileSetPos() not support a particular mode unless there was a bug somewhere (and that a developer acknowledged)? I'm going to advise you to drop this now. A little bit of stopping and thinking would have saved you a hell of a lot of flaming. I don't take well to being flat out ignored and so the lesson you need to learn is when I say something don't ignore it.
4:59 PM Ticket #1073 (_FileListToArray on *.lnk files) updated by anonymous
Replying to anonymous: > _FileFindNextFile in 3.3.1.1 returns these files properly. I guess this might be an error though, in FileGetAttrib()…
3:12 PM Ticket #1073 (_FileListToArray on *.lnk files) updated by anonymous
_FileFindNextFile in 3.3.1.1 returns these files properly.
11:26 AM Ticket #1066 (filewrite() not working in mode 16(BinaryMode).) updated by mvgulik
Funny, I can't see any problem with FileSetPos either. Other than having used that word again in ticket #1071 to state something that to me seems like a obvious intended behavior related to the fileOpen-append mode. O well. lets try something else. Can I ask what it is you think that I reported in this report ticket. and what it is you think that I requested in ticket #1071.
10:57 AM Ticket #1073 (_FileListToArray on *.lnk files) created by michael.klinteberg@…
_FileListToArray return *.lnk files as folders if the link point to a …
6:01 AM Ticket #1072 (DirCreate) closed by Valik
No Bug
5:20 AM Ticket #1072 (DirCreate) updated by anonymous
nevermind my goof.. please disregard my apologies
5:16 AM Ticket #1072 (DirCreate) created by gcue
DirCreate("F:\Tools") ;DirCreate("C:\Tools") works on a hard drive …

Jul 16, 2009:

5:20 PM Ticket #1070 (Adlib Suggestion) closed by Valik
Rejected: In Beta 3.3.1.2 there will be a way to unregister all Adlib functions with the code: […] It is not possible to use a string such as "All" because there could be a function named "All". You can easily write your own loop to register functions from an array: […] The functions AdlibEnable() and AdlibDisable() will be removed from the language and should not be used. Now, please go read WikiStart. Both tickets you've created today are very hard to read because code isn't in the proper format and the text is double-spaced.
5:15 PM Ticket #1069 (Check _PathSplit Function.) closed by Valik
No Bug: This is not a bug and will not be changed.
5:07 PM Ticket #1066 (filewrite() not working in mode 16(BinaryMode).) updated by Valik
Just to make sure you see the stuff I said in #1071 I'm making sure to link it here and reiterating somewhat. What the fuck are you thinking? I just said there was a bug that I would look at. I didn't close this ticket. I said that FileSetPos() was working correctly but the bug was not there. So why the fuck would you go and create a new ticket asking for functionality in FileSetPos() when I said it was working? Here's a suggestion: When I write something, read it. It'll save you a whole lot of headaches and flaming if you just listen to me and not somebody who doesn't know what the fuck he's talking about.
5:04 PM Ticket #1071 (editing existing files at any position.) closed by Valik
Duplicate: What the fuck? Are you stupid or what? I stated that FileSetPos() was working correctly in #1066 so how about you let me fix that bug before you go making stupid and pointless feature requests asking for us to implement things that are already there but broken by other bugs? Is that too much to ask? I'd resolve this as "stupid reporter needs to read" but I don't feel like adding that resolution so duplicate of #1066 will have to do. And yes, you deserve the harsh language. I flat-out said FileSetPos() was not broken and that there was another bug somewhere else and that I would fix it yet you completely ignore it and request behavior that already exists just because someone who doesn't know what they are talking about suggested it might not be working.
1:22 PM Ticket #1071 (editing existing files at any position.) created by mvgulik
option for writing/editing of existing files at any position.(binary …
1:17 PM Ticket #1066 (filewrite() not working in mode 16(BinaryMode).) updated by mvgulik
I wronly figured that with FileOpen-Binary support and the newly added fileSetPos it was posible to edit existing files directly in binary mode. I'll put that into a request ticket.
12:00 PM Ticket #1070 (Adlib Suggestion) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
10:24 AM Ticket #1070 (Adlib Suggestion) created by ZNote
; Written By ZNote ( ZNOTE9 aT yAhoO dOt CoM ) …
10:22 AM Ticket #1069 (Check _PathSplit Function.) created by ZNote
; Written By ZNote ( ZNOTE9 aT yAhoO dOt CoM ) ; Check _PathSplit …

Jul 15, 2009:

10:14 AM Ticket #1067 (Unsigned structure "uint64" work as signed "int64") updated by amel27
I understand, Thx!
8:38 AM Ticket #1067 (Unsigned structure "uint64" work as signed "int64") updated by Valik
Replying to amel27: > Thanks for comment. Is it right only fo 64-bit numbers?.. 32-bit unsigned display correctly! 32-bit unsigned are being displayed as 64-bit signed.
8:08 AM Ticket #1067 (Unsigned structure "uint64" work as signed "int64") updated by amel27
Thanks for comment. Is it right only fo 64-bit numbers?.. 32-bit unsigned display correctly!
2:34 AM Ticket #1067 (Unsigned structure "uint64" work as signed "int64") closed by Valik
No Bug: AutoIt only displays signed numbers. It does not display unsigned numbers. It is not a bug.
1:59 AM Ticket #1068 (Wrong converting Binary to Int/Number) created by amel27
only low byte converting […]
1:55 AM Ticket #1067 (Unsigned structure "uint64" work as signed "int64") created by amel27
[…]

Jul 13, 2009:

10:34 PM Ticket #1066 (filewrite() not working in mode 16(BinaryMode).) updated by Valik
Owner, Status changed
FileSetPos() works correctly. The problem is not there. I see some strange stuff from our file functions, I suspect something is fundamentally broken with our implementation of FileOpen() although I have no clue what it could be. Definitely something is up, though. I'll take a look at it whenever I find time to revisit the file functions.
6:04 PM Ticket #1066 (filewrite() not working in mode 16(BinaryMode).) updated by J-Paul Mesnage
What's wrong that's working no error message, just the same string displayed You open the file in read mode so filewrite fails. I can agree that something can be wrong as opening with 16+1 or 1 just write at the end not at FileSetPos() I don't know if FileSetPos() was only designed to position for FileRead()
4:41 PM Ticket #1066 (filewrite() not working in mode 16(BinaryMode).) created by mvgulik
[…]

Jul 12, 2009:

10:27 AM Ticket #981 (_WinAPI_AnsiToOem + _WinAPI_OemToAnsi) updated by J-Paul Mesnage
Those functions already exist using _WinAPI_WideCharToMultiByte() and _WinAPI_MultiByteToWideChar() with $iCodePage = 1 I am just wondering if we should add this code to ConsoleWrite($text [, $iCodePage = 0])

Jul 11, 2009:

2:29 PM Ticket #1065 (_DateDiff showing 0 days) closed by Gary
No Bug
2:24 PM Ticket #1065 (_DateDiff showing 0 days) updated by dash007
Replying to dash007: Sorry my mistake. There is no 31st June as a date.Can this post please be closed. Thanks. > Hi, > > Below code shows that the difference in days between the 2 dates is 0.If I change the date to 2009/06/30, then it works fine and shows 11 days. It looks like its to do with '31'. > > {{{ > #include <Date.au3> > > $iDateCalc = _DateDiff( 'D',"2009/06/31",_NowCalcDate()) > MsgBox( 4096, "", $iDateCalc ) > }}}
2:10 PM Ticket #1065 (_DateDiff showing 0 days) created by dash007
Hi, Below code shows that the difference in days between the 2 dates …

Jul 10, 2009:

2:00 PM Ticket #1064 (DriveGetSerial ( "path" )) closed by J-Paul Mesnage
No Bug: See Ghost doc to update the drive serial. A clone can be a real clone without any bit change No AutoIt bug
1:36 PM Ticket #1058 (Eventlog.au3 in Beta) updated by J-Paul Mesnage
Owner, Status changed
10:48 AM Ticket #1064 (DriveGetSerial ( "path" )) created by Goguy
i am cloned two computer with symnatec ghost two computer, two …

Jul 9, 2009:

11:44 PM Ticket #1063 (Documentation: _ArraySearch() example script missing a prameter) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.3.1.2
6:45 PM Ticket #1062 (language support) updated by Valik
AutoIt developers do not support shitty, non-informative tickets that don't contain the information we need to actually do anything about a problem. Go read WikiStart and provide some useful information or this ticket will be closed.
6:44 PM Ticket #1061 (PowerPoint 2007 presentation adding doesn't work on Vista) closed by Valik
No Bug: Read WikiStart. This is not a support area.
4:37 PM Ticket #1063 (Documentation: _ArraySearch() example script missing a prameter) created by PsaltyDS
The 2D search example is missing a parameter in the _ArraySearch() …
8:26 AM Ticket #1062 (language support) created by xyz33
GUICtrlCreateTreeViewItem doesn't support korean language
7:58 AM Ticket #1061 (PowerPoint 2007 presentation adding doesn't work on Vista) updated by anonymous
I repost ticket description in this reply to more convinient way: I need to open PowerPoint 2007 and add new presentation and slide. There is a code on AutoIt vers. 3.3.0.0 […] It works fine on w2k3 sysytem. But it doesn't work Vista, error in output is: […] I try to call Presentation.Add method with different parameters, but nothing helps. Can you help me, Thank you
7:53 AM Ticket #1061 (PowerPoint 2007 presentation adding doesn't work on Vista) created by Nad
I need to open PowerPoint 2007 and add new presentation and slide. …

Jul 8, 2009:

9:19 PM Ticket #1059 (Incorrect error handling in _FileListToArray()) updated by Spiff59
Revision: The possible combinations of $iFlag and @extended are 0,0],[0,1],[1,0][1,1],[2,0],[2,1. The test to exclude items in the main While loop only triggers ContinueLoop for two combinations: [2,0] and [1,1]. I prefer the consolidation of the two tests into a single line like below. It produces a measurable increase in performance and reduces the function size to 18 lines. […]
9:08 PM Ticket #1060 (Run return 0, but failed) updated by koalw
Sorry for my previous post. I check that Run\RunWait returns 1 to @error for example 2. Its ok, its realy failed. But.. where I can get information about len of cmd and parameters? I create a stupid vbs script, that starts calc with any len of parameters(much more that 120 chars). And I can start Calc again wtih any len of parameter throw windows shell(cmd). I check documenation again - it has information that max len of any script line can be =4096 chars. And nothing about len for Run\Runwait family cmds. Situation was reprodused on WinXP SP3 x86 and on Win2003 SP1 x86. Thanks again.
7:59 PM Ticket #1058 (Eventlog.au3 in Beta) updated by PsaltyDS
Confirmed issue with simplified reproducer (only show last 10 records): […] Missing fields in Beta (they are present in Prod) are: [10] Event Source, [11] Computer name, and [13] Description
7:03 PM Ticket #1060 (Run return 0, but failed) updated by Valik
Description changed
Please read WikiStart to learn how to properly post code on the issue tracker. In case you didn't notice: This isn't the forum. Now, as for the ticket itself... okay, and? The documentation clearly states to check the error property on the AutoItX3 object to see if a call to Run() or RunWait() failed. I don't see you checking that property so the return value of 0 is expected. Finally, I am pretty sure this is not a bug. There are OS-imposed limits on the length of the command line and its parameters. I'll test it but I don't expect to find a problem in AutoIt(X).
11:07 AM Ticket #1060 (Run return 0, but failed) created by anonymous
When I use a long argument(more than 120 char) for functions: Run, …
3:17 AM Ticket #1059 (Incorrect error handling in _FileListToArray()) updated by Spiff59
Ok, when I counted it in SciTE, I counted the lines between Func and EndFunc. It is 19 lines in length, total.
3:14 AM Ticket #1059 (Incorrect error handling in _FileListToArray()) created by Spiff59
FLTA is documented to return an @error = 4 condition when a call …

Jul 7, 2009:

11:26 PM events.au3 attached to Ticket #1058 by twillster
au3 to test description output
11:25 PM Ticket #1058 (Eventlog.au3 in Beta) created by twillster
EventLog.au3 in Beta does not read the event log description …
7:39 PM Ticket #1056 (InetGet rundll32.exe error on Vista / Windows 7 on "Screen-saver" desktop) reopened by J-Paul Mesnage
I reopen so Valik or other dev can have a look. For me the security token is not validate when this screen saver run that's the reason of the failure
6:56 PM Ticket #1057 (SciTe ToolTip negative coordinates) closed by Valik
Rejected: We do not make SciTE. We are not the people to ask.
6:54 PM Ticket #1056 (InetGet rundll32.exe error on Vista / Windows 7 on "Screen-saver" desktop) updated by Caplan77
The user is still logged in when the locked Screen-saver desktop is displayed. The only change is the active desktop, that is why I included a button for Internet Explorer in my example because IE runs fine & even downloads files. If you check SysInternals process explorer you will see what I mean. The screen saver is run as the logged in user, even when the desktop is locked. The system creates a second desktop called Screen-saver, switches to it, & runs the app. The regular "Default" desktop still exists, it just doesn't have focus. InetGet() works properly at the system login prompt (not the user locked desktop login). At system login screen the screen saver is run by SYSTEM on XP & LOCAL SERVICE on Vista/W7, so the theory that a user needs to be logged into the PC for InetGet() to work is incorrect. It's definitely a bug of some kind. Please, please take a look before closing the ticket again.
5:39 PM Ticket #1025 (Box-comment in SciTe) updated by anonymous
Replying to Valik: > This is a bug in SciTE. That means it needs reported on the Scintilla/SciTE bug tracker found here. Closing as won't fix. It'll need to be fixed in standard SciTE before it will be fixed in our version. Okay I added an 'artifact' on there..
3:11 PM Ticket #1057 (SciTe ToolTip negative coordinates) created by Supercross
I would like to request that the ToolTip feature in SciTE support …
1:20 PM Ticket #1056 (InetGet rundll32.exe error on Vista / Windows 7 on "Screen-saver" desktop) closed by J-Paul Mesnage
No Bug
1:19 PM Ticket #1056 (InetGet rundll32.exe error on Vista / Windows 7 on "Screen-saver" desktop) reopened by J-Paul Mesnage
1:17 PM Ticket #1056 (InetGet rundll32.exe error on Vista / Windows 7 on "Screen-saver" desktop) closed by J-Paul Mesnage
Fixed: You cannot run under screen saver a function which need to be loggin as you request the "On Resume, display logon screen" which means that when the screen saver fire no user are logon
2:10 AM Ticket #1049 (InetRead() inserts arbitrary \0 characters.) closed by Valik
Fixed: Fixed in version: 3.3.1.2

Jul 6, 2009:

10:30 PM Ticket #1056 (InetGet rundll32.exe error on Vista / Windows 7 on "Screen-saver" desktop) created by caplant@…
InetGet("valid url") generates an error window: "rundll32.exe - …
8:43 PM Ticket #1051 (Au3Check does not detect invalid statement) updated by Jos
Replying to Valik: > Jos, can you have a look and see if you can figure out anything? I tried a couple things and while I was able to get Au3Check to flag the above code as an error, it flagged valid variable declarations as errors, too. Will see what I can do.
7:31 PM Ticket #1055 (WinAPI CreateCompatibleBitmap: The specified module could not be found.) closed by J-Paul Mesnage
Duplicate: in fact there was a bug in _ScreenCapture_Capture which was not releasing e GDI object. It is already fixed in 3.3.1.2 Next time report with the Standard release today 3.3.0.0. in your case it would have been the same error.
3:04 PM Ticket #1055 (WinAPI CreateCompatibleBitmap: The specified module could not be found.) created by anbunathan@…
am getting the following error message after running Autoit script. …
9:10 AM Ticket #1051 (Au3Check does not detect invalid statement) updated by Valik
Description changed
Jos, can you have a look and see if you can figure out anything? I tried a couple things and while I was able to get Au3Check to flag the above code as an error, it flagged valid variable declarations as errors, too.
8:42 AM Ticket #1024 (GUICtrlSetTip for tabitems sets incorrectly in certain situations) updated by J-Paul Mesnage
It looks like the tip for tabitem is working only if they are defined just after the tabitem creation and also the tip for first tabitem must be defined (with "" if you don't want one). The global tab tip is destroyed when a tabitem tip is set. That the best I can understand on how the MSDN API are working. I intend to document it.
8:23 AM Ticket #1054 (Character Encoding) updated by Valik
Owner, Status changed
8:22 AM Ticket #1054 (Character Encoding) updated by Valik
Hm. How about this: Instead of setting @extended I can add a new function called FileGetEncoding(). It will take either a handle (from FileOpen()) or a string specifying a file. It will return the encoding in BinaryToString() format and set @extended to the encoding in FileOpen() format. The problem I have with setting @extended for FileRead() is the information doesn't really need returned every single time FileRead() is called. It's more of a check it once kind of thing. I don't think returning it from FileOpen() makes much sense, either. It's only useful when a mode isn't specified which makes it kind of redundant.
5:35 AM Ticket #1025 (Box-comment in SciTe) closed by Valik
Wont Fix: This is a bug in SciTE. That means it needs reported on the Scintilla/SciTE bug tracker found here. Closing as won't fix. It'll need to be fixed in standard SciTE before it will be fixed in our version.
5:28 AM Ticket #1033 (UDF's missing @error checks after DLLCalls()) reopened by Valik
5:25 AM Ticket #1043 (ClipPut Function bug or limitation) closed by Valik
Works For Me: The following test script works fine. I get the results I expect. Closing as works for me. […]

Jul 5, 2009:

5:07 PM Ticket #1054 (Character Encoding) created by anonymous
Would like to know what character encoding the file has. FileOpen() or …
12:56 AM Ticket #966 (_FileListToArray - new flag (4)) updated by Valik
This will not be in 3.3.1.2. The changes that came with this turned a 27 line function into a 186 line function. That is not acceptable. Edit: I know that wasn't part of your initial proposal, Zedna, but never-the-less, when your idea was integrated it came with more than it should have.

Jul 4, 2009:

11:55 PM Ticket #966 (_FileListToArray - new flag (4)) closed by J-Paul Mesnage
Completed: Added in version: 3.3.1.2
10:32 PM Ticket #1005 (TraySetClick bug) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.3.1.2
10:22 PM Ticket #1005 (TraySetClick bug) updated by J-Paul Mesnage
Looking again I think 64 as defined is more a 63. So I will document 64 as the hovering.
10:16 PM Ticket #1045 (ConstantsAll.au3 or GUIConstantsAll.au3 - new include file/files) updated by Valik
Replying to Jpm: > perhaps not all dev's. difficult to convince Valik ... It's not hard at all to convince me.... if the idea is good. This is not a good idea. It's an idea lazy people want so they don't have to think. If you don't want to think don't write scripts. Otherwise, suck it up and turn your brain on.
9:24 PM Ticket #1045 (ConstantsAll.au3 or GUIConstantsAll.au3 - new include file/files) updated by J-Paul Mesnage
perhaps not all dev's. difficult to convince Valik …
8:23 PM Ticket #1042 (AURecord has problems with save/save as) updated by J-Paul Mesnage
Since 3.3.1.0 an AU3Record_x64.exe is delivered in the Extras dir. Not sure when Jos will reference it with SciTE environment. At least test it manually to see if something change Thanks for the help
8:07 PM Ticket #1053 (The computer hangs for a while when used DllCallbackRegister()) closed by Valik
No Bug: Multiple event sources are put into a queue. You're creating a conflict here. This is not a bug, it's a design limitation.
8:05 PM Ticket #1026 (_Gdiplus_BitmapCreate* functions document wrong resource disposal function) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.3.1.2
6:24 PM Ticket #1053 (The computer hangs for a while when used DllCallbackRegister()) created by Yashied
The computer hangs for a while (from several seconds or more), if any …
8:11 AM Ticket #1052 (GUICtrlCreateIcon() returns 0 if the file does not exist) closed by J-Paul Mesnage
No Bug
Note: See TracTimeline for information about the timeline view.