How to Add the Finish Button to a Wizard Property Sheet

Last reviewed: July 10, 1997
Article ID: Q143210
4.00 WINDOWS NT kbprg kbcode kbhowto

The information in this article applies to:

  • The Microsoft Foundation Classes (MFC) included with: Microsoft Visual C++, 32-bit Edition, version 4.0

SUMMARY

By default, a wizard style property page can have either the Back/Next buttons or the Finish button, but not both. To have both, you can show the Finish button and move the Back/Next buttons.

MORE INFORMATION

When a Wizard-style property sheet is displayed, all of the default buttons are created, but the Finish button is hidden and located under the Next button. To display all of the default buttons, you must show the Finish button and move the Next button. Then move the Back button so that its relative position to the Next button is maintained.

The following sample code displays the Finish button and moves the Next and Back buttons to the left of the Finish button. CMyWizardSheet is derived from CPropertySheet.

Sample Code

/* Compile options needed:  Default
*/

BOOL CMyWizardSheet::OnInitDialog() {
    BOOL bResult = CPropertySheet::OnInitDialog();

    CRect rect, tmp;
    CSize shift;
    CWnd* pTemp;
    CWnd* pNext;

    // Get The position of the Cancel Button
    pTemp = GetDlgItem(IDCANCEL);
    if (pTemp==NULL)
        return bResult;
    pTemp->GetWindowRect(tmp);

    // Get The position of the Next Button
    pNext = GetDlgItem(ID_WIZNEXT);
    if (pNext==NULL)
        return bResult;
    pNext->GetWindowRect(rect);

    // Calculate the distance to shift the Next and Back buttons
    shift.cx = tmp.left-rect.right+rect.Width();;
    shift.cy = 0;

    // Get The position of the Back Button
    pTemp = GetDlgItem(ID_WIZBACK);
    if (pTemp==NULL)
        return bResult;
    pTemp->GetWindowRect(tmp);

    // move the Back button
    tmp -= shift;
    ScreenToClient(tmp);
    pTemp->MoveWindow(tmp);

    // move the Next button
    ScreenToClient(rect);
    tmp = rect-shift;
    pNext->MoveWindow(tmp);

    // Show the Finish Button
    pTemp = GetDlgItem(ID_WIZFINISH);
    if (pTemp==NULL)
    return bResult;
    pTemp->ShowWindow(SW_SHOW);

    return bResult;
}


Additional reference words: 4.00 CPropertyPage CPropertySheet
KBCategory: kbprg kbcode kbhowto
KBSubcategory: MfcUI
Keywords : MfcUI kbcode kbhowto kbprg
Technology : kbMfc
Version : 4.00
Platform : NT WINDOWS


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: July 10, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.