Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
625 B

  1. #include "stdafx.h"
  2. #include "WizardSheet.h"
  3. LRESULT CExportFinishPage::OnInitDialog( UINT, WPARAM, LPARAM, BOOL& )
  4. {
  5. // Set the fonts
  6. SetWindowFont( GetDlgItem( IDC_TITLE ), m_pTheSheet->m_fontTitles.get(), FALSE );
  7. CString strMsg;
  8. strMsg.Format( IDS_FINISH_MSG_EXP,
  9. m_pTheSheet->m_pageSelectSite.m_strSiteName,
  10. m_pTheSheet->m_pagePkgCfg.m_strFilename );
  11. VERIFY( SetDlgItemText( IDC_MSG, strMsg ) );
  12. return 1;
  13. }
  14. BOOL CExportFinishPage::OnSetActive()
  15. {
  16. SetWizardButtons( PSWIZB_FINISH );
  17. return TRUE;
  18. }