I've got a .ini file that contains 10 words (1 word per line)
In my application, I'm assigning the 1st word to something using the following code:
value := somefilename.Strings[0]
The word assigned is thus the word from the 1st line in the .ini file
I'd like, instead of assigning the 1st word, to make it assign a random one from the total 10 located in the .ini file.
Cant seem to find a stringlist
property for that.
How can I do that?