Pelles C forum

C language => User contributions => Topic started by: TimoVJL on May 24, 2005, 08:00:54 PM

Title: SDI Splitter Vert&Horz
Post by: TimoVJL 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));
Title: Re: SDI Splitter Vert&Horz
Post by: Anonymous on May 24, 2005, 09:29:37 PM
Quote from: "timovjl"
Simple SDI splitter, vertical and horizontal for tree windows.


Nice!  Thank you.