Custom Query (3931 matches)
Results (295 - 297 of 3931)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #3705 | No Bug | Fixed: Assigning objects by reference to COM properties | ||
| Description |
The fix described in the title probably broke new feature added in 3.3.10.0: Changed: Run-time errors on objects no longer fatal (execution of the script is not halted). Here is an example that works in 3.3.10.x, but produces fatal error in 3.3.14.x: $oDict = ObjCreate('Scripting.Dictionary')
$oDict.Add('test', 'ok')
ConsoleWrite($oDict.Item('test') & @CRLF)
$oDict.Remove('test')
;Purpesly remove again not existing item, which will produce fatal error in 3.3.14.x
;Uncomment condition to solve this issue
;If $oDict.Exists('test') Then
$oDict.Remove('test')
;EndIf
|
|||
| #3704 | Fixed | _FileWriteToLine docs update for hidden files | ||
| Description |
_FileWriteToLine will fail on hidden files, it should be mentioned in the docs, as it's done in FileOpen (since it's using it): A file may fail to open due to access rights or attributes. maybe add there note about hidden file, since it's used often. |
|||
| #3703 | Wont Fix | 2 ^ 49 and further return wrong results | ||
| Description |
Bug starts at 2 49 and further. Sample code: $iInt64 = Int(2 ^ 49, 1) ConsoleWrite($iInt64 & @lf) 562949953421313 |
|||
Note:
See TracQuery
for help on using queries.
