Original Post
Hey ho guys, i once again rely on your help. I am currenty writing on some window classes, and I wish to change the style of some windows while the windows are running. e.g., I want to ad a scroll bar to a listbox or maybe remove a scroll bar from a list box. This is what i tried so far: current style of the Listbox: dwstyle = LBS_NOTIFY | WS_BORDER | WS_CHILD; Trying to add the scroll bar: dwstyle |= WS_VSCROLL; SetWindowLong(hwnd, GWL_style, dwstyle); ShowWindow(hwnd, SW_SHOW); Unfortunatly nothing is changed by these three lines and as far as I understand the references that is all there should be done. Thank you for any insight! cherio Woltan