Use reflection
Main Topics
Browse All TopicsI'm iterating through a loop which returns a string, which is the name of a function I need to call. What I'm trying to avoid using a select statement to make the calls, if this is possible.
Here's the idea:
sub PickAFunction()
dim i
dim aFunctionName
for i = 0 to someArray.length
aFunctionName = someArray(i)
call aFunctionName
next
end sub
but alas, aFunctionName is a string, not a function.
still, here's what i'm trying to avoid:
sub PickAFunction()
dim i as int
dim aFunctionName as string
for i = 0 to someArray.length
aFunctionName = someArray(i)
select case aFunctionName
case "One"
call One
case "Two"
call Two
'...
case "Googleplex"
call Googleplex
end select
next
end sub
Thanks in advance.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: ryancysPosted on 2004-04-15 at 11:52:03ID: 10835932
Try use CallByName function?
library/de fault.asp? url=/libra ry/ en-us/v blr7/html/ vafctCallB yNameFunct ion.asp e.com/Prog ramming/ Pr ogramming_ Languages/ Dot_Net/Q_ 20451568.h tml
http://msdn.microsoft.com/
http://www.experts-exchang