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

    What control for form on a SDI?

    I have a form with a treeview and listview. When a particular item in the treeview is selected I want the listview to become invisible and a form (kinda like properties) to show in it's place. So the treeview will remain but the listview is replaced with a properties page (not a popup though, just sitting to the treeview's right side).

    I know how to make the listview invisible, but how do I get a control next to the treeview to put my editable controls (text, check, etc) on? I was thinking a frame?

    Anyone got any code that does something similar?



  2. #2
    Join Date
    Jun 2001
    Location
    MO, USA
    Posts
    2,868

    Re: What control for form on a SDI?

    A frame is what you need to use... put your other controls on the frame during design time and set the frames visible property to false, then when you need it, set it to true.


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