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:
Dim ChildForm As New Form1 ChildForm.MdiParent = Me m_ChildFormNumber += 1 ChildForm.Text = "New Document " & m_ChildFormNumber ChildForm.Show()




Reply With Quote