Modify ↓
Opened 17 years ago
Closed 17 years ago
#1106 closed Bug (Wont Fix)
ListView with $WS_EX_STATICEDGE Under Vista no text
| Reported by: | anonymous | Owned by: | |
|---|---|---|---|
| Milestone: | Component: | AutoIt | |
| Version: | 3.3.0.0 | Severity: | None |
| Keywords: | GUICtrlCreateListView $WS_EX_STATICEDGE Vista | Cc: |
Description
I run XP but as i tested my code on Vista i noticed the extended style "$WS_EX_STATICEDGE" applied to a GUICtrlCreateListView caused Vista to not show text in the control, under XP it works fine.
Change the GUICtrlCreateListView example to demonstrate the issue. Remember it's only affecting Windows Vista.
Add these lines to the Example file,
Global Const $LVS_EX_CHECKBOXES = 0x00000004
$listview = GUICtrlCreateListView("debug",5,40,466,200, -1,$WS_EX_STATICEDGE) ; remove $WS_EX_STATICEDGE for text.
Attachments (0)
Note:
See TracTickets
for help on using tickets.

Definitely Vista does not accept to set the data windows return and error so the listviewitem is not created as you can see if you check the creation result.