how to call up another event proceedure

steve111

Registered User.
Local time
Today, 09:08
Joined
Jan 30, 2014
Messages
429
hi
I have 3 event procedure with 3 buttons to make them run
I would like to create another button that can run all procedures togehter

if I copy one of the procedures how do I tell it to run the other 2

thanks
steve
 
from the On Click event of the 4th button you created, just run the click event of the other 3 buttons:

Private sub button4_Click()
Call button1_Click
Call button2_Click
Call button3_Click
End Sub
 
thank you
all ok now

steve
 

Users who are viewing this thread

Back
Top Bottom