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

Thread: Docking Windows

  1. #1
    Guest

    Docking Windows

    I am working on a project which deals with ImageProcessing. I want the UI very much similar to the Developer Studio.
    The list in the codeguru samples asks for VC++ 6.0. I am working on version 5.0. I want it to be simple as the first window(similar to class view)
    gives me the Attributes of the Image(The Currently highlighted window(the second), very similar to the source code window files) .
    The third docking window is similar to Debug window where in want use a RichEditText View , so that i can enter the text
    for annotation of the corresponding Image .


  2. #2
    Join Date
    May 1999
    Posts
    21

    Re: Docking Windows

    Hi,

    You may want to check "Docking Window"/"Resizable Docking Window 2". It works with VC 5.0.
    However, it provides only the resizable control bar functionality - the rest (the CTabCtrl and the child pages) must be implemented by you.
    Another thing - don't use CRichEditView, but CRichEditCtrl. Having CView derived windows on control bars can lead to impredictalble results.

    Regards,
    Cristi


  3. #3
    Guest

    Re: Docking Windows

    Hi Cristi,
    I am sandeep who had put this question across.
    Thanks for ur reply. I will try out what u have mentioned and mail u back.
    Keep in touch. My email id is [email protected]
    cheers
    sandeep


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