I know how to move the borderless form in CDialog.I quoted my code as follows.

It enabled the window to move by dragging it by any point inside the window!

   void MyWnd::OnLButtonDown(UINT nFlags, CPoint point) 
   {
        PostMessage( WM_NCLBUTTONDOWN, HTCAPTION, MAKELPARAM( point.x, point.y));
   }

What I need is how to move CDHTMLDialog borderless form.

Please respond as soon as possible.

thanks!!!

link|improve this question

feedback

2 Answers

Please try implementing the message handler OnNcHitTest and return HTCAPTION . This should work.

Thanks

link|improve this answer
feedback
up vote 0 down vote accepted

This code will get the mouse click events in pretranslate message

 BOOL CSampleDlg::preTranslateMessage(MSG* pMsg)
 {
     if(pMsg->message == WM_LBUTTONDOWN)
     {
          PostMessage( WM_NCLBUTTONDOWN, HTCAPTION, MAKELPARAM( pMsg->pt.x, pMsg->pt.y));
          return false;
     }
       return CDHtmlDialog::preTranslateMessage(pMsg);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.