I wish to direct the program to a subroutine which name I do not know beforehand - so during runtime I make up this name.
How can I make up a name and use it in the call function like in :
I have two subroutines called AddIntegers and AddSingle for adding integers and single numbers in separate routines.
During runtime I would test the number and if it is an integer I wish to direct execution to the subroutine called AddIntegers like in
If number is integer run AddIntegers :
SubRoutineName="Add" & "Integers"
Call SubRoutineName
Can anyone help
Thanks
How can I make up a name and use it in the call function like in :
I have two subroutines called AddIntegers and AddSingle for adding integers and single numbers in separate routines.
During runtime I would test the number and if it is an integer I wish to direct execution to the subroutine called AddIntegers like in
If number is integer run AddIntegers :
SubRoutineName="Add" & "Integers"
Call SubRoutineName
Can anyone help
Thanks