a little more clarification on my question
I'm writing a form that has a few pull down menus and a bunch of data.
After a user makes a selection in a pull down menu, a new form is opened
that asks for more user input. Based on the user input, I need to apply
filters to the first form. I think it would be most beneficial to me if
I could pass the information needed to apply the filter back to the
original form, since I may need to use it later. The original form
stays open while the second one is being manipulated by the user.
Currently, I'm opening the second form as an acDialog:
Dim stDocName As String
stDocName = "HA_Family_Selector"
DoCmd.OpenForm stDocName, , , , , acDialog
Inside the second form (HA_Family_Selector), I need to get the value of
ComboFamily.Name back to the original form.
I've tried a variety of different methods to get this to work, but I
haven't had any success yet. How would you do this?
Thanks,
Dana