Custom Query
Results (94 - 96 of 3841)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3237 | Fixed | _EventLog__Read has an error in the __EventLog_DecodeDesc Function, Insertions replace unintended variables after %1- %9 | Jon | BILGUS |
Description |
EventLog_DecodeDesc uses string replace on Insertion place holders returned from _WinAPI_FormatMessage ex. %1, %2, %3, %4, %5, %6, %7, %8, %9, %10, %11, %12 However every instance is replaced therefore The data in %1 is also replaced in %10, %11, %12, %13 etc the data in %2 is replaced in %20 %21 etc. For instance if %1 contains Foo %10 becomes Foo0 %11 becomes Foo1 %12 becomes Foo2 The fix is to change $sDesc = StringReplace($sDesc, "%" & $iI, $aStrings[$iI]) to $sDesc = StringReplace($sDesc, "%" & $iI, $aStrings[$iI],1) Func EventLog_DecodeDesc($tEventLog)
EndFunc ;==>EventLog_DecodeDesc |
|||
#1223 | Fixed | _GUICtrlStatusBar_EmbedControl() Failing in beta | Jpm | Beege |
Description |
The example given in the documentation will produce the error I keep getting. I think the problem is originating in _memread() fuction, but im not sure. C:\Program Files\AutoIt3\beta\Include\GuiStatusBar.au3 (257) : ==> Subscript used with non-Array variable.: Local $iBarX = $aRect[0] Local $iBarX = $aRect ERROR |
|||
#1228 | Completed | FTPEx.au3 missing callback parameter for some functions. | Jpm | Beege |
Description |
Each one of these functions use another function that allows a callback($l_Context) to be passed, but dosent include an option to pass the callback. _FTP_DirPutContents uses _FTP_FilePut _Ftp_ListToArray, _Ftp_ListToArray2D, _FTP_ListToArrayEx all use Internel _FTP_ListToArray which uses _FTP_FindFileFirst. One small problem(not really a problem) that i ran into with this is that if you use a callback with _FTP_Connect, every time you use these functions _FTP_Connect reports that a handle has been created. Since the callback is not passed to the any of these functions, they do not report that the handle is being closed which made it apperar like I had all these open handles or something. Documentation changes to $l_Context discription. Here is the current descriptions: _FTP_Connect - 'Optional, I dont got a clue what this does.' _FTP_FileOpen - '(Not Used) See notes below. _FTP_FileGet - '(Not Used) in case someone can use it.' _FTP_FilePut - '(Not Used) in case someone can use it.' _FTP_FindFileFirst - '(Not Used) in case someone can use it.' _FTP_Command - 'Optional, A pointer to a variable that contains an application-defined value used to identify the application context in callback operations' I feel that all of these descriptions should be the same. Having them all point to _FTP_FileOpen might be good because that function includes a true desription about what it is and the requirements(InternetSetStatusCallback) to use it. THANKYOU FOR AUTOIT! |