Hello. I have a model which has a list of diagrams. For each diagram I want to see the list of tables in that diagram - I currently have a list of all the tables from all diagrams, but I can't work out how to show just the tables for one diagram.
Thanks.
Biffi
try this:
1. create computed read only extended attribute "Active Diagram Flag" with the Get method:
Function %Get%(obj)
Dim tab, found
found = false
for each tab in ActiveDiagram.Symbols
if tab.object = obj then
found = true
exit for
end if
next
%Get% = found
End Function
2. Add the extended attribute into List of tables with operator "=" and expression "true"
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.