Timeline
Jul 16, 2012:
- 2:23 PM Ticket #2192 (New API...au3 include files conflict) closed by
- Fixed: Fixed by revision [7128] in version: 3.3.9.5
- 9:53 AM Ticket #1571 (StringSplit - Add CaseSense parameter) closed by
- Rejected: Case insensitive split would result in 100 bug reports by users using languages other than English. AutoIt string is not limited to ASCII character set.
- 9:37 AM Ticket #1674 (DirCopy()/DirMove() does not preserve the attributes of a folder) closed by
- Rejected
- 9:30 AM Ticket #263 (Drop PluginOpen()/PluginClose() in favor of an #import statement) closed by
- Rejected: Plugin feature will not be developed further.
Jul 12, 2012:
- 12:42 PM Ticket #2149 (_StringBetween does not accept NULL-chars in the boundary strings) updated by
- Please provide an example that doesn't work for you.
- 12:16 PM Ticket #2223 (Minor documentation correction for _WordErrorHandlerRegister) closed by
- Fixed: Fixed by revision [7124] in version: 3.3.9.5
- 1:39 AM Ticket #2231 (ControlSend case of text inconsistent) closed by
- No Bug: You provided a script to reproduce the issue about as useful as the scripts 2 years ago. In other words, this is pointless. We can't reproduce it and the code looks fine on our end.
- 12:22 AM Ticket #2219 (_ExcelReadSheetToArray() fix and upgrade) updated by
- This is likely more efficient than the If/Else statement added to the last version to handle $iColShift on single-cell sheets: […]
- 12:11 AM Ticket #2219 (_ExcelReadSheetToArray() fix and upgrade) updated by
- I noticed I was not handling the $iColShift parameter when a single-cell sheet was the target. I've corrected that. I also found a post by Footswitch proposing the use of "range" instead of "cell" to improve speed. The post is older than the Golfinhu post, so I now credited them both in the comments. Updated version: […]
Jul 11, 2012:
- 7:32 PM Ticket #2231 (ControlSend case of text inconsistent) created by
- This was reported previously, but it was closed 2 years ago as "no …
Jul 10, 2012:
- 6:00 PM Ticket #2230 (MsgBox - Add Location Parameters) updated by
-
Version changed
Automatic ticket cleanup. - 3:56 PM Ticket #2229 (Bug in Obfuscator.exe v1.0.30.1) closed by
- Wont Fix: This is not the correct place to report issues with SciTE4AutoIt or it's tools.
- 3:55 PM Ticket #2230 (MsgBox - Add Location Parameters) closed by
- Rejected: Message boxes are a standard Windows feature. Talk to Microsoft. Better yet spend about two seconds thinking about how you could achieve this on your own and you'll see you can do it already. I hear AutoIt is a good automation language for manipulating windows.
- 3:20 PM Ticket #2230 (MsgBox - Add Location Parameters) created by
- I very often want a MsgBox that is NOT centered on the screen. How …
Jul 9, 2012:
- 9:20 PM Ticket #2229 (Bug in Obfuscator.exe v1.0.30.1) updated by
- I mean […] will be ignored.
- 9:12 PM Ticket #2229 (Bug in Obfuscator.exe v1.0.30.1) created by
- […] I don't know who will maintain SciTE and its components in …
Jun 29, 2012:
Jun 28, 2012:
- 6:39 PM Ticket #2226 (Please give your comments to avoid two windows which are getting opened.) closed by
- Rejected: Hm. What to say. Try to put yourself into our shoes. You will then see how very little sense you make here.
- 3:14 PM Ticket #2227 (GUICtrlCreateEdit doesn't have full Unicode support) closed by
- No Bug
- 3:09 PM Ticket #2227 (GUICtrlCreateEdit doesn't have full Unicode support) updated by
- That's basically what ES_OEMCONVERT does, it converts from ANSI to the OEM character set and then back to ANSI. It's a holdover from Windows 3.0 and shouldn't be used on any version of Windows released in the past decade or so. It is designed to be used on systems that don't support Unicode, so using it on one is pointless.
- 12:57 PM Ticket #2228 (Cant post ??) closed by
- No Bug: This trac is for AutoIt language. Anyway, be patient.
- 12:16 PM Ticket #2225 (_FileWriteToLine Bug) updated by
- If the line number specified is HIGHER than the actual LineCount. Sorry. Replying to MemphiZ <Memphiz@…>: > I see. Maybe _FileWriteToLine should just write to the last line if the line number specified is lower than the actual LineCount of the file. Anyway, thanks for the infos. This case can be closed. > > Replying to BrewManNH: > > That's happening because you're telling it to write to a non-existing line number. > > > > In my test text file I put 5 lines of text, the last line entered without hitting Return. _FileCountLines returns 5 lines, trying to write to line 6 ($linecount + 1) causes _FileWriteToLine to try to write to a line that isn't there. _FileCountLines doesn't count the last CR/LF as a line, so if I hit Return on the last line of the file there will be 6 lines in the file, and writing to line 6 doesn't fail. You'll have to make a check to see if the last line of the file is an empty line before trying to write to it because _FileWriteToLine doesn't work when writing to line numbers greater than the actual count of lines in the file. > > > > The bug isn't in the function, but in your interpretation of how _FileCountLines works.
- 12:15 PM Ticket #2225 (_FileWriteToLine Bug) updated by
- I see. Maybe _FileWriteToLine should just write to the last line if the line number specified is lower than the actual LineCount of the file. Anyway, thanks for the infos. This case can be closed. Replying to BrewManNH: > That's happening because you're telling it to write to a non-existing line number. > > In my test text file I put 5 lines of text, the last line entered without hitting Return. _FileCountLines returns 5 lines, trying to write to line 6 ($linecount + 1) causes _FileWriteToLine to try to write to a line that isn't there. _FileCountLines doesn't count the last CR/LF as a line, so if I hit Return on the last line of the file there will be 6 lines in the file, and writing to line 6 doesn't fail. You'll have to make a check to see if the last line of the file is an empty line before trying to write to it because _FileWriteToLine doesn't work when writing to line numbers greater than the actual count of lines in the file. > > The bug isn't in the function, but in your interpretation of how _FileCountLines works.
- 8:06 AM Ticket #2228 (Cant post ??) updated by
- Replying to anonymous: > I posted my first thread and it wont show to public cause no one has approved or disaproved.. Just wondering if someone can do one or the other. I need the help ty Sorry forgot Email here.
- 8:05 AM Ticket #2228 (Cant post ??) created by
- I posted my first thread and it wont show to public cause no one has …
- 3:58 AM Ticket #2227 (GUICtrlCreateEdit doesn't have full Unicode support) created by
- I found a problem with GUICtrlCreateEdit. When i added …
Jun 27, 2012:
- 5:48 PM Ticket #2225 (_FileWriteToLine Bug) updated by
- That's happening because you're telling it to write to a non-existing line number. In my test text file I put 5 lines of text, the last line entered without hitting Return. _FileCountLines returns 5 lines, trying to write to line 6 ($linecount + 1) causes _FileWriteToLine to try to write to a line that isn't there. _FileCountLines doesn't count the last CR/LF as a line, so if I hit Return on the last line of the file there will be 6 lines in the file, and writing to line 6 doesn't fail. You'll have to make a check to see if the last line of the file is an empty line before trying to write to it because _FileWriteToLine doesn't work when writing to line numbers greater than the actual count of lines in the file. The bug isn't in the function, but in your interpretation of how _FileCountLines works.
- 4:44 PM Ticket #2225 (_FileWriteToLine Bug) updated by
- Just open the txt file now and write something in the last line (which should be an empty line.. meaning the cursor is blinking in an empty line) and save it without hitting return..
- 11:56 AM Ticket #2222 (Cyrillic names of COM object / methods) closed by
- Fixed: Fixed by revision [7089] in version: 3.3.9.5
- 9:00 AM Ticket #2226 (Please give your comments to avoid two windows which are getting opened.) updated by
-
Version changed
Automatic ticket cleanup. - 8:28 AM Ticket #2226 (Please give your comments to avoid two windows which are getting opened.) created by
- While browsing for a file, two browse windows gets opening. I have …
Jun 26, 2012:
- 5:51 PM Ticket #2225 (_FileWriteToLine Bug) updated by
- Can you please explain exactly what you mean by "But if you put some text to the last line instead of having an empty last line it will stop working:", because I ran your script and it worked as expected for me. It added Script started at: 12:46:51 at the end of the text file plus the value of $i and just kept replacing the last lines with that.
Jun 25, 2012:
- 4:38 PM Ticket #2225 (_FileWriteToLine Bug) created by
- I found a bug in the _FileWriteToLine function of the File.au3 include …
Jun 24, 2012:
- 12:31 PM Ticket #2208 (ControlGetText not working on calculator) updated by
- MSAA works on all platforms although going forward UI automation is a better choice. Microsoft's inspect.exe 64 bits gives same result on CE button so somehow the text CE is not retrievable. Anyway it would be an improvement to get more details by integrating ui automation on platforms that have uiautomationcore.dll installed (from Win 7 version upwards that should be the case) that at least for some controls we have more information available to act on.
Jun 23, 2012:
- 11:47 PM Ticket #1866 (GUI $WS_EX_MDICHILD Top Alignment bug) closed by
- Wont Fix: If anyone sees any sense in this then please make another report.
- 11:38 PM Ticket #1645 (Change stdinwrite() to asynchronous) updated by
-
Version, Type changed
- 9:14 PM Ticket #1995 (Different results on x86 and x64) closed by
- Wont Fix: Addressed by revision [7088].
- 11:09 AM Ticket #1995 (Different results on x86 and x64) updated by
- Nothing needs fixed. This is not a bug. The user has invalid syntax of a conversion specification therefore triggering undefined behavior. All we should do is document that bad syntax causes undefined behavior. When that's done this ticked can be closed.
Jun 22, 2012:
- 11:15 PM Ticket #2224 (_FileReadToArray() Add optional parameter to disable row count return ...) created by
- Would it be possible to add an optional parameter to this UDF function …
Jun 21, 2012:
- 5:39 PM Ticket #2215 (Wrong(?) syntax check of default parameter value with array variable) closed by
- Fixed: Fixed by revision [7083] in version: 3.3.9.5
Jun 20, 2012:
- 2:26 PM Ticket #2223 (Minor documentation correction for _WordErrorHandlerRegister) created by
- The provided example script for _WordErrorHandlerRegister just has the …
Jun 19, 2012:
- 6:00 PM Ticket #1265 (Au3Check support for Static) updated by
-
Milestone changed
Automatic ticket cleanup. - 5:33 PM Ticket #1993 (Forum [autoit] code abbreviates URLs - it shouldn't) closed by
- Fixed: This appears fixed with IPB 3.3.3.
- 5:13 PM Ticket #1631 (Get FilePath from file handle) closed by
- Rejected: This really isn't necessary.
- 4:56 PM Ticket #1172 (.NET controls in beta 3.3.1.1) closed by
- Rejected
- 4:30 PM Ticket #1265 (Au3Check support for Static) closed by
- Completed: For some time now Au3Check handles Static correctly.
- 4:26 PM Ticket #2014 (Updated Array.au3 UDF to be used with 2D arrays) closed by
- Rejected: Unfortunately something like this isn't currently needed. Thanks anyway.
- 4:20 PM Ticket #1691 (ControlCommand is not working for .net checkboxes.) closed by
- Rejected
- 4:14 PM Ticket #1887 (Sort multiple or multi-dimensional arrays with multiple sort columns) closed by
- Rejected
- 3:46 PM Ticket #2031 (_GUICtrlStatusBar_SetBkColor() not working) closed by
- No Bug: It works all right. You don't see it working probably because your system forces default control style.
- 3:22 PM Ticket #1607 (ControlTreeView not fully working with SysTreeView32) closed by
- Rejected
- 2:26 PM Ticket #1803 (GuiRichEdit Zoom Set) closed by
- Rejected: It's very hard to understand what's this about.
- 1:52 PM Ticket #2007 (#AutoIt3Wrapper_Res_requestedExecutionLevel=None Creates "asInvoker" ...) closed by
- Rejected: Check the latest SciTE4AutoIt. That's the only advice I can give regarding this.
Jun 16, 2012:
Note:
See TracTimeline
for information about the timeline view.
