-
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
Home > Community > FPScript > Access different paths within a for loop > Antwort auf: Access different paths within a for loop
Januar 5, 2008 um 3:00 am Uhr
#8786

Teilnehmer
For this purpose you can use the Indirection Operator $$ in FPScript.
This operator serves to access data sets and variables by using their names.
Example:
Dim names, max, globalmax
names = .Parent.Objects("Data.*").Names
For Each Row i In names Do
max = Maximum($names$)
If DataType(globalmax) == TYPE_EMPTY Or max > globalmax then
globalmax = max
End
End
See also
FlexPro Help
Analyzing Data|Reference|FPScript Operators|Data Access|Indirection