-
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
String as a folder name
- This topic has 2 replies, 2 voices, and was last updated 20 years, 10 months ago by jasmina.zlender@erl16.siemens.de.
-
AuthorPosts
-
January 13, 2004 at 7:40 pm #12535
There is a string in FlexPro formula. How can I ask if there is a folder that has this string as name?In VBA I use is Nothing operator in such cases.
January 13, 2004 at 8:25 pm #8198There is a string in FlexPro formula. How can I ask if there is a folder that has this string as name?In VBA I use is Nothing operator in such cases.
January 13, 2004 at 8:25 pm #8868Bernhard KantzParticipantA possible solution could be the following: Create a new formula, rename it to IsFolder and paste the following text into the formula editor:
arguments strFolder dim Err try $strFolder : ".FLD"$.Name catch Err return FALSE End return TRUE
Then you could call this helper formula like this:
If IsFolder("Folder") Then ... If IsFolder("AFolderAnotherFolder") Then ...
The formula IsFolder tries to convert the object name into a reference to the object. If the object exists this is possible and accessing the Name property of the folder is a valid operation. Otherwise an error will occur which will be catched by the catch statement. The variable Err contains the error message as a string, but we do not need it here.
Support
support@weisang.com -
AuthorPosts
- You must be logged in to reply to this topic.