Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Calling a function dynamically like macro substitution inVFP
Message
From
28/04/2001 02:04:08
 
 
To
All
General information
Forum:
Visual Basic
Category:
Other
Title:
Calling a function dynamically like macro substitution inVFP
Miscellaneous
Thread ID:
00501193
Message ID:
00501193
Views:
54
I have a function called InList.
The syntax is :-

Private Function InList(strSearched As Variant, ParamArray ArraySearchFor()) As Boolean
Dim strSearchFor As Variant

For Each strSearchFor In ArraySearchFor
If strSearched = strSearchFor Then InList = True: Exit Function
Next strSearchFor
End Function

I have a string having the values of array which have to be passed as search values to the above function i.e. strSearchFor = "'2','3','7'"

How can i call this function in my code?

Please anybody help me.

Thanks in advance.
Next
Reply
Map
View

Click here to load this message in the networking platform