Can someone tell me how to change the style of a listview in code.
i wanted to dynamically change a listview to have or not have %LVS_singleSEL
Paul.
You can toggle it with the following code:
vStyle = GetWindowLong(hList, %GWL_STYLE)
SetWindowLong hList, %GWL_STYLE, vStyle XOR %LVS_SINGLESEL
David
Your a star, Cheers boss!!