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

    Mdi form positioning(design?)

    hellow together!

    I have one problem to make mdi form design.
    i wanna design look like under

    -----------------------------------------------------
    | tool bar |
    | |
    -----------------------------------------------------
    | | |
    | tree | fixed form |
    | view | |
    | |---------------------------------------------|
    | |mdi child here! |
    | | |
    | | |
    | | |
    | | |
    | | |
    | | |
    | | |
    | | |
    | | |
    | | |
    | | |
    -----------------------------------------------------

    tool bar and tree view is possible but fixed form(or picture box)
    not fix like that.

    no ways here?




  2. #2
    Join Date
    May 2001
    Location
    Russia
    Posts
    200

    Re: Mdi form positioning(design?)

    private Sub MDIForm_Load()
    Form1.Left = 1000
    Form1.Top = 1000
    End Sub

    private Sub MDIForm_Resize()
    Form1.Left = 1000
    Form1.Top = 1000
    End Sub



    This code fix Form1 into MDIForm.

    Andy Tower

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