I have an array with 8 elements. Each element holds a string which is the name of a particular method. I'm wanting to run through all 8 elements running each method in order to produce my results. After building the array I tried to call the methods:
ModuleName.MyArray(i)
I got an error stating that a name of a procedure was expected rather then a variable. Is there any way to call a method or function by using a variable for it's name?
ModuleName.MyArray(i)
I got an error stating that a name of a procedure was expected rather then a variable. Is there any way to call a method or function by using a variable for it's name?