GoTo

Hallo Forum,
ich möchte eine GoTo-Anweisung schreiben, mit der der Anwender alle im Projekt enthaltenen Layouts auswählen kann mit Ausnahme vom "Layout_Kontrollkarte". Mein Script klappt nicht. Wer kann helfen ?
theDocs = av.GetProject.GetDocs
theLays = {}
For each aDoc in theDocs
If (aDoc.GetClass.IsSubClassOf (Layout) and (aDoc. Is(Layout.Name = "Dialog_Kontrollkarte").Not)) then
theLays.Add(aDoc)
end
end

NochnKlaus
Zum Beispiel:

theDocs = av.GetProject.GetDocs
theLays = {}
For each aDoc in theDocs
If ((aDoc.GetGUI = "Layout") and (aDoc.GetName = "Dialog_Kontrollkarte").Not) then
theLays.Add(aDoc)
end
end

Msgbox.MultiList(theLays,"","")
Hallo Maxilla,
Vielen Dank für die schnelle und (NATÜRLICH !) gute Antwort
NochnKlaus