Timeline



Mar 24, 2011:

8:12 PM Ticket #1792 (ProcessExist or Maybe Run Command does not give the correct PID) updated by Valik
This is not a bug. Here's what is happening. The version of mstsc.exe in SysWOW64 is 32-bits. When you run this version it just loads a 64-bit version of mstsc.exe. That means its PID changes and the problem you describe happens. I've verified that the version in SysWOW64 is 32-bits with Dependency Walker. I have also verified that running that version results in a 64-bit process running (Process Explorer). Also, that process is orphaned (It has no parent). If I run the version from system32 I also get a 64-bit process but it does have a parent - the Explorer process I launched it from. Now, this all relates to your specific case because you want to run the version in system32 explicitly and don't care that it's 64-bit. As you've discovered, the only way to do this from a 32-bit process is to briefly turn off redirection. My initial conclusion that this is not a bug stands. The only reason I'm explaining this now is because this ticket was referenced in #1901. I looked at this ticket, saw that I didn't provide a completely firm conclusion so I investigated something that came to me.
8:02 PM Ticket #1901 (Compiled 32bit scripts not working in system32 path on 64bit OS) updated by Valik
Emiel, I just saw your reply. It's a different issue. I now know what is causing your problem and will respond in the other ticket.
7:58 PM Ticket #1902 (Better error msg for (undefined) Global var in Function definition.) closed by Valik
Rejected
7:58 PM Ticket #1902 (Better error msg for (undefined) Global var in Function definition.) updated by Valik
It tells you there is an error on line 2. From there you should be able to figure out on your own to at least look at the function definition on line X. Quite simply, this is not worth the time and risk associated with changing the behavior. Won't you feel real daft if we fix this error message but totally break something else that was otherwise working correctly? This is also very simple to avoid. Global variables should always appear near the top of a script either before or after all #include statements but before any code is ever executed.
7:53 PM Ticket #1901 (Compiled 32bit scripts not working in system32 path on 64bit OS) updated by Valik
Description, Summary changed
7:10 PM Ticket #1901 (Compiled 32bit scripts not working in system32 path on 64bit OS) updated by Emiel Wieldraaijer
Forgot my name on the above message
7:09 PM Ticket #1901 (Compiled 32bit scripts not working in system32 path on 64bit OS) updated by anonymous
I believe you mean this http://www.autoitscript.com/trac/autoit/ticket/1792
3:25 PM Ticket #1902 (Better error msg for (undefined) Global var in Function definition.) updated by mvg
> It might take some, more than needed, time to figure out the reported problem.
3:23 PM Ticket #1902 (Better error msg for (undefined) Global var in Function definition.) created by mvg
More informative error message for undefined vars(global) use in …
1:58 PM Ticket #1901 (Compiled 32bit scripts not working in system32 path on 64bit OS) created by Highguy
Heavily re-written by Valik: 32-bit scripts do not run from …

Mar 20, 2011:

7:54 AM Ticket #1803 (GuiRichEdit Zoom Set) updated by RoyGlanfield
;---this needs to be modified---$r = _GUICtrlRichEdit_SetZoom($hRichEdit, 1/2)-------------- I think the problum may be SendMessage not sending integers ;----- Below works well---but does have to be reset after anything is streamed in------ ;----OK--------$r = _SendMessage($h_RichEdit, $EM_SETZOOM, $nominator, $denominator) ;$r = _SendMessage($hRichEdit, $EM_SETZOOM, 1000, 2333) ;--must be integer -- "1000, 2333" not "1, 2.333" ;$r = _SendMessage($hRichEdit, $EM_SETZOOM, 100, 200);-------eg 50% $r = _SendMessage($hRichEdit, $EM_SETZOOM, 1, 2);-------eg 50%
3:23 AM Ticket #1893 (#Include-All) closed by Valik
Rejected: We will not add bad features to facilitate lazy programming. Write your code well and a dangerous feature like this will not be necessary.
12:32 AM Ticket #1893 (#Include-All) updated by anonymous
#Include-All and then on compile do a /striponly automatically, so that only relevant UDF's are kept. I think would work the best.

Mar 19, 2011:

4:06 PM StringRegExpGUI_.au3 attached to Ticket #1900 by FichteFoll <fichtefoll2@…>
StringRegExp modified by FichteFoll
4:05 PM Ticket #1900 (Improvements for StringRegExpGUI) created by FichteFoll <fichtefoll2@…>
Since I use that program a lot I noticed some bugs and ways to improve …
3:27 PM Ticket #1893 (#Include-All) updated by FichteFoll
I don't think including really every include file would make sense. Also this would be possible by wildcasting them as "*.au3" which adds more flexibility. I'd make the "#include" able to interpret wildcasts, I don't see anything bad here.
3:00 PM Ticket #1899 (SendWindow) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
12:55 PM Ticket #1899 (SendWindow) created by Steve.Haine@…
Allow keystrokes to be sent to a window regardless of it being active …

