Show MDI with Form

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • pbala
    New Member
    • Dec 2008
    • 37

    Show MDI with Form

    Hi,
    I need The MDI and Log-in form in the same MDI while loading.
    The Condition is both MDI and Login in Active mode.
    Problem:
    If I acceess the MDI then the Login form send back.....
  • nukefusion
    Recognized Expert New Member
    • Mar 2008
    • 221

    #2
    Hello,
    Try setting the TopMost property of the login form to True and see if that helps.

    Comment

    • OuTCasT
      Contributor
      • Jan 2008
      • 374

      #3
      Code:
      ' Create a new instance of the child form.
              Dim ChildForm As New System.Windows.Forms.Form
              ' Make it a child of this MDI form before showing it.
              LoginForm.MdiParent = Me
              m_ChildFormNumber += 1
              LoginForm.Show()

      Comment

      • pbala
        New Member
        • Dec 2008
        • 37

        #4
        Thank you

        Hi,
        Thank U ... Its working....

        Comment

        • pbala
          New Member
          • Dec 2008
          • 37

          #5
          Thank U

          Hi,
          Its working... Can u tell me, how 2 or 3 forms are placed in the order inside the MDI form while pressing buttons. All the forms from menu button must be inside of the MDI form and it will be resized as it information contains

          Comment

          Working...