I have about a dozen textboxes on my form - each with a
Private Sub txtBox1_AfterUpdate()
runFilter
End Sub
Where runFilter is a sub that I developed that checks the status of all the textboxes to build a filter. Here's my question, is there an easier way for each of these controls to reference the runFilter sub without having to code for each one like i've done?
Private Sub txtBox1_AfterUpdate()
runFilter
End Sub
Where runFilter is a sub that I developed that checks the status of all the textboxes to build a filter. Here's my question, is there an easier way for each of these controls to reference the runFilter sub without having to code for each one like i've done?