kenneth.campos
Registered User.
- Local time
- Today, 17:24
- Joined
- Jan 2, 2010
- Messages
- 11
I have 10 check boxes. I want all of them to run a function after update. Is there a way to put all 10 on one sub, instead of having to have a sub for each box?
Instead of
etc...
Could I have something like
Thanks!
Instead of
Code:
Sub Chk1_AfterUpdate()
Function
End Sub
Sub Chk2_AfterUpdate()
Function
End Sub
Could I have something like
Code:
Sub Chk1 through Chk10_AfterUpdate()
Function
End Sub