My understanding is that it is best to create a new form rather than show the basic one. I believe this is a method of saving memory.
Code:
Sub StartUserForm()
Dim myNewForm As myForm
Set myNewForm = New myForm
myNewForm.Show
Unload myNewForm
Set myNewForm = Nothing
End Sub