MackMan
Registered User.
- Local time
- Today, 20:01
- Joined
- Nov 25, 2014
- Messages
- 174
I'm know I'm not going stupid here. I'm filtering a sub form in datasheet using an option group frame, and the on click does exactly what I want it to do. Everything works splendidly.
However, Once I'm done filtering, I can either set the filter to all ...
Or click a Button "Remove Filter"
(I've tried both references to the subform too... "Me." and "forms!etcetc"
However, the subform filter isn't switching off.
I'm missing something.. I have to be? Right?
However, Once I'm done filtering, I can either set the filter to all ...
Code:
Case 1
Forms!frmmain!frmtoplinelist.form.FilterOn= False
Code:
Private Sub btnClear_Click()
Me.frmTopLineList.Form.FilterOn = False
End Sub
However, the subform filter isn't switching off.
I'm missing something.. I have to be? Right?