-
FlexPro
- Zoom sur FlexPro
- Fonctionnalités & Options
- Domaines d’application
- Tous les avantages
- Nouveau dans FlexPro 2021
- Testez FlexPro gratuitement
- FlexPro View OEM Freeware
- Conseils d’achat
- Login
- Langue
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produits
- News
- Support
- Société
- Emplois
- Contact
- Login
- Langue
- +49 6894 929600
- infoweisang.com
- Google Maps
Accueil > Community > FPScript > Variable search string for Objects.Names > Reply To: Variable search string for Objects.Names
October 26, 2012 at 1:54 pm
#9253
Bernhard Kantz
Participant
The Objects.Names property uses a string as select argument. This can be a constant string like “^P1.*\.FLD$” or a variable containing such a value.
If for example someone wants to specify the folder by a varying number, a code fragment like
Dim no = 1
Dim select = "^P" : String no : ".*\.FLD$"
dim folderNames = \Messdaten\.Objects(select).Names
lists all folders under the root folder Messdaten prefixed with ‘P’ and the number.
If one uses names like “P001”, “P002”, … to distinguish between the different objects, the following expression constructs these strings from a numeric value:
Dim no = 1
Dim objName = "P" : StringMid(String (no + 1000), 1)