BOOL Create( DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID );
Return Value
TRUE if the CProgressCtrl object is successfully created; otherwise FALSE.
Parameters
dwStyle
Specifies the progress bar control’s style. Apply any combination of window styles, in addition to the following progress bar control styles, to the control:
rect
Specifies the progress bar control’s size and position. It can be either a CRect object or a RECT structure. Because the control must be a child window, the specified coordinates are relative to the client area of the pParentWnd.
pParentWnd
Specifies the progress bar control’s parent window, usually a CDialog. It must not be NULL.
nID
Specifies the progress bar control’s ID.
Remarks
You construct a CProgressCtrl object in two steps. First call the constructor, which creates the CProgressCtrl object; then call Create, which creates the progress bar control.
CProgressCtrl Overview | Class Members | Hierarchy Chart
See Also CProgressCtrl::CProgressCtrl