CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Sep 1999
    Location
    Russia, Novosibirsk.
    Posts
    1

    Docking tab pages

    Hello,

    Could anyone please help me to implement docking tab pages in VC6 + MFC, I saw this kind of control in Delphi/C++ Builder environment and need to implement it in my new project written on VC. More precisely I want to let pages to be draged off tabsheet as popup windows and dock back to this control while dragged over it.

    Thank you very much
    Serge


  2. #2
    Join Date
    Sep 1999
    Location
    Germantown, MD, USA
    Posts
    74

    Re: Docking tab pages

    Hi!

    Unfortunately VC++ does not have the similar classes, such as Delphi and C++ Builder.

    VC++ have 2 ways for using tabs controls.
    1) Use CTabCtrl class (sorry, it is possible it is not correct name, I do not know exactly)
    2) Use CPropertySheet & CPropertyPage classes.
    I do not use first way and can describe using second way, if you are interested in it.

    Andrushok.


  3. #3
    Join Date
    Apr 1999
    Location
    Michigan, USA
    Posts
    115

    Re: Docking tab pages

    Go to http://www.codejock.com and download Kirk Stowell's library. It has what you are asking for and much more. You will also need the latest Microsoft SDK to compile the library.


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