The “Evaluations” folder “disappeared” after converting to Vertec 5.0.
After the conversion to Vertec 5.0, it is possible that the “Evaluations” folder will no longer be visible.
This folder “Evaluations” was previously on the same level as the master files folder.
If you want to show this folder again in Vertec 5.0, you can run the Scipt below. Please proceed as follows:
Optionen to open the Script Editor... 'Durchsucht die Datenbank nach einem
'Auswertungsordner und zeigt diesen an.
'Zusatzscript zu Version Vertec 5.0
'28.01.2005 / Vertec AG
Dim Ordnerlist
Dim Ordner
Set Ordnerlist = Vertec.eval("abstractordner->select"_
&"(eintragid='OrdnerAuswertungen')")
if Ordnerlist.count > 0 then
Set Ordner = Ordnerlist.objects(0)
Ordner.member("eintragid") = ""
end if
Execute button.Auswertungen should now be shown again.