April 13, 200619 yr I'm looking but can't find a way to list just the layouts for a given table in a file. Any help? Thanks, r
April 13, 200619 yr You would have to loop thru each layout and on each layout you would If(GetLayoutTableName) = "TblIamlookingfor";Get(LayoutName);"") Hope this helps.
April 13, 200619 yr If you use a global to hold the list of layout names and one to hold the table name you are currently seeking, then Freeze Window Go to Layout[1] Set Field [someTable::globalLayoutNames; ""] Loop If [Get(LayoutTableName) = someTable::globalTableToFind] Set Field [globalLayoutNames; someTable::globalLayoutNames & Get(LayoutName) & ¶] End If Exit Loop If [Get(LayoutNumber) = ValueCount(LayoutIDs(Get(FileName)))] Go to Layout [Get(LayoutNumber) + 1] End Loop Go to Layout [original layout] should work for each table name you enter in globalLayoutNames.
Create an account or sign in to comment