|
-
May 3rd, 1999, 08:56 AM
#1
UnResizable Splitter
Hi !
Can anybody approve me, how I can create a non-resizable spliter in the SDI.
Thanks.
-Wladi.
-
May 4th, 1999, 09:32 AM
#2
Re: UnResizable Splitter
Derive a class from CSplitterWnd and catch the following messages:
WM_LBUTTONDOWN
WM_LBUTTONUP
WM_LBUTTONDBLCLICK
WM_MOUSEMOVE
In each case return the CWnd handler instead of the CSplitterWnd handler. E.g.:
void CFixedSplitter::OnLButtonDblClk(UINT nFlags, CPoint point)
{
CWnd::OnLButtonDblClk(nFlags, point);
}
-
May 7th, 1999, 08:44 PM
#3
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|