Custom Query (3931 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (217 - 219 of 3931)

Ticket Resolution Summary Owner Reporter
#680 No Bug Listview and image background problem Jon anonymous
Description

When there is an image set as the background of a GUI and a listview on top, when certain things appear over the listview, ex. msgbox, in that particular area of the listview after the msgbox is gone there will be a "hole" and you will see through the listview to the image background. The following example with the uploaded image demonstrates it. The $GUI_ENABLE, I put to make sure the listview shows after the GUI shows, could be put right after the msgbox IN THIS PARTICULAR EXAMPLE to show the listview in its entirety after the msgbox clears, but in many other examples it fails.

#include <GUIConstantsEx.au3>

GUICreate("Test", 300, 300)
GUICtrlCreatePic(@ScriptDir & "\testimage.gif", 0, 0, 300, 300)
GUICtrlSetState(-1, $GUI_DISABLE)
GUICtrlCreateLabel("Something", 30, 30, 200, 25)
$listview = GUICtrlCreateListView("1col|2col",10,10,280,280)
GUISetState()
GUICtrlSetState ( $listview, $gui_enable )

Sleep(2000)
MsgBox(0,0,0)


While 1
	Sleep(50)
WEnd

Is this known, or can it be resolved. This doesn't happen with any other gui control I've tried.

#682 Completed Remove 64K line limit for FileReadLine() Jon PsaltyDS
Description

Ref documentation change in BugTrac #681.

FileReadLine() uses a 64K buffer and returns each 64K portion of a longer line as a separate line. Request change to assemble complete line before returning, or in the alternative, return a flag in @error or @extended that indicates the entire line was not returned.

Demo:

Global $sFile = "test.txt", $hFile, $n
Global $sLine = "012345467890"
FileDelete($sFile)

; Create large line
Do
    $sLine &= $sLine
Until Stringlen($sLine) > 2^16
ConsoleWrite("Actual line length = " & StringLen($sLine) & @LF)

; Open file
$hFile = FileOpen($sFile, 2) ; Overwrite
For $n = 1 To 10
	; Write 10 lines
    FileWriteLine($hFile,$sLine)
Next
FileClose($hFile)

; Test with FileReadLine()
$n = 1 
While 1
	$sLine = FileReadLine($sFile, $n)
	If @error Then ExitLoop
	ConsoleWrite("Line " & $n & " length = " & StringLen($sLine) & @LF)
	$n += 1
WEnd

#741 No Bug RegRead on Win XP x64 is not Working. Jon avira1@…
Description

Hi

i found a Bug in the Function RegRead on Windows XP Sp2 x64.

I will read the Registrykeys under "\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{ID}".

This is not Working...

On Windows XP Sp2 32 bit is all OK and this Bug is only on Win XP 64bit reproduceable.

Has RegRead() some Problems with {} in the Keypath and x64 bit?

Greetings, sneubert

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.