NO

Author Topic: SDI Splitter Vert&Horz  (Read 4545 times)

Offline TimoVJL

  • Global Moderator
  • Member
  • *****
  • Posts: 2091
SDI Splitter Vert&Horz
« on: May 24, 2005, 08:00:54 PM »
Simple SDI splitter, vertical and horizontal for tree windows.

I forget this correction from zip:
Code: [Select]
case WM_MOUSEMOVE:
if (abs(LOWORD(lParam)- uDragV) < 5)
SetCursor(LoadCursor(NULL, IDC_SIZEWE));
else if (abs(HIWORD(lParam)- uDragH) < 5)
SetCursor(LoadCursor(NULL, IDC_SIZENS));
else SetCursor(LoadCursor(NULL, IDC_ARROW));
« Last Edit: January 17, 2013, 02:21:26 PM by timovjl »
May the source be with you

Anonymous

  • Guest
Re: SDI Splitter Vert&Horz
« Reply #1 on: May 24, 2005, 09:29:37 PM »
Quote from: "timovjl"
Simple SDI splitter, vertical and horizontal for tree windows.


Nice!  Thank you.