Info Posted July 14, 2011 Share Posted July 14, 2011 $Listview = _GUICtrlListView_Create($GUI,"",8, 224, 489, 254, 0x0000000D, $LVS_EX_FULLROWSELECT) _GUICtrlListView_AddColumn($Listview, "C1", 122) _GUICtrlListView_AddColumn($Listview, "C2", 90) _GUICtrlListView_AddColumn($Listview, "C3", 50) _GUICtrlListView_AddColumn($Listview, "C4", 70) _GUICtrlListView_AddColumn($Listview, "C5", 70) _GUICtrlListView_AddColumn($Listview, "C6", 70) For $i = 0 To 100 _GUICtrlListView_AddItem($Listview, "1") _GUICtrlListView_AddSubItem($Listview, $i, "2", 1) _GUICtrlListView_AddSubItem($Listview, $i, "3", 2) _GUICtrlListView_AddSubItem($Listview, $i, "4", 3) _GUICtrlListView_AddSubItem($Listview, $i, "5", 4) _GUICtrlListView_AddSubItem($Listview, $i, "6", 5) Next There's still no full row select. Any ideas what's wrong? Link to comment Share on other sites More sharing options...
AdmiralAlkex Posted July 14, 2011 Share Posted July 14, 2011 Set extended styles with _GUICtrlListView_SetExtendedListViewStyle() on udf-listview instead, works better. Don't know why. .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface Link to comment Share on other sites More sharing options...
Info Posted July 14, 2011 Author Share Posted July 14, 2011 Thanks, it works Thanks for the fast replay too! Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted July 14, 2011 Moderators Share Posted July 14, 2011 AdmiralManHairAlkex,Don't know whyIt is because the GUICtrlCreateListView function expects $WS_EX_* extended styles and rather than $LVS_EX_* extended styles. Moreover, the $LVS_EX_* extended styles are often numerically similar to $WS_EX_* ones and so cannot be distinguished. _GUICtrlListView_SetExtendedListViewStyle uses SENDMESSAGE to do the job and so avoids any confusion. M23 pixelsearch 1 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
AdmiralAlkex Posted July 14, 2011 Share Posted July 14, 2011 @Melba But this is _GUICtrlListView_Create, and the ex-styles are even listed in the helpfile (even though they don't seem to work) .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted July 14, 2011 Moderators Share Posted July 14, 2011 AdmiralManHairAlkex,But this is _GUICtrlListView_CreateSorry, I assumed it was the same function as in another thread on the same subject I answered a few days ago. However, given the numerical equivalence of the values I imagine it is the same problem, so perhaps we need to get the Help file changed. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now