My form contains a conditional browse whose condition is is based on the value of a field in another browse and it�s not working. Have I misspecified the browse and what happened to the conditional browse's columns in the Object Explorer?
Here�s the condition expression:
Tblpersonprofileitem->Profile_Id=Tblpersonprofile->Profile_Id
I even have placed a type-in field on my form for tblPersonprofile->Profile_Id and it is being ignored.
The form behaves correctly in every manner except that this filter is not correctly applied; instead all records are displayed.
The form is based on the following set definition
What I�m trying to do is replicate the functionality that Janna Professional Contact manager offered before it the company was acquired and that product was discontinued.
It is a very handy way to allow your user to �customize� your form without actually exposing them to form design.
If any of you have read any of Harvey McKay�s books such as �Swim with Sharks without being Eaten Alive,� you may recall that this master of the Rolodex captured 66 different items on his contact such as hobbies, schools attended, who picks up the restaurant check, kids names, etc. This information is farily unstructured and you don�t necessarily want to maintain all the information on all of your contacts.
So here is my design:
One person can have many profiles
One profile can have many items.
One person can have one item value for each item for each profile assigned to him/her.
My plan is to allow the user to maintain tblProfile and tblProfileItem on a separate form.
Any ideas why the browse is just sitting there. I even added a button to refresh the form, but that doesn�t help.
Please see frmPersonProfileItemTest in the attached database.
Click on each line in the first browse and note that the second and third browses are perfectly synchronized and that the type in value of Profile_Id also changes correctly.
But all records are displayed in the fourth browse.
The problemsome browse is Browse9. I�m also concerned that none of its columns are exposed in the Object Explorer. I would hope its possible to set color and fonts individually for a conditional browse just as easily as for an embedded browse. Is this possible?
Bob McGaffic
Pittsburgh, PA
Here�s the condition expression:
Tblpersonprofileitem->Profile_Id=Tblpersonprofile->Profile_Id
I even have placed a type-in field on my form for tblPersonprofile->Profile_Id and it is being ignored.
The form behaves correctly in every manner except that this filter is not correctly applied; instead all records are displayed.
The form is based on the following set definition
Code:
tblPerson (Person_Id) ----tblPersonProfile (Person_Id, Profile_Id) --------tblProfile (Profile_Id) ------------tblProfileItem (Profile_Id, Item_Id) --------tblPersonProfileItem (PersonId, Profile_Id, Item_Id)
It is a very handy way to allow your user to �customize� your form without actually exposing them to form design.
If any of you have read any of Harvey McKay�s books such as �Swim with Sharks without being Eaten Alive,� you may recall that this master of the Rolodex captured 66 different items on his contact such as hobbies, schools attended, who picks up the restaurant check, kids names, etc. This information is farily unstructured and you don�t necessarily want to maintain all the information on all of your contacts.
So here is my design:
One person can have many profiles
One profile can have many items.
One person can have one item value for each item for each profile assigned to him/her.
My plan is to allow the user to maintain tblProfile and tblProfileItem on a separate form.
Any ideas why the browse is just sitting there. I even added a button to refresh the form, but that doesn�t help.
Please see frmPersonProfileItemTest in the attached database.
Click on each line in the first browse and note that the second and third browses are perfectly synchronized and that the type in value of Profile_Id also changes correctly.
But all records are displayed in the fourth browse.
The problemsome browse is Browse9. I�m also concerned that none of its columns are exposed in the Object Explorer. I would hope its possible to set color and fonts individually for a conditional browse just as easily as for an embedded browse. Is this possible?
Bob McGaffic
Pittsburgh, PA
Comment