Hello.
I have this loop started by a button Click event:
The loop must wait another Click event (preceeded by a user passed value (letter) in a textbox) to continue; actually the loop assigns the same letter to all array length.
It's the first time I develop a user driven software (all the previous were fully automated ones) so I'm having a probably such silly issue but I can't figure it out how to manage the wait.
Thanks in advance,
Luca
I have this loop started by a button Click event:
Code:
For i = 0 To AlphabetArray.GetUpperBound(0)
AlphabetArray.SetValue(letter, i)
Alphabet.Lettertxtbox.Clear()
Next i
It's the first time I develop a user driven software (all the previous were fully automated ones) so I'm having a probably such silly issue but I can't figure it out how to manage the wait.
Thanks in advance,
Luca
Comment