I've read a few posts where people build their query string in access via the code and then send that over to get the results. Is that the best way or is it better to come up with a stored procedure in SQL to handle that.
I guess is what I'm looking for is if I have an unbound form with a handful of fields and I only choose to fill in one or maybe even part of one or the other, that it will open up a new form that contains a list of results.
Has anyone had any expereince/luck with something like this working?
Example (unbound fields on form: FName, LName, Gender, etc..)
If I fill in:
FName: J
LName: Doe
Gender: M
Is that it returns:
John Doe
Jake Doer
and not Jenny Doe and the such.
Not sure how involved this actually is, but how have others handled this?
I guess is what I'm looking for is if I have an unbound form with a handful of fields and I only choose to fill in one or maybe even part of one or the other, that it will open up a new form that contains a list of results.
Has anyone had any expereince/luck with something like this working?
Example (unbound fields on form: FName, LName, Gender, etc..)
If I fill in:
FName: J
LName: Doe
Gender: M
Is that it returns:
John Doe
Jake Doer
and not Jenny Doe and the such.
Not sure how involved this actually is, but how have others handled this?