PW5 107

    PAINTSTRUCT ps ;
    HDC     hdc  = ::BeginPaint(hwnd,&ps) ;
    RECT    rect ={    0,0,0,0    } ;
    ::GetClientRect(hwnd,&rect) ;
    this->Draw(hdc,rect) ;
    ::EndPaint(hwnd,&ps ;


PW5 111

    HDC     hdc  = ::GetDC(hwnd) ;
    RECT    rect ={    0,0,0,0    } ;
    ::GetClientRect(hwnd,&rect) ;
    this->Draw(hdc,rect) ;
    ::ReleaseDC(hwnd,hdc) ;