Thread
:
displaying info within a loop
View Single Post
#
5
(
permalink
)
12-02-2008, 9:58 PM
Solitaire
VB.NET Forum Genius
.NET Framework: .NET 3.5 (VS 2008)
Join Date: Jun 2004
Posts: 226
Reputation:
105
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
Solitaire
View Public Profile
Send a private message to Solitaire
Find all posts by Solitaire