I need to add additional information(contact data from tr_contact related to the member) on an edit form on the table 'tr_membre';
However, these 2 tables are not directly linked together via a foreign key.
Indeed, I have got the browse on
Code: Select all
select * from tr_membre
join tr_role on rl_external_id = mb_id and rl_role = 'Membre'
join tr_contact on rl_contact_id = ctt_id
It does not work also; nothing is display as before
Also, I have create a browse&edit on the view. Updates work well but not add function.
It always uses the same key... this already exists.
For me, both solutions (subform or browse&edit on the view) could be fine if I can add and update membre and associated contact data.
I hope my question is clear enough
Thanks in advance
Bri