Jul 13, 2012 at 5:46am UTC
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?
Jul 13, 2012 at 10:33am UTC
Last edited on Jul 13, 2012 at 10:33am UTC