I need to pass the name of a Clarion routine to a Variable and run it.
E.g:
!************************
RoutineName='CalculateSomething'
DO RoutineName
!************************
It does not work in this format so I've also tried other characters (brackets, quotations etc) before and after the variable. No luck.
Please note that the Routine 'CalculateSomething' exists and runs fine with the basic command:
!************************
DO CalculateSomething
!************************