CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2010
    Location
    Russia
    Posts
    69

    Is windows splitter

    How can I check is window under cursor splitter?

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

    Re: Is windows splitter

    Do you mean MFC splitter window (CSplitterWnd ow CSplitterWndEx) or any custom splitter?
    If the latter - there is no way (IMHO) detect it if you don't know the window class name.
    If the former - then it could be tricky: class names could be AfxMDIFrame42, AfxMDIFrame42d, AfxMDIFrame100ud, ...
    Sounds like "AfxMDIFrame" + version (42 for VC++6.0, 100 for VS2010, ...) + [optional "u" for unicode] + [optional "d" for debug].
    But note that it is NOT documented!!!
    Victor Nijegorodov

Tags for this Thread

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