I created a listbox and a combobox. I populated the listbox with the words (one per line) "the quick brown fox jumped over the lazy dog". I then added an event handler as follows:
Private Sub ListBox1_SelectedValueChanged(sender As Object, e As System.EventArgs) Handles ListBox1.SelectedValueChanged
ComboBox1.Items.Clear()
For i As Integer = 1 To ListBox1.Text.Length
ComboBox1.Items.Add(Mid(ListBox1.Text, i, 1))
Next
End Sub
Selecting a word in the listbox will causes the letters of that word to be put into the combobox. Is that what you are looking for?
Reverend Jim
Posting Shark
1,167 posts since Aug 2010
Reputation Points: 253
Solved Threads: 159