CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: WTL splitter

  1. #1
    Join Date
    Oct 2010
    Location
    Russia
    Posts
    69

    WTL splitter

    I want to separate window by vertical splitter and separate left half of result by horizontal splitter. What did i do wrong?
    Code:
    m_wndVertSplit.Create ( *this, rcDefault, NULL, 0, WS_EX_CLIENTEDGE );
    UpdateLayout();
    m_wndHorSplit.Create ( m_wndVertSplit.GetSplitterPane(0), rcDefault, NULL, 0, WS_EX_CLIENTEDGE );
    UpdateLayout();
    m_wndVertSplit.SetSplitterPos ( 100 );
    m_wndHorSplit.SetSplitterPos ( 100 );

  2. #2
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,395

    Re: WTL splitter

    Could this article help you?
    Victor Nijegorodov

  3. #3
    Join Date
    Oct 2010
    Location
    Russia
    Posts
    69

    Re: WTL splitter

    Thanks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured