Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Thread posted in wrong part of forum; need help with arrays

Status
Not open for further replies.
The problem is not the fact that this is ASP.NET, you are using VB.NET. You need to change this:
Code:
 Dim AResult(4) As String
To this:
Code:
 Dim AResult As New ArrayList
 
but I still don't understand what to write instead of
"For j As Int32 = 0 To aStart.Count - 1"
I have tried replacing count with indexof, but it geves an error.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top