There's an implied relationship between my two tables, "People" and "Rides". My form shows "rides" records. I only want my form to show the rides for a given person, so I'm using:
On this form new rides can be added--and I'm using APPEND BLANK for this. When my filtered "rides" table doesn't contain any records and I attempt to add one, I'm having some weird problems (like my bound controls disabling). I'm assuming this is because I have a filter set, and I'm adding a new record--which upon addition doesn't satisfy the filter condition. Has any dealt with a similar situation before? If I do a REPLACE on the field that's being filtered so it satisfies the filter condition shouldn't it then be included? Do I have to do some kind of refresh or a SKIP or something?
Appreciate the help.
Code:
SET FILTER TO rides.PeopleID=people.PeopleID IN "rides"
Appreciate the help.