|
|
Title | Keep a form on top of another form, but not on top of all forms |
Keywords | on top, topmost |
Categories | API, Tips and Tricks |
|
|
Use the parent form parameter in the Show method.
|
|
' Display Form2 with this form as its parent.
Private Sub Form_Load()
Form2.Show , Me
End Sub
|
|
|
|
|
|