Originally posted by: scott
Do you have any suggestions about how to implement this using ATL?
ReplyOriginally posted by: DJ Emas
Try it.
ReplyOriginally posted by: Justin Deltenr
I was tinkering for agood hour trying to get deltas and convert positions, and aaaaaall i needed was one line..What else is there to say besides "elegant".
great work, thanks!
ReplyOriginally posted by: Sol
Thanks Craig for a clever solution to this problem. it's very useful for my new app.
cheers,
Sol.
ReplyOriginally posted by: ]-[arvester
Neat!! And i needed something like this =)
You got any more????
ReplyOriginally posted by: Ape
It works.. Cool
Reply
Originally posted by: Alen Stanisic
Nice Trick I Think ...
It Work With Me And My Dialogs ... tnx
alen
Originally posted by: real name
void CMyPropertyPage::OnLButtonDown(UINT nFlags, CPoint point)
{
CPropertyPage::OnLButtonDown(nFlags, point);
// fake windows into thinking your clicking on the caption, does not
// maximize on double click
GetParent()->PostMessage( WM_NCLBUTTONDOWN, HTCAPTION, MAKELPARAM( point.x, point.y));
}