I Invader89 Registered User. Local time Today, 05:12 Joined Sep 22, 2015 Messages 29 Sep 29, 2015 #1 Hi, I currently have form called 'form' that has 2 combo boxes ('Search by Player name' and 'Search by Player group') and 2 subforms that return different results based on selection you make. Last edited: Oct 19, 2015
Hi, I currently have form called 'form' that has 2 combo boxes ('Search by Player name' and 'Search by Player group') and 2 subforms that return different results based on selection you make.
I Invader89 Registered User. Local time Today, 05:12 Joined Sep 22, 2015 Messages 29 Sep 29, 2015 #2 Is there anyone who can help me with this?
pbaldy Wino Moderator Staff member Local time Today, 02:12 Joined Aug 30, 2003 Messages 36,272 Sep 29, 2015 #3 You could use this to open another form: http://www.baldyweb.com/multiselect.htm It could be adapted to filter a subform (it basically builds the filter).
You could use this to open another form: http://www.baldyweb.com/multiselect.htm It could be adapted to filter a subform (it basically builds the filter).
I Invader89 Registered User. Local time Today, 05:12 Joined Sep 22, 2015 Messages 29 Sep 30, 2015 #4 pbaldy said: You could use this to open another form: http://www.baldyweb.com/multiselect.htm It could be adapted to filter a subform (it basically builds the filter). Click to expand... what would need to change in the code to reference the subform? thanks
pbaldy said: You could use this to open another form: http://www.baldyweb.com/multiselect.htm It could be adapted to filter a subform (it basically builds the filter). Click to expand... what would need to change in the code to reference the subform? thanks
pbaldy Wino Moderator Staff member Local time Today, 02:12 Joined Aug 30, 2003 Messages 36,272 Sep 30, 2015 #5 Along the lines of: Me.SearchbySupp.Form.RecordSource = "SELECT * FROM TableName WHERE EmpID IN(" & strWhere & ")"
Along the lines of: Me.SearchbySupp.Form.RecordSource = "SELECT * FROM TableName WHERE EmpID IN(" & strWhere & ")"
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 17:12 Joined May 7, 2009 Messages 20,349 Nov 21, 2015 #6 is it possible for you to upload your db sir?