I want to create an associative array, similar to PERL language, using Visual Basic 6.
Example: Using PERL
%A = ("A"=>"Apple"," B"=>"Banana" );
i.e., A is associated to the word Apple and B is associated to the word Banana. The alternative conversion is:
$A{'A'} = "Apple";
$A{'B'} = "Banana";
Similarly i want the conversion in Visual Basic 6. Is it possible?
---------------------------------------------
T. Ashok Kumar
<email address removed>
_______________ _____________
Example: Using PERL
%A = ("A"=>"Apple"," B"=>"Banana" );
i.e., A is associated to the word Apple and B is associated to the word Banana. The alternative conversion is:
$A{'A'} = "Apple";
$A{'B'} = "Banana";
Similarly i want the conversion in Visual Basic 6. Is it possible?
---------------------------------------------
T. Ashok Kumar
<email address removed>
_______________ _____________
Comment