As far as I know you can not minimize the form. Do you need the form to
stay open while working on the sheet? then you may try to use the modeless
function? for the form.
Sub showform()
UserForm1.Show modeless
End Sub
or may be you can write a code to resize the form when you double click on
it or a button
Private Sub UserForm_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.