Mar 17, 2011:

5:03 PM Ticket #1893 (#Include-All) updated by Zedna
I like the idea but not in the way the OP described. It could be just #Include-All without any wildcards and it could add ALL STANDARD UDFs.

Mar 11, 2011:

7:51 PM Ticket #1898 ($CmdLineRaw, not enforced as constant.) updated by mvg
(ps: no mention about const state of $CmdLine/$CmdLineRaw in "Command Line Parameters" help either.)
7:42 PM Ticket #1898 ($CmdLineRaw, not enforced as constant.) created by mvg
$CmdLineRaw, is not enforced as constant. ref: topic: $CmdLine is now …
9:04 AM Ticket #1897 (_DateDiff(), Suggestion (minor fix), Returns Double type instead of Int.) created by mvg
UDF: Date.au3 Issue: _DateDiff() returns Double type instead of Int …

Mar 10, 2011:

9:53 PM Ticket #1896 (Just a little error to fix in the help file (documentation)) created by jacksteeve@…
In the AutoIT Help file on "Tutorials/Simple Notepad Automation" have …

Mar 8, 2011:

4:33 PM Ticket #1895 (Bugs in _GUIScrollBars_Init()) created by neil.wilson@…
In _GUIScrollBars_Init(), when setting up the $tSCROLLINFO struct for …

Mar 6, 2011:

12:22 PM Ticket #1892 (eventlog) updated by djmunis
Solved, "$iOffset += StringLen($aStrings[$iI])*2 + 2" ;; suggested change works fine. Other suggested changes i did not test. A lot of thanks
11:34 AM Ticket #1892 (eventlog) updated by mvg
2 other suggestions/fixes ... (only tested on "(Language:0409 Keyboard:00000409 OS:WIN_XP/Service Pack 3 CPU:X86 OS:X86)") […] […]
3:14 AM Ticket #1892 (eventlog) updated by mvg
Seems someone forgot to adjust the offset counter to count wchar's instead of single byte chr's. […]
3:00 AM Ticket #1894 (gimagex for AIK 3.0) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
2:42 AM Ticket #1894 (gimagex for AIK 3.0) created by greggolong@…
I am trying to use gimagex with waik 3.0 and it does not seem to work.

Mar 5, 2011:

12:38 PM Ticket #1889 (_ArrayDisplay optionaly display columns in hex.) updated by 436602556274@…
I think to display in hex is only one way to display the real values even those changed by display functions. The current version didn't display as is, it displays only what would be displayed, due to interpreting control characters. Results of a any StringRexExp to re-format only to see what is really there is not very convenient, but anyway.
12:11 AM Ticket #1893 (#Include-All) updated by mvg
Don't seems something that really adds something generally useful to AutoIt's core, or something that can't be done with some (run-before-compile) user script. or, […]

Mar 4, 2011:

10:28 PM Ticket #1893 (#Include-All) created by willichan <willi_chan@…>
I would like to see a new pre-compiler directive, #Include-All. Syntax …
6:14 PM Ticket #1892 (eventlog) updated by djmunis
How this is a bug of EventLog3.au3 that is part of autoit I thought that its a bug and i had post here. Sorry, Now I post on http://www.autoitscript.com/forum/topic/126175-eventlog-description
4:53 PM Ticket #1892 (eventlog) updated by mvg
> Hi, I have a problem with eventlog.au3 > Can you help me? Nope. This section is for Bug-reports ... ONLY. For user problems there is the Forum Section. -> http://www.autoitscript.com/forum
4:48 PM Notificator Plus v1.0.zip attached to Ticket #1892 by djmunis@…
the code of script and image of error
4:46 PM Ticket #1892 (eventlog) created by djmunis@…
Hi, I have a problem with eventlog.au3. when I use _eventlog_read() …
8:16 AM Ticket #1889 (_ArrayDisplay optionaly display columns in hex.) updated by mvg
_ArrayDisplay() main function it to display the array data as it is. Any special re-formatting of the array data falls outside its main purpose. (or: user-code should take care of that before feeding the array(adjusted copy) to _ArrayDiplay().)

Mar 3, 2011:

