CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 8 of 8
  1. #1
    Join Date
    May 1999
    Location
    Fort Worth Texas
    Posts
    614

    Multiple Windows

    For a particular project we need to create an enviroment with multiple windows like seen in the VC enviroment. For example we need to have like "Workspace Window", a "Output Window", etc. These would need to be adjustable like those found in the IDE of VC. So what classes do I use? Does anyone know of a source showing some simple examples, etc.?

    Thanks

    Jim Bassett


  2. #2
    Join Date
    Apr 1999
    Posts
    43

    Re: Multiple Windows

    Try using CTreeView


  3. #3
    Join Date
    May 1999
    Location
    Fort Worth Texas
    Posts
    614

    Re: Multiple Windows

    I understand for tree lists I can use the CTreeView, but what I am asking is do I place this type of view and the other needed views into a splitter window so that the program environment behaves in a fashion like for instance developer studio?

    Thanks

    Jim Bassett


  4. #4
    Join Date
    Apr 1999
    Posts
    27,449

    Re: Multiple Windows

    Try this link:

    http://www.codejockeys.com/kstowell/

    Regards,

    Paul McKenzie


  5. #5
    Join Date
    Apr 1999
    Posts
    383

    Re: Multiple Windows

    You could try the Stingray Software (now part of RogueWave) dockable frame window classes. They have a complete workspace UI class library whichwill probably do everything you want. www.stingray.com

    Dave


  6. #6
    Join Date
    Apr 1999
    Posts
    24

    Re: Multiple Windows

    I've done this exact thing with Stingray's toolkit. I recommend it.


  7. #7
    Guest

    Re: Multiple Windows

    While I can't remember Stingray's exact license agreement, I know that our company has had problems with it because they want the every programmer that might possibly ever see the code to be licensed. So if you have 10 programmers, even though only 1 ever works on the user interface, you need to have 10 licenses.

    I am using Codejockey's CJ60Lib which allows me to do what you are asking for instead of Stingray now. I rather enjoy working with their product. You can reference Paul McKenzie's message in the other thread for more info.



  8. #8
    Join Date
    May 1999
    Location
    Oregon, USA
    Posts
    302

    Re: Multiple Windows

    Also, see the Advanced UI section of this site.
    It has several interesting samples of Kirk's libraries.



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