Revenge Posted January 8, 2008 Posted January 8, 2008 (edited) How to create List View with borders such as the $WS_EX_CLIENTEDGE style does? Edited January 8, 2008 by Revenge
Revenge Posted January 8, 2008 Author Posted January 8, 2008 How to create List View with borders such as the $WS_EX_CLIENTEDGE style does? Well I found the solution in garyFrost's other posts. Need to put it in the *_Create insteed in the *_SetExtendedListViewStyle function. see bellow example \ $hListView = _GUICtrlListView_Create ($GUI, "", $aiSize[0] - 185, 92, 170, $aiSize[1] - 220,-1, BitOR($WS_EX_CLIENTEDGE, $WS_EX_STATICEDGE)) _GUICtrlListView_SetExtendedListViewStyle ($hListView, BitOR($LVS_EX_FULLROWSELECT, $LVS_EX_CHECKBOXES, $LVS_EX_REGIONAL,$LVS_EX_GRIDLINES,$LVS_EX_REGIONAL,$LVS_EX_DOUBLEBUFFER))
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