View Single Post
  #5 (permalink)  
Old 12-02-2008, 9:58 PM
Solitaire Solitaire is offline
VB.NET Forum Genius
.NET Framework: .NET 3.5 (VS 2008)
 
Join Date: Jun 2004
Posts: 226
Reputation: 105
Solitaire probably authored a book by nowSolitaire probably authored a book by now
Default

The following works for me:


Dim aa() As Integer = {2, 4, 6, 8, 10}
For i As Integer = 0 To 4
TextBox2.Text &= aa(i) & " "
Next
Reply With Quote