Timeline
May 7, 2011:
- 5:11 PM Ticket #1924 (Hiding one Edit affects the text in another.) created by
- The code below shows the problem. If you run the code with the …
May 6, 2011:
- 11:52 AM Ticket #1923 (Memory consumption while FileOpen/FileClose) updated by
- Sorry ... my e-mail is khrbud@…
- 11:47 AM Ticket #1923 (Memory consumption while FileOpen/FileClose) created by
- Prerequisite ... create file "$File" and deny yourself read/write …
May 5, 2011:
- 7:09 PM Ticket #1921 (_ArrayUnique) updated by
- "Returns the Unique Elements of a 1-dimensional array." Not to mention the fact that is not returning "the Unique elements", but returning a version of the input with the duplicates removed. ("make elements unique" versus "give unique elements from set") […] hehe Oh yea, real reason. […] 1 - double "[" character typo. 2 - dimension?, Field/Column (or Row?, I'm never sure about those.) sound more appropriate.
May 4, 2011:
- 5:38 PM Ticket #1920 (Script crashes with error reported in Security.au3 at line 85) updated by
- :-)
- 12:50 PM Ticket #1922 (Shell.Explorer.2-Object and cancel Navigation with BeforeNavigate2 fails) created by
- ; Test script to embed an Shell.Explorer.2 (MS WebBrowser) control …
- 11:11 AM Ticket #1920 (Script crashes with error reported in Security.au3 at line 85) updated by
- Hope this helps : […]
- 11:02 AM Ticket #1920 (Script crashes with error reported in Security.au3 at line 85) updated by
- "Erm ... is also using code tags for that part to much to ask." No, of course not. Thought I'd done that. My mistake. "(and using remarks inside the code to point to your local change(s).)" Thought I'd done that too. My mistake again.
- 5:48 AM Ticket #1920 (Script crashes with error reported in Security.au3 at line 85) updated by
- Replying to malcolmsearle: > I have copied the two functions involved in the problem below. Erm ... is also using code tags for that part to much to ask. (and using remarks inside the code to point to your local change(s).)
May 3, 2011:
- 9:48 PM Ticket #1921 (_ArrayUnique) created by
- It states in the help file that _ArrayUnique "Returns the Unique …
- 8:19 PM Ticket #1920 (Script crashes with error reported in Security.au3 at line 85) updated by
- My initial solution is to change line 85 in Security.au3 which was: […] to: […] I have copied the two functions involved in the problem below. First is _SecurityGetAccountSid which is the function where the problem resides. The second is the _SecurityLookupAccountSid, both from Security.au3. ###################################################### REFERENCE: (Taken from Security.au3) ###################################################### ; #FUNCTION# ==================================================================================================================== ; Name...........: _SecurityGetAccountSid ; Description ...: Retrieves the security identifier (SID) for an account ; Syntax.........: _SecurityGetAccountSid($sAccount[, $sSystem = ""]) ; Parameters ....: $sAccount - Specifies the account name. Use a fully qualified string in the domain_name\user_name format to ; +ensure that the function finds the account in the desired domain. ; $sSystem - Name of the system. This string can be the name of a remote computer. If this string is blank, ; +the account name translation begins on the local system. If the name cannot be resolved on the local system, ; +this function will try to resolve the name using domain controllers trusted by the local system. ; Return values .: Success - Returns a binary SID in a byte strucutre ; Failure - 0 ; Author ........: Paul Campbell (PaulIA) ; Modified.......: ; Remarks .......: ; Related .......: _SecurityLookupAccountSid ; Link ..........: ; Example .......: ; =============================================================================================================================== Func _SecurityGetAccountSid($sAccount, $sSystem = "") Local $aAcct = _SecurityLookupAccountName($sAccount, $sSystem) If @error Then Return SetError(@error, 0, 0) Return _SecurityStringSidToSid($aAcct[0]) [original line 85] […] EndFunc ;==>_SecurityGetAccountSid ###################################################### REFERENCE: (Taken from Security.au3) ###################################################### ; #FUNCTION# ==================================================================================================================== ; Name...........: _SecurityLookupAccountName ; Description ...: Retrieves a security identifier (SID) for the account and the name of the domain ; Syntax.........: _SecurityLookupAccountName($sAccount[, $sSystem = ""]) ; Parameters ....: $sAccount - Specifies the account name. Use a fully qualified string in the domain_name\user_name format to ; +ensure that the function finds the account in the desired domain. ; $sSystem - Name of the system. This string can be the name of a remote computer. If this string is blank, ; +the account name translation begins on the local system. If the name cannot be resolved on the local system, ; +this function will try to resolve the name using domain controllers trusted by the local system. ; Return values .: Success - Array with the following format: ; |$aAcct[0] - SID String ; |$aAcct[1] - Domain name ; |$aAcct[2] - SID type, which can be one of the following values: ; | 1 - Indicates a user SID ; | 2 - Indicates a group SID ; | 3 - Indicates a domain SID ; | 4 - Indicates an alias SID ; | 5 - Indicates a SID for a well-known group ; | 6 - Indicates a SID for a deleted account ; | 7 - Indicates an invalid SID ; | 8 - Indicates an unknown SID type ; | 9 - Indicates a SID for a computer ; Author ........: Paul Campbell (PaulIA) ; Modified.......: ; Remarks .......: ; Related .......: _SecurityLookupAccountSid ; Link ..........: @@MsdnLink@@ LookupAccountName ; Example .......: ; =============================================================================================================================== Func _SecurityLookupAccountName($sAccount, $sSystem = "") Local $tData = DllStructCreate("byte SID[256]") Local $pSID = DllStructGetPtr($tData, "SID") Local $aResult = DllCall("advapi32.dll", "bool", "LookupAccountNameW", "wstr", $sSystem, "wstr", $sAccount, "ptr", $pSID, "dword*", 256, _ "wstr", "", "dword*", 256, "int*", 0) If @error Then Return SetError(@error, @extended, 0) If Not $aResult[0] Then Return 0 Local $aAcct[3] $aAcct[0] = _SecuritySidToStringSid($pSID) $aAcct[1] = $aResult[5] ; Domain $aAcct[2] = $aResult[7] ; SNU Return $aAcct EndFunc ;==>_SecurityLookupAccountName
- 7:28 PM Ticket #1920 (Script crashes with error reported in Security.au3 at line 85) created by
- My usage: Script uses Security.au3 to get user SIDs from Active …
- 12:00 PM Ticket #1919 (Native IPv6 support) updated by
-
Version changed
Automatic ticket cleanup. - 10:30 AM Ticket #1919 (Native IPv6 support) created by
- The ability to use TCPConnect and UDPConnect with IPv6 addresses. …
Apr 30, 2011:
- 12:17 PM Ticket #1908 (ObjName returns empty string for HTMLDocument with IE9) updated by
- Hi again Sirs, No I am not the other "anonymous" above in the conversation and I tried to be as polite as I could be. Sorry for wasting your time. / T
Apr 28, 2011:
- 7:11 AM Ticket #1918 (IniReadSection Incorrect) created by
- Inreadsection() does not work when using unicode ini file with section …
Apr 27, 2011:
- 10:56 PM Ticket #1908 (ObjName returns empty string for HTMLDocument with IE9) updated by
- IP is significantly different so probably not the same person.
- 8:18 PM Ticket #1908 (ObjName returns empty string for HTMLDocument with IE9) updated by
- All reports that are still open and not closed are by definition scheduled to be looked at at some point in time. The best thing you can get at this point is a "NoBug" to resolve you of your unsurtenty in this matter. Other than that you have to wait, just like the rest of us none dev users, until it gets fixed (if not dismissed) to see a change in the ticked status. Now if your the same anonymous as the others in this ticket, I suggest you just give it a rest. Your just wasting yours and others time with this.
- 4:59 PM Ticket #1908 (ObjName returns empty string for HTMLDocument with IE9) updated by
- Hi Sirs, Any update on this bug. I am experiencing this bug and I do not expect it to get fixed just because I need it, but it would be nice for my sanity if I knew it was being looked at (or just the same was scheduled for later inspection) :) / T
Apr 26, 2011:
- 7:08 PM Ticket #1917 (InetGet() on WinXP SP3 Not Working AFTER v3.3.0.0) created by
- After testing this with every version from v3.3.0.0 to 3.3.6.1, …
Apr 21, 2011:
- 11:55 PM Ticket #1916 (Dealing with TAdvStringGrid, TPanel, TRichEdit, TFormMain, TTollbar) created by
- Can you add automation support for T components? Reading text, …
- 5:52 PM Ticket #1908 (ObjName returns empty string for HTMLDocument with IE9) updated by
- The only person here with ego is you. You apparently believe it is your place to determine bug severity for a project you do not administer. That is ego. Or stupidity. Possibly both. As for the rest of your comments, who cares. If you don't like me and are willing to put so much effort into avoiding a project I work on, be my guest. You're not going to take food off any of our tables (we are not paid for our work on AutoIt) nor are we going to lose any sleep over your decision to switch to another language. I think it speaks volumes about you that you are so petty as to do something like that. It also speaks volumes to me that you cannot for even a single second look at something you've said from a different perspective or stop and think that perhaps your attempt to be "helpful" in telling us how to manage our own project might be taken as condescending since it's our project and not yours. Anyway, I hope you leave and if so good riddance.
- 3:42 PM Ticket #1908 (ObjName returns empty string for HTMLDocument with IE9) updated by
- Replying to dv8: > Instead of wasting everyone's time with your pointless comments just sit on your butt and wait for the fix quietly. And while you are on it, feel free to go to http://www.autoitscript.com/site/donate/ and make a donation like I just did (8PM98566LP724560B) to at least show some appreciation to the developers and all their hard work. What?!?! After being insulted, I'm asked to pay? If Valik's hadn't been so condescending, I would completely agree and consider making a contribution. Now, no way. I'll convert my entire organization to use another product, even if it's a commercial product, before I send one cent to AutoIt after this exchange. I've used dozens of freeware and open source products. I've contributed both code and money to an handful of them. I've been an active participant in all of their forums. With the exception of wxWidgets, I have never encountered this much ego, attitude, and conflict over absolutely nothing. > You guys ROCK! Please do not be discouraged from any anonymous replies. The product rocks. A few of the "guys" leave much to be desired.
- 3:20 PM Ticket #1908 (ObjName returns empty string for HTMLDocument with IE9) updated by
- Replying to Valik: > You certainly weren't expecting "professional-level software development" to begin with since you felt the need to tell us this was important. Your post stating we should change the severity is akin to saying we are too stupid to make our own decisions and that its up to an anonymous poster to do it for us. Wow, you're putting a lot of words into my mouth. I did (and still do) expect professional software development practices. AutoIt would not have gotten this far without them. It's a shame you somehow inferred that I was calling you stupid from my simple request. Do you have self-esteem or sensitivity issues? Damn, I even said "Please".
- 7:26 AM Ticket #1908 (ObjName returns empty string for HTMLDocument with IE9) updated by
- Anonymous, even if you are a kid you should know that if you want a professional service (in any area) you should pay for it. All the people here are giving you their time for free and you are getting A LOT for your NOTHING! So your attitude is not appreciated at all! Instead of wasting everyone's time with your pointless comments just sit on your butt and wait for the fix quietly. And while you are on it, feel free to go to http://www.autoitscript.com/site/donate/ and make a donation like I just did (8PM98566LP724560B) to at least show some appreciation to the developers and all their hard work. You guys ROCK! Please do not be discouraged from any anonymous replies.
Apr 20, 2011:
- 11:13 PM Ticket #1908 (ObjName returns empty string for HTMLDocument with IE9) updated by
- You certainly weren't expecting "professional-level software development" to begin with since you felt the need to tell us this was important. Your post stating we should change the severity is akin to saying we are too stupid to make our own decisions and that its up to an anonymous poster to do it for us.
- 4:46 PM Ticket #1915 (Running script in SCITE doesnt work) closed by
- No Bug: Go to the forum for support. This is site is for reporting BUGs.
- 1:51 PM Ticket #1908 (ObjName returns empty string for HTMLDocument with IE9) updated by
- Replying to Valik: > Yes, because updating the severity is certainly going to fix the problem. Typically in professional software development, issues with higher severity are fixed before those with lower severity. Based on Valik's reply to my comment, I guess I shouldn't expect professional-level software development practices out of the AutoIt development staff. Thanks for letting me know, Valik. Good one!
- 12:03 PM Ticket #1915 (Running script in SCITE doesnt work) created by
- Hi, I install full instalation of AutoIt and when i put simple code in …
- 11:56 AM Ticket #1908 (ObjName returns empty string for HTMLDocument with IE9) updated by
- LOL :) Good one Valik! It's definitely not that serious, but now that IE9 is officially released and Windows is automatically updating it, I guess a lot of scripts will bomb out. :) I'm eagerly awaiting for this fix as well. I wish I could help with something…
Apr 19, 2011:
- 7:56 PM Ticket #1908 (ObjName returns empty string for HTMLDocument with IE9) updated by
- Yes, because updating the severity is certainly going to fix the problem.
- 4:27 PM Ticket #1908 (ObjName returns empty string for HTMLDocument with IE9) updated by
- Please upgrade the severity. This problem breaks Internet Explorer automation using AutoIt. It's a very serious issue.
- 2:50 AM Ticket #1906 (reparse point) updated by
- The reparse data is not an attribute. If anything there needs to be a FileGetInfo() function to retrieve various bits of information about a file.
Apr 18, 2011:
- 9:01 PM Ticket #1914 (Error Codes for File operations) updated by
- I forgot to mention that I am explicitly refering to FileCopy() and FileMove() here.
- 9:00 PM Ticket #1914 (Error Codes for File operations) created by
- Right now the returned value for a failure contains nothing of any …
Apr 16, 2011:
- 5:08 PM Ticket #1913 (Mod() Crashing when divisor is zero.) closed by
- Duplicate: Duplicate report: https://www.autoitscript.com/trac/autoit/ticket/1660
- 4:30 PM Ticket #1913 (Mod() Crashing when divisor is zero.) created by
- Very simple. Mod(10,0) for example. Implement division by zero checking.
Apr 12, 2011:
- 10:22 AM Ticket #1912 (Run() does not work on x64 when compiled as x86) closed by
- No Bug: NoBug ... Use our Forum for support.
- 8:50 AM Ticket #1912 (Run() does not work on x64 when compiled as x86) created by
- This does not work on my 64bit Windows 7 OS. #Region ; Directives …
- 2:03 AM Ticket #1911 (_WinAPI_MsgBox) created by
- Func _WinAPI_MsgBox($iFlags, $sTitle, $sText) BlockInput(0) …
Apr 9, 2011:
- 3:17 PM Ticket #1910 (Please change $TTN_GETDISPINFO to $TTN_GETDISPINFOW) created by
- Please change in the example scripts for _GUICtrlToolbar_SetToolTips …
Apr 8, 2011:
- 12:28 PM Ticket #1909 (little problem with an updown control) created by
- When I move the pointer over an input control the right border shows …
Note:
See TracTimeline
for information about the timeline view.
