I want to read values from text file
for Eg: My file "abc.txt" contains words in form given below;
Mumbai
Pune
Solapur
Amravati
.....
.....
now I want to place each word in an array
so that when i used msgshow(test[0])
then the popup should be Mumbai
similarly msg.show(test[1]) ==== Pune
Please note if next line has no value then it should go to the third line and if third also empty then it should consider end of reading txtfile...
Thankyou