Macros


Posted by *Chris* on January 15, 2002 3:26 AM

How do I create a macro to run a user form?

Thanx :)



Posted by DK on January 15, 2002 4:22 AM

Say your form is called Userform1 this would show it:-

Sub ShowForm()
Userform1.Show
End Sub

HTH,
D