Common Controls: Window Styles

I am struggling to find a clear list of what classes/window styles I should use to make a basic control of each of the following types?

This is what I have so far.

TYPE: Button
CLASS: BUTTON
WS: WS_CHILD | WS_VISIBLE | BS_DEFPUSHBUTTON

TYPE: TextBox
CLASS: EDIT
WS: WS_CHILD | WS_VISIBLE | WS_BORDER | ES_MULTILINE | ES_AUTOHSCROLL | ES_AUTOVSCROLL

TYPE: Label
CLASS: STATIC
WS: WS_CHILD | WS_VISIBLE | SS_SIMPLE

TYPE: RadioButton
CLASS: BUTTON
WS: WS_CHILD | WS_VISIBLE | BS_AUTORADIOBUTTON

TYPE: CheckBox
CLASS: BUTTON
WS: WS_CHILD | WS_VISIBLE | BS_AUTOCHECKBOX

TYPE: ListBox
CLASS: LISTBOX
WS: WS_CHILD | WS_VISIBLE | ???

TYPE: ComboBox
CLASS: COMBOBOX
WS: WS_CHILD | WS_VISIBLE | ???

It would be really useful if someone could fill in any of the blanks / improve on what I already have?

Also, how do I get the controls to tab between each other?
Should this not be in the windows section of the forum, if so someone is going to report you
Recreated it in the windows section but dont know how to delete it now someones made a comment????
There are no admins here, we're a good community and don't feel the need for them. You won't get into trouble, just let it die off. In the future, you can simply move an already existing thread to another board by editting the thread at the top. There is a drop down box near the bottom of the edit screen that has the different boards i believe.
Topic archived. No new replies allowed.