Ok, I've combed the entire internet and can't find anything to help me here; I can't figure out the syntax for searching an array of stored words for a string matching an input string.
I understand the pseudocode of it, but I'm tripping up over what variables I need to put where, and how they should be formatted. If anyone here can help, it'd be greatly appreciated.
More than happy to provide more details should anyone request them.
Pseudocode;
Found = False
Loop through all the elements of the array
If current element = input,
Then found = True
End of loop
vba
for you, I assume that's correct for Visual Basic. – larsmans Jan 20 '12 at 19:48