John
This is where it stands now. The first - navigation - one works all of the
time but the second and third - navigation - work so inconsistantly I don't
know what is going on. Basically I need to turn off all of the filters for
all of my subforms.
The event is triggered from a subform
Forms![frmWIPExplorer]![sfmCustomerLetters]
Public Sub codAllFiltersOff()
Forms![frmWIPExplorer]![sfmCompanyNames].SetFocus
Forms![frmWIPExplorer]![sfmCompanyNames].Form.FilterOn = False
Forms![frmWIPExplorer]![sfmSONumbersLarge].SetFocus
Forms![frmWIPExplorer]![sfmSONumbersLarge].Form!strShopOrderNumber.SetFocus
Forms![frmWIPExplorer]![sfmSONumbersLarge].Form.FilterOn = False
Forms![frmWIPExplorer]![sfmSONumbersSmall].SetFocus
Forms![frmWIPExplorer]![sfmSONumbersSmall].Form!strShopOrderNumber.SetFocus
Forms![frmWIPExplorer]![sfmSONumbersSmall].Form.FilterOn = False
End Sub
Thanks
Mike S.