What code do I use to attach event handler that will open my user.

T

TeresaManley

I have to attach a code with vba that will open my userform when you click my
command button. Help please
 
F

FSt1

hi.
Sub macShoForm()

Load frmYourForm
frmYourForm.Show 0
AppActivate Application.Caption

End Sub
 
Top