Q: At random strings
VBKid; tsu-hackerz@innocent.com wrote: Thank you for your help, but I mis stated the question :-p, I need to have like three text statements, like
1. "Hello"
2. "Hi"
3. "What's up?"
and I need them to each randomly appear like in a text box. Thanks..
A: Dim strText(4) As String strText(1) = "Hello" strText(2) = "goodbye" strText(3) = "see you later" Randomize Text1.Text = strText(Int((3 * Rnd) + 1)) Return