-
FlexPro
- Auf einen Blick
- Features & Optionen
- Einsatzgebiete
- Alle Vorteile
- Neu in FlexPro 2021
- FlexPro gratis testen
- FlexPro View OEM Freeware
- Kaufberatung
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produkte
- News
- Support
- Unternehmen
- Jobs
- Kontakt
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
How can I access all objects in the root folder with FPScript?
- Dieses Thema hat 4 Antworten sowie 3 Teilnehmer und wurde zuletzt vor vor 21 Jahren, 3 Monaten von Richard Weisang aktualisiert.
-
AutorBeiträge
-
August 7, 2003 um 7:40 pm Uhr #12546Richard WeisangAdministrator
I need to access multiple datasets in the root folder of the explorer dynamically.
August 7, 2003 um 7:54 pm Uhr #8880Bernhard KantzTeilnehmerThere is a property names “ObjectNames” to obtain the names of objects in a folder. Optionally this property accepts “wildcard” characters to restrict the object to be addressed.
The syntax to access the root folder is “.fld”. Once you have the list of object names, you can use the indirection operator $$ to access the objects.The following example computes the global maximum of all datasets beginning with “data”:
Dim names, max, globalmax, i names = .Fld.ObjectNames("Data*") For Each Value i In names Do max = Maximum($names$) If DataType(globalmax) == TYPE_EMPTY Or max > globalmax then globalmax = max End End globalmax
September 12, 2003 um 11:29 pm Uhr #8881g.foidl@jenbacher.comTeilnehmerHello!
How can I proceed in the same way in FlexPro Version 5?
September 18, 2003 um 8:29 am Uhr #8209Richard WeisangAdministratorI need to access multiple datasets in the root folder of the explorer dynamically.
September 18, 2003 um 8:29 am Uhr #8882Bernhard KantzTeilnehmerThis is not possible in FlexPro 5. This functionality was introduced in FlexPro 6.
Support
support@weisang.com -
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.