How can I do a Filter-by-Selection from a button I create?

C

CJ

I would like to have the user click the button on the form, rather than
sending them to a toolbar.
 
A

Allen Browne

Try this in the Click event procedure of your button:

RunCommand acCmdFilterBySelection
 
Top