I'm looking for a way to call a procedure(sub or function) using a variable. I want to be able to:

Dim strFunctionName as String

strFunctionName = "Exit" (where Exit is the name of the sub)
Call strFunctionName


or something to this effect

Does anyone know if this is possible?
FoxPro has macro substitution that allows this sort of thing using the ampersand(&), but I don't know about VB.