Modify

Opened 12 years ago

Closed 12 years ago

#2661 closed Bug (Fixed)

_GUICtrlHeader_GetItemFlags.au3

Reported by: Tweaky Owned by: guinness
Milestone: 3.3.11.4 Component: AutoIt
Version: 3.3.11.3 Severity: None
Keywords: Cc:

Description

_GUICtrlHeader_GetItemFlags.au3
_GUICtrlHeader_SetItemFlags.au3

I think it is missing two lines

	; Create GUI
	$hGUI = GUICreate("Header", 400, 300)
	$hHeader = _GUICtrlHeader_Create($hGUI)
	_GUICtrlHeader_SetUnicodeFormat($hHeader, True)
	GUISetState(@SW_SHOW)

It should be

	; Create GUI
	$hGUI = GUICreate("Header", 400, 300)
	$hHeader = _GUICtrlHeader_Create($hGUI)
	_GUICtrlHeader_SetUnicodeFormat($hHeader, True)
	$iMemo = GUICtrlCreateEdit("", 2, 24, 396, 274, 0)
	GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New")
	GUISetState(@SW_SHOW)

Attachments (0)

Change History (1)

comment:1 by guinness, 12 years ago

Milestone: 3.3.11.4
Owner: set to guinness
Resolution: Fixed
Status: newclosed

Fixed by revision [9890] in version: 3.3.11.4

Modify Ticket

Action
as closed The owner will remain guinness.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.