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.

77 lines
2.0 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1996-1998 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // VSCreated.cpp
  7. //
  8. // Abstract:
  9. // Implementation of the CWizPageVSCreated class.
  10. //
  11. // Author:
  12. // David Potter (davidp) February 11, 1998
  13. //
  14. // Revision History:
  15. //
  16. // Notes:
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. #include "stdafx.h"
  20. #include "VSCreated.h"
  21. #include "ClusAppWiz.h"
  22. #ifdef _DEBUG
  23. #define new DEBUG_NEW
  24. #undef THIS_FILE
  25. static char THIS_FILE[] = __FILE__;
  26. #endif
  27. /////////////////////////////////////////////////////////////////////////////
  28. // class CWizPageVSCreated
  29. /////////////////////////////////////////////////////////////////////////////
  30. /////////////////////////////////////////////////////////////////////////////
  31. // Control name map
  32. BEGIN_CTRL_NAME_MAP( CWizPageVSCreated )
  33. DEFINE_CTRL_NAME_MAP_ENTRY( IDC_WIZARD_PAGE_DESCRIPTION )
  34. DEFINE_CTRL_NAME_MAP_ENTRY( IDC_WIZARD_STEP1 )
  35. DEFINE_CTRL_NAME_MAP_ENTRY( IDC_WIZARD_STEP2 )
  36. DEFINE_CTRL_NAME_MAP_ENTRY( IDC_WIZARD_STEP2A )
  37. DEFINE_CTRL_NAME_MAP_ENTRY( IDC_WIZARD_STEP2B )
  38. DEFINE_CTRL_NAME_MAP_ENTRY( IDC_WIZARD_STEP2C )
  39. END_CTRL_NAME_MAP()
  40. /////////////////////////////////////////////////////////////////////////////
  41. //++
  42. //
  43. // CWizPageVSCreated::OnInitDialog
  44. //
  45. // Routine Description:
  46. // Handler for the WM_INITDIALOG message.
  47. //
  48. // Arguments:
  49. // None..
  50. //
  51. // Return Value:
  52. // TRUE Focus still needs to be set.
  53. // FALSE Focus does not need to be set.
  54. //
  55. //--
  56. /////////////////////////////////////////////////////////////////////////////
  57. BOOL CWizPageVSCreated::OnInitDialog( void )
  58. {
  59. //
  60. // Attach controls to control member variables.
  61. //
  62. AttachControl( m_staticStep2, IDC_WIZARD_STEP2 );
  63. //
  64. // Set the font of the control.
  65. //
  66. m_staticStep2.SetFont( PwizThis()->RfontBoldText() );
  67. return TRUE;
  68. } //*** CWizPageVSCreated::OnInitDialog()