5 pts.
 How to call a procedure in VB 6 depending on variable
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

Answer Wiki:
Last Wiki Answer Submitted:  Be the first to answer this question.
All Answer Wiki Contributors:  Be the first to answer this question.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

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.

 63,580 pts.