I have 3 tables, Actions, Objects and AO, where "AO" a table that relates Actions and Objects, each row is a pair the other tables' keys)
I have a form that is generated with values from Objects, each form page only shows info on one Object. What I would like to do is to add a list box that shows what Actions are available for this Object.
I would guess that the listbox would have to be populated by the query
"select Actions.* from Actions Inner join AO on Actions.key = AO.Akey inner join Objects on Objects.key = AO.BKey where Objects.Key = [filter]"
And the [filter] value would be the current form page's Object's key, but how can I get it?
How can I do this?
Thanks in advance
I have a form that is generated with values from Objects, each form page only shows info on one Object. What I would like to do is to add a list box that shows what Actions are available for this Object.
I would guess that the listbox would have to be populated by the query
"select Actions.* from Actions Inner join AO on Actions.key = AO.Akey inner join Objects on Objects.key = AO.BKey where Objects.Key = [filter]"
And the [filter] value would be the current form page's Object's key, but how can I get it?
How can I do this?
Thanks in advance
Comment