I have this algorithm that I want to implement on VB6.
Sub Main() dim stringVal1 as string, stringVal2 as string dim getOne as boolean stringVal1 = \"FunctO
It would help if you give more information about why you're needing to call functions by the string representation of their name. Could you not simply re-write your code like this:
If getOne Then Call FuncOne() Else Call FuncTwo() End If