Assign vba code to a form button

armesca

Registered User.
Local time
Today, 17:01
Joined
Apr 1, 2011
Messages
45
I know there is a way to do this, but cannot find it on the web. I want to take eight different functions, all contained in one vba module, and run all of them with the click of a button I created on a form. How do I do this? Thanks!
 
In the click event of the button you would call them

Code:
Private Sub ButtonNameHere_Click()
   Function1
   Function2
   Function3
   ...etc.
End Sub
 

Users who are viewing this thread

Back
Top Bottom