﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
680	Listview and image background problem	anonymous	Jon	"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."	Bug	closed		AutoIt	3.2.12.1	Blocking	No Bug		
