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

    How do I change FormView size when its frame windows is resized

    I use FormView in MDIChildWnd.
    I want to resize original size of FormView (in desing time size) when MDIChildWnd window is resized.

    Please help me how to do it.



  2. #2
    Join Date
    May 1999
    Posts
    8

    Re: How do I change FormView size when its frame windows is resized

    The best way I've seen so far is Hans Buhler's "Dynamic child window repositioning" (http://www.codeguru.com/advancedui/c...sManager.shtml). This is some GREAT stuff...

    Kevin Lussier
    [email protected]


  3. #3
    Join Date
    Apr 1999
    Posts
    24

    Re: How do I change FormView size when its frame windows is resized

    I haven't tried to do this since VC 1.5, but what I remember is that you can resize the view, but the dialog template is a fixed size. I believe what we did was make the color of the view window the same as the template background so you couldn't tell where the template stopped and the view window started. Resizing the window too small, on the other hand, caused controls to be hidden. We tried WM_GETMINMAXINFO to prevent the window from being sized too small.


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

    Re: How do I change FormView size when its frame windows is resized

    Go to http://www.nanocorp.com and check out their NSViews library (it's free and you get the source).


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