F
Froto
Here is my problem. I have a search form with several
search options for users. What has bee working is once
the user selects a name and clicks the search button, a
separate form would open with the results. What I would
like to happen is place this form as a subform in the
main search form. I have this code placed behind the
onclick event of the button.
DoCmd.OpenForm "SearchForForm", , , "([submitter] = '" &
Me("txtname") & "')"
txtname = ""
I would Like to change this code to show the results of
the searchforform as a subform in main form without it
opening as a separate form. Hope this makes sense.
Thanks
search options for users. What has bee working is once
the user selects a name and clicks the search button, a
separate form would open with the results. What I would
like to happen is place this form as a subform in the
main search form. I have this code placed behind the
onclick event of the button.
DoCmd.OpenForm "SearchForForm", , , "([submitter] = '" &
Me("txtname") & "')"
txtname = ""
I would Like to change this code to show the results of
the searchforform as a subform in main form without it
opening as a separate form. Hope this makes sense.
Thanks