Hello Forum Members
I have two forms:
ReferenceLiterature with AfterUpdate Event and Split Form
I want to open the ReferenceLiterature_SearchResults form with the filtered records, but it is currently not working.Code:Private Sub FindCompany_AfterUpdate() Me.Filter = "AppliesTo=""" & FindCompany & """" Me.FilterOn = True DoCmd.OpenForm "ReferenceLiterature_SearchResults", acFormFS, , , , acHidden Forms!ReferenceLiterature_SearchResults.RecordSource = strSQL DoCmd.OpenForm "ReferenceLiterature_Searchresults", acFormFS End Sub
If I remove the OpenForm, then, AfterUpdate Event itself is just working fine.
Would you please help me how this can be accomplished?
ReferenceLiterature_SearchResults with WebBowser Control and Single Form to see the PDFs.
Thank you.