Modify ↓
Opened 11 years ago
Closed 11 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 Changed 11 years ago by guinness
- Milestone set to 3.3.11.4
- Owner set to guinness
- Resolution set to Fixed
- Status changed from new to closed
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
Note: See
TracTickets for help on using
tickets.
Fixed by revision [9890] in version: 3.3.11.4