-
Posts
140 -
Joined
-
Last visited
-
Days Won
10
Community Answers
-
kurtykurtyboy's post in _GUICtrlHeader_Create() without divider was marked as the answer
I'm not exactly sure what you're trying to achieve. I couldn't figure out how to hide the header divider line without custom drawing the entire thing. But if you just need to simulate a toolbar-like row of buttons, you could check this out - specifically the 2nd example.
shameless plug...
-
kurtykurtyboy's post in ListView Flicker, and failing to DeleteAll. was marked as the answer
@RichardL Try adding the $LVS_EX_DOUBLEBUFFER extended style. This eliminated all flickering for me.
$cLV = GUICtrlCreateListView("Column 0|Colourable|Column 2|Column 3|C4|C5", 10, 10, $iGW - 20, $iGH - 20, BitOR($LVS_SINGLESEL, $LVS_SHOWSELALWAYS)) _GUICtrlListView_SetExtendedListViewStyle($cLV, BitOR($LVS_EX_FULLROWSELECT, $WS_EX_CLIENTEDGE, $LVS_EX_DOUBLEBUFFER))