-
FlexPro
- At a Glance
- Features & Options
- Applications
- All Advantages
- What’s New in FlexPro 2021
- Try FlexPro For Free
- FlexPro View OEM Freeware
- Buying Guide
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Products
- News
- Support
- Company
- Contact
- Login
- Language
- +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.