Control Topics

OverviewSamples

Controls are objects that users can interact with to enter or manipulate data. They commonly appear in dialog boxes or on toolbars. This article family covers three main kinds of controls:

  • Windows common controls, including owner-drawn controls

  • ActiveX Controls

  • Other control classes supplied by the Microsoft Foundation Class Library (MFC)

Windows Common Controls

The Windows operating system has always provided a number of Windows common controls. These control objects are programmable, and the Visual C++ dialog editor supports adding them to your dialog boxes. The Microsoft Foundation Class Library (MFC) supplies classes that encapsulate each of these controls, as shown in the table Windows Common Controls and MFC Classes. (Some items in the table have related articles that describe them further. For controls that lack articles, see the documentation for the MFC class.)

Class is the base class of all window classes, including all of the control classes. The Windows common controls are supported in the following environments:

  • Windows 95

  • Windows NT, version 3.51 and later

  • Win32s, version 1.3 (Visual C++ version 4.2 and later do not support Win32s)

The older common controls — check boxes, combo boxes, edit boxes, list boxes, option buttons, pushbuttons, scroll bar controls, and static controls — were available in earlier versions of Windows as well.

ActiveX Controls

ActiveX controls, formerly known as OLE controls, can be used in dialog boxes in your applications for Windows, or in HTML pages on the World Wide Web. For more information, see ActiveX Control Topics.

Other MFC Control Classes

In addition to classes that encapsulate all of the Windows common controls and that support programming your own ActiveX controls (or using ActiveX controls supplied by others), MFC supplies the following control classes of its own:

Finding Information About Windows Common Controls

The table below briefly describes each of the Windows common controls, including the control's MFC wrapper class.

Windows Common Controls and MFC Classes


Control

MFC Class

Description
New in Windows 95?
animation displays successive frames of an AVI video clip yes
button pushbuttons that cause an action; also used for check boxes, radio buttons, and group boxes no
combo box combination of an edit box and a list box no
date and time picker allows the user to choose a specific date or time value yes
edit box boxes for entering text no
extended combo box a combo box control with the ability to display images yes
header button that appears above a column of text; controls width of text displayed yes
hotkey window that enables user to create a "hot key" to perform an action quickly yes
image list collection of images used to manage large sets of icons or bitmaps (image list isn't really a control; it supports lists used by other controls) yes
list window that displays a list of text with icons yes
list box box that contains a list of strings no
month calendar control that displays date information yes
progress window that indicates progress of a long operation yes
rebar tool bar that can contain additional child windows in the form of controls yes
rich edit window in which user can edit with character and paragraph formatting (see Classes Related to Rich Edit Controls) yes
scroll bar scroll bar used as a control inside a dialog box (not on a window) no
slider window containing a slider control with optional tick marks yes
spin button pair of arrow buttons user can click to increment or decrement a value yes
static-text text for labeling other controls no
status bar window for displaying status information, similar to MFC class CStatusBar yes
tab analogous to the dividers in a notebook; used in "tab dialog boxes" or property sheets yes
toolbar window with command-generating buttons, similar to MFC class CToolBar yes
tool tip small pop-up window that describes purpose of a toolbar button or other tool yes
tree window that displays a hierarchical list of items yes

What do you want to know more about?