《1》

  WNDCLASSEX wcex;

   

   wcex.cbSize= sizeof(WNDCLASSEX);

   wcex.style= CS_HREDRAW | CS_VREDRAW;

   wcex.lpfnWndProc= WndProc;

   wcex.cbClsExtra= 0;

   wcex.cbWndExtra= 0;

   wcex.hInstance= hInstance;

   wcex.hIcon= LoadIcon(hInstance, MAKEINTRESOURCE(IDI_MYTABLETEST));

   wcex.hCursor= LoadCursor(NULL, IDC_ARROW);

   wcex.hbrBackground= (HBRUSH)(COLOR_WINDOW+1);

   wcex.lpszMenuName= MAKEINTRESOURCE(IDC_MYTABLETEST);

   wcex.lpszClassName= szWindowClass;

   wcex.hIconSm= LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_SMALL));

   

   RegisterClassEx(&wcex);

《2》

   如果不需要,可以用:

   LPCTSTR m_pClass = ::AfxRegisterWndClass(nClassStyle, hCursor, hbrBackground, hIcon);