i have some procedure in vb 6.0 like
sub a_on
msgbox"A"
end sub
Sub b_on
msgbox"B"
End sub
dim str as string
'str may be a_on or b_on
str="a_on"
i m planning to call procedure a_on or b_on based on the variable str
how to call the procedure a_on or b_on depending on variable
Software/Hardware used:
ASKED:
February 24, 2009 12:53 PM
UPDATED:
July 10, 2011 8:53 AM
You would need to use something similar to C++ pointers, but I don’t know of a way to do that in Visual Basic.
I guess you will need to use an IF .. THEN .. ELSE construct.