Mathematician
Registered User.
- Local time
- Today, 01:35
- Joined
- Nov 23, 2007
- Messages
- 17
Hi,
I have procedure:
sub test_thirst()
msgbox("This is test")
end sub
and I would like to call this procedure using a variable as a name of the procedure above, I mean sth like this:
sub run_variable()
My_Variable="test_thirst"
Call My_Variable
' Here my procedure test_thirst should to start but it is not. Do you
' have any suggestions?
end sub
Thank You in advance for any help.
Mathematician
I have procedure:
sub test_thirst()
msgbox("This is test")
end sub
and I would like to call this procedure using a variable as a name of the procedure above, I mean sth like this:
sub run_variable()
My_Variable="test_thirst"
Call My_Variable
' Here my procedure test_thirst should to start but it is not. Do you
' have any suggestions?
end sub
Thank You in advance for any help.
Mathematician