Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (175 - 177 of 3866)

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.

#683 No Bug Setting new text with _GUICtrlTab_SetItemText Gary Josbe
Description

Setting text with _GUICtrlTab_SetItemText() doesn't update the width of tabitem. The bug it seems produced from _GUICtrlTab_SetItem. Example taken from Helpfile:

#include <GuiConstantsEx.au3>
#include <GuiTab.au3>

Opt('MustDeclareVars', 1)

$Debug_TAB = False ; Check ClassName being passed to functions, set to True and use a handle to another control to see it work

_Main()

Func _Main()
	Local $hTab

	; Create GUI
	GUICreate("Tab Control Set Item Text", 400, 300)
	$hTab = GUICtrlCreateTab(2, 2, 396, 296)
	GUISetState()

	; Add tabs
	_GUICtrlTab_InsertItem($hTab, 0, "Tab 1")
	_GUICtrlTab_InsertItem($hTab, 1, "Tab 2")
	_GUICtrlTab_InsertItem($hTab, 2, "Tab 3")
	
	; Get/Set tab 1 text
	_GUICtrlTab_SetItemText($hTab, 0, "New Text")
	MsgBox(4160, "Information", "Tab 1 text: " & _GUICtrlTab_GetItemText($hTab, 0))

	; Loop until user exits
	Do
	Until GUIGetMsg() = $GUI_EVENT_CLOSE
	GUIDelete()
EndFunc   ;==>_Main
#687 No Bug @Unicode exodius
Description

Per the Changelog dated 16th May, 2008 - v3.2.12.0: Changed: @Unicode renamed in @AutoItUnicode. @Unicode is an alias for now. It will be removed > 3.2.14.0

@AutoItUnicode appears in the Macro Reference list/Index of the current production version (3.2.12.1) but doesn't appear in Macro Reference list/Index of the current Beta(3.2.13.10).

GuiCtrlCreateDate's example still uses @Unicode.

And finally, neither @AutoItUnicode nor @Unicode appear in the SciTe lexer/suggestions (so the use of either throws potential error warnings).

Note: See TracQuery for help on using queries.