I have a parent MDI form and a child form. The menu on the MDI has a "New Customer" selection which brings up the child form when clicked. How can I prevent the user from going back to the MDI unless they closed the child form? vbModal doesnt work.

Code:
Private Sub mnuCustomerNewCustomer_Click()

    frmNewCustomer.Show(vbModal)
        
End Sub