Custom Query
Results (271 - 273 of 3893)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1476 | Fixed | _DebugReportVar() example fails | Jon | Beege |
| Description |
The example in the documentation for function _DebugReportVar() fails with output: C:\Users\Brian\Documents\_DebugReportVar.au3 (37) : ==> Unable to parse line.: $binary = Binary(0x0102030405060708) $binary = Binary(0x0102030405060708 ERROR AutoIt:3.3.4.0 (Os:WIN_7/X86 Language:0409 Keyboard:00000409 Cpu:X64) |
|||
| #1492 | No Bug | Problem with listview AND $WS_EX_COMPOSITED in a gui | Jon | funkey |
| Description |
I have high CPU load and there is no listview visible. ;Problem with listview AND $WS_EX_COMPOSITED in a gui
$Form1 = GUICreate("Bug-Test", 200, 200, -1, -1, -1, BitOR(0x02000000, 0x00000010)); $WS_EX_COMPOSITED, WS_EX_ACCEPTFILES))
$hLV = GUICtrlCreateListView("", 10, 10, 180, 180)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case -3
Exit
EndSwitch
WEnd
AutoIt:3.3.4.0 (Os:WIN_XP/X86/Service Pack 2 Language:0407 Keyboard:00000407 Cpu:X64) |
|||
| #1515 | Fixed | FileOpen for Read fails on already opened file | Jon | M23 |
| Description |
From v3.3.5.3 Beta release notes: Fixed: Regression in FileOpen() where it wasn't allowed to open files in read mode if they were already open in write mode. In v3.3.6.0 you cannot open a file for reading if it is already open: $h_write = FileOpen('test.txt', 1)
$h_read = FileOpen('test.txt', 0)
If $h_read = -1 Then
FileClose($h_write)
MsgBox(0, @AutoItVersion, 'Failed to open handle for read')
EndIf
FileClose($h_write)
FileDelete('test.txt')
The same happens when the file is opened in other apps (although I have now learnt that Notepad does NOT lock its open files). Raised in http://www.autoitscript.com/forum/index.php?showtopic=109436&pid=780472&st=0&#entry780472 - post # 6 and onwards. M23 |
|||
