aroshlakshan
New member
- Joined
- Jan 11, 2011
- Messages
- 4
- Programming Experience
- Beginner
I got a string array & i need to show the contents of it to a single label. it acts like a clock. the thing is i tried with everything i could but i failed. this is the code i've been trying. its in vb.net. and theres a thread running to slow down the loop so i can display the contents in a label for 2 seconds. is that the thing causing the problem?? please help. thanks...
Dim j As Integer
For j = 0 To readText.Length
label.text=readText(j)
Thread.Sleep(2000)
Next
Dim j As Integer
For j = 0 To readText.Length
label.text=readText(j)
Thread.Sleep(2000)
Next