9:00 PM Ticket #1891 (_ArrayDisplay (......,i$iTranspose,...) wrong description ?) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
7:54 PM Ticket #1891 (_ArrayDisplay (......,i$iTranspose,...) wrong description ?) created by 436602556274@…
Bug in help of _ArrayDisplay: ---- $iTranspose [optional] If set …
6:23 PM Ticket #1890 (Add _WinAPI_GetParent in _WinAPI_GetAncestor related-section) created by AdmiralAlkex
And vice versa
6:00 PM Ticket #1889 (_ArrayDisplay optionaly display columns in hex.) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
5:49 PM Ticket #1889 (_ArrayDisplay optionaly display columns in hex.) created by 436602556274@…
Feature reuest for function: _ArrayDisplay(Const ByRef $avArray .... …

Feb 25, 2011:

6:37 PM Ticket #1888 (User Profile) closed by Jos
No Bug: Useful report to post an anonymous question. Just PM me in the Forum. Jos
5:12 PM Ticket #1888 (User Profile) created by anonymous
I'm trying to change my profile email address back to its original …

Feb 24, 2011:

9:43 PM Ticket #1843 (Round(), Doc, decimalplaces, return "type") updated by mvg
... have (tried) looking at it a view times, but I can't come up with anything.
3:00 PM Ticket #1887 (Sort multiple or multi-dimensional arrays with multiple sort columns) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
1:37 PM Ticket #1887 (Sort multiple or multi-dimensional arrays with multiple sort columns) created by Thopaga
Sort multiple or multi-dimensional arrays with multiple sort columns. …

Feb 23, 2011:

5:23 PM Ticket #1884 (Strings concatenation) updated by mvg
Fare enuff. But if your not sure about something being a bug. Forum is generally the better place to find out. (Or include it in the report. forum way preferred of course.)
4:00 PM Ticket #1884 (Strings concatenation) updated by anonymous
I'm sorry, I didn't mean it as request for help. I just would to show, why I thought it was bug.
3:33 PM Ticket #1884 (Strings concatenation) updated by mvg
Replying to anonymous: > I have this "error" in one program. Compiled EXE ends sometimes with error, but script (AutoIt3.exe script.au3) works fine. I'm not sure where problem is, because compiled simple script works. ? This not the forum section! (Stay on target, or get ignored (by me at least).)
1:57 PM Ticket #1884 (Strings concatenation) updated by anonymous
I have this "error" in one program. Compiled EXE ends sometimes with error, but script (AutoIt3.exe script.au3) works fine. I'm not sure where problem is, because compiled simple script works.
1:26 PM Ticket #1881 (_VersionCompare) updated by mvg
No. Nothing wrong with that. - Its stated that it will try to do a numerical compare. > This will try to use a numerical comparison but fall back on a lexicographical comparison. If you like it to behave differently recode your local copy. Or provide the function with (better matching) version strings that will be compared in numerical mode. (case closed for me. Ergo: not commenting on it anymore. (try forum for additional feedback/talking on this))
1:05 PM Ticket #1884 (Strings concatenation) updated by mvg
No bug I think. - Error is from au3check. Which is a tool to help you to NOT to write bad formatted code. - And AutoIt being smart enuff to figure out badly written code ... that can't be a bug either. :P Although interesting "behind the scene" feature though. (probably already noted on forum. but finding it ... ) […] […]
9:00 AM Tickets #1885,​1886 batch updated by TicketCleanup
Version changed
Automatic ticket cleanup.
8:27 AM Ticket #1886 (64 or 128-bit numbers) created by anonymous
I would like to see 128-bit numbers handled in AutoIt3. 128-bit …
8:24 AM Ticket #1881 (_VersionCompare) updated by anonymous
If UBound($aVersion1) <> UBound($aVersion2) Then will lexicographical comparison without numerical comparison but this is WRONG.
8:07 AM Ticket #1885 (CreateGUID and CreateGUIDSequential missing, but $tagGUID there) created by anonymous
I see you have _WinAPI_StringFromGUID() $tagGUID structure (but no …
6:16 AM Ticket #1884 (Strings concatenation) created by anonymous
This code works despite error in expression […]

Feb 22, 2011:

8:26 AM Ticket #1881 (_VersionCompare) closed by J-Paul Mesnage
No Bug
2:49 AM Ticket #1544 (Error in Help file - VarGetType) updated by mvg
Closed or not. The remark "IsInt can return different results as it tries to convert from a string or float." don't seems to have any relation to the VarGetType() function. That, and this. […] Running:(3.3.6.1):Environment(Language:0409 Keyboard:00000409 OS:WIN_XP/Service Pack 3 CPU:X86 OS:X86)
12:40 AM Ticket #1881 (_VersionCompare) updated by mvg
Documented (well kinda) Function limitation. (No bug) - All these compares are done in lexicographical mode. - Ergo: 1.9xxx > 1.1xxx and/or 9xxx > 1xxx. >DOC >Remarks >This will try to use a numerical comparison but fall back on a lexicographical comparison. >See @extended for details about which type was performed.
Note: See TracTimeline for information about the timeline view.