◄CWnd► ◄Up► ◄Contents► ◄Index► ◄Back► ──Microsoft Foundation Classes────────────────────────────────────────────── afx_msg void OnNcLButtonDown( UINT nHitTest, CPoint point ); Parameter Description <nHitTest> Specifies the ◄hit-test code►. A hit test is a test that determines the location of the cursor. <point> Specifies a CPoint that contains the x and y screen coordinates of the cursor position. These coordinates are always relative to the upper-left corner of the screen. Remarks Called when the user presses the left mouse button while the cursor is within a nonclient area of CWnd. If appropriate, the ◄WM_SYSCOMMAND► is sent. This message-handler member function calls the ◄Default► member function. Override this member function in your derived class to handle the ◄WM_NCLBUTTONDOWN► message. See Also ◄CWnd::OnNcHitTest►, ◄CWnd::OnNcLButtonDblClk►, ◄CWnd::OnNcLButtonUp►, ◄CWnd::OnSysCommand►, ◄WM_NCLBUTTONDOWN►, ◄CWnd::Default► -♦-