calling sub by variable name

E

Eyal Semo

Hi all
how can i call a sub (VB) from another sub (same module)
where the sub name is variable ?
Tnx, eyal
 
O

Ofer

To run a sub use

Run(VariableName)
=========================
To run a function

Eval(VariableName)
=========================
 
Top