Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Calling a function dynamically like macro substitution i
Message
 
To
28/04/2001 02:04:08
General information
Forum:
Visual Basic
Category:
Other
Miscellaneous
Thread ID:
00501193
Message ID:
00501218
Views:
24
>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?

Something like this:
if InList("'2'",split(strSearchFor,",")) then ...
Éric Moreau, MCPD, Visual Developer - Visual Basic MVP
Conseiller Principal / Senior Consultant
Moer inc.
http://www.emoreau.com
Previous
Reply
Map
View

Click here to load this message in the networking platform