Windows Forms Controls Used to List Options
Visual Studio .NET 2003
You can add a variety of controls to a Windows Form if you want to provide users with a list of options to choose from. Depending on how much you want to restrict your users' input, you can add a ListBox control, a ComboBox control, or a CheckedListBox control. Use the following links to determine which control best suits your needs.
In This Section
- When to Use a Windows Forms ComboBox Instead of a ListBox
- Recommends an appropriate list-based control depending on the needs and restrictions of your Windows Form.
- Accessing Specific Items in a Windows Forms ComboBox, ListBox, or CheckedListBox Control
- Gives instructions for programmatically determining which item in a list appears in a given position.
- Adding and Removing Items from a Windows Forms ComboBox, ListBox, or CheckedListBox Control
- Gives instructions for adding or removing items from a control's list of items.
- Creating a Lookup Table for a Windows Forms ComboBox, ListBox, or CheckedListBox Control
- Gives directions for displaying and storing form data in useful formats.
- Data Binding a Windows Forms ComboBox or ListBox Control
- Gives directions for binding a list-based control to a data source.
- Sorting the Contents of a Windows Forms ComboBox, ListBox, or CheckedListBox Control
- Explains how to sort list data at its data source.
Related Sections
- CheckedListBox Class
- Describes this class and has links to all its members.
- Introduction to the Windows Forms CheckedListBox Control
- Explains what this control is and its key features and properties.
- ComboBox Class
- Describes this class and has links to all its members.
- Introduction to the Windows Forms ComboBox Control
- Explains what this control is and its key features and properties.
- ListBox Class
- Describes this class and has links to all its members.
- Introduction to the Windows Forms ListBox Control
- Explains what this control is and its key features and properties.
- Controls You Can Use On Windows Forms
- Provides a complete list of Windows Forms controls, with links to information on their use.