CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Nov 2005
    Posts
    159

    Multiple forms application

    Hi all,

    I've been searching the net but can't find what I'm looking for. I assume the main reason is that I don't know the name of what I'm looking for

    I would like to make an application that looks similar to for example the visual studio IDE in which you can place several "subforms" such as project explorer, output, error list etc. You can move them around in one 'main form', collect them in one place, drag them around, ...

    Can anyone give me a hint as to what this is called and how I can achieve this?

    thanks in advance,

    Jef

  2. #2
    Join Date
    Jan 2006
    Location
    18° 32' N / 73° 52' E
    Posts
    416

    Thumbs up Re: Multiple forms application

    Quote Originally Posted by Jef Patat
    Hi all,

    I've been searching the net but can't find what I'm looking for. I assume the main reason is that I don't know the name of what I'm looking for

    I would like to make an application that looks similar to for example the visual studio IDE in which you can place several "subforms" such as project explorer, output, error list etc. You can move them around in one 'main form', collect them in one place, drag them around, ...

    Can anyone give me a hint as to what this is called and how I can achieve this?

    thanks in advance,

    Jef
    You are in need of multiple document interface(MDI) application. If you want your application to look like what you have in Visual Studio, then search the net for Dockable Forms. Also, checkout these links

    http://sourceforge.net/projects/dockpanelsuite

    http://www.codeproject.com/KB/miscct...select=1666962
    Last edited by MMH; September 13th, 2008 at 03:08 PM.

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