Alexxander Posted April 5, 2015 Share Posted April 5, 2015 Hi i'am using GUICtrlCreateListView and _GUICtrlListView_InsertColumn and _GUICtrlListView_AddSubItem every thing is ok it look like this: but the customer what the list to look like this:(Points) he want to have Divider lines between the list rows how could i do that ? Link to comment Share on other sites More sharing options...
JohnOne Posted April 5, 2015 Share Posted April 5, 2015 #include <ListViewConstants.au3> $LVS_EX_GRIDLINES Alexxander 1 AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
Alexxander Posted April 5, 2015 Author Share Posted April 5, 2015 #include <ListViewConstants.au3> $LVS_EX_GRIDLINES great but now i loosed the line highlight when clicked ! $idListview = GUICtrlCreateListView("", 2, 2, 696, @DesktopHeight - @DesktopHeight/3, 0,$LVS_EX_GRIDLINES) any ideas ? Link to comment Share on other sites More sharing options...
JohnOne Posted April 5, 2015 Share Posted April 5, 2015 Try. $idListview = GUICtrlCreateListView("", 2, 2, 696, @DesktopHeight - @DesktopHeight/3, $LVS_REPORT, BitOR($LVS_EX_GRIDLINES, $LVS_EX_FULLROWSELECT)) Alexxander 1 AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
Alexxander Posted April 6, 2015 Author Share Posted April 6, 2015 Try. $idListview = GUICtrlCreateListView("", 2, 2, 696, @DesktopHeight - @DesktopHeight/3, $LVS_REPORT, BitOR($LVS_EX_GRIDLINES, $LVS_EX_FULLROWSELECT)) Perfect thank you ! 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