Ist View leer ?

Hallo NewsGroup,
ich habe ein spezielles Projekt aufbereitet und möchte beim Start abfragen, ob im View irgendwelche Themen geladen sind.
Wie mach ich das im StartUp-Script ???
NochnKlaus
Hi Klaus,

z.B. so in der Art:

theView = av.FindDoc("View1")

if ((theView <> NIL) and (theView.is(View))) then
theThms = theView.GetThemes
theThmCount = theThms.count

if (theThmCount = 0) then
MsgBox.Info(theView.GetName+" ist leer","")
else
MsgBox.Info(theView.GetName+" enthält "+theThmCount.AsString++"Themen.","")
end
end
Hallo Maxilla,

danke - klappt prima

Klaus