Results 1 to 2 of 2

Thread: [RESOLVED] MDI Child and Parent problems???

Threaded View

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Oct 2006
    Posts
    343

    Resolved [RESOLVED] MDI Child and Parent problems???

    Ok. I have two problems.
    1. I want the Child form to have an opacity of .7 when it loses focus. But it doesn't seem to work. Any reason why?
    2. Whenever my child has focus, the menubar items disappear. But when they don't have focus they are there. Any reason why this would happen? [resolved]

    My program makes new forms when you hit "New".
    Code to make a new form:
    VB Code:
    1. Dim ChildForm As New Form1
    2.         ChildForm.MdiParent = Me
    3.         m_ChildFormNumber += 1
    4.         ChildForm.Text = "New Document " & m_ChildFormNumber
    5.         ChildForm.Show()
    Last edited by bluehairman; Feb 14th, 2007 at 10:17 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