Topic
Variable in signal path
- This topic has 1 reply and 2 voices and was last updated 7 years, 9 months ago ago by Bernhard Kantz.
Viewing 2 posts - 1 through 2 (of 2 total)
-
AuthorPosts
-
27.07.2017 at 16:36 #33632HerveM1234Participant
Hi,
I would like to use a variable instead of the path name when calling a function.
ie :
Result = MyFunction(‘FolderASignal1’)
works fine
but
Dim Fld = “FolderA”
Result = MyFunction(Fld :: Signal1)
doesn’t work –> syntax problem
Thanks for Help
28.07.2017 at 09:54 #33633Bernhard KantzParticipantYou can use the indirection operator $string-expression$ to access an FlexPro object from its (path) name given as a string:
Dim Fld = "FolderA\" $Fld : "Signal1"$
accesses the object ‘Signal1’ in ‘FolderA’ relative to the path of the formula containing the expression. Note the double backslash, it is necessary because the acts as escape character.
-
AuthorPosts
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.