Hi,
I am totally lost and I went through a lot of sites about searching within an array, but I could not find any clues. I created the following array :
Private LetterArray() As String = {"A", "B", "C"}
and I don't know how to get the target letter from a "Textbox" and search "SearchButton" for it ?
I have to do the following:
- Get the TargetLetter from the textbox
- Set a Boolean for Found to False (which I did)
- Use for loop For Each Letter in the Array (LetterArray)
- If the Word = the Target
Make Found True
Endif
I appreciate all the help or the hints/sites that I can read for this subject.
Thank you in advance.