Wrox Programmer Forums
|
VB.NET 2002/2003 Basics For coders who are new to Visual Basic, working in .NET versions 2002 or 2003 (1.0 and 1.1).
Welcome to the p2p.wrox.com Forums.

You are currently viewing the VB.NET 2002/2003 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old June 5th, 2003, 02:02 PM
Registered User
 
Join Date: Jun 2003
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default Searching ArrayList

Having problem in search of arraylist, following is the explanation.

Following is the contact class:

Public class contact()
  LastName as string
  FirstName as string
  Age as integer
End Class

I created a arraylist name as a1 and stores contact info in it.

dim a1 as arraylist
a1.Add(New contact(lastname,firstname,age))

Have following Search Criteria for user:

Name contains:
age:

Would like to search what ever user entered in the Name contains and age input. (e.g: if user enterd "A" as name contains and 28 as age, search would bring all the contacts which have "A" in either first or last name with age 28)

Question is Could "IndexOf" be used to search(like the above criteria) in arraylist of objects(contacts)? and if so any hint would be apprecitated.

Thanks,
 
Old June 10th, 2003, 03:06 AM
Authorized User
 
Join Date: Jun 2003
Posts: 33
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Mike,

What you can do is iterate (For Each.....Next) through the items in the arraylist.

As you go through each one, check the age, if it is the correct age then check the name.

You can get the IndexOf property if both checks are good and then enumerate to the next item.

You can then use your IndexOf property to access the items in the arraylist.

BUT REMEMBER, if you remove an item then the IndexOf of other items WILL change.

Hope this helps :)



Quote:
quote:Originally posted by Mike2000
 Having problem in search of arraylist, following is the explanation.

Following is the contact class:

Public class contact()
  LastName as string
  FirstName as string
  Age as integer
End Class

I created a arraylist name as a1 and stores contact info in it.

dim a1 as arraylist
a1.Add(New contact(lastname,firstname,age))

Have following Search Criteria for user:

Name contains:
age:

Would like to search what ever user entered in the Name contains and age input. (e.g: if user enterd "A" as name contains and 28 as age, search would bring all the contacts which have "A" in either first or last name with age 28)

Question is Could "IndexOf" be used to search(like the above criteria) in arraylist of objects(contacts)? and if so any hint would be apprecitated.

Thanks,






Similar Threads
Thread Thread Starter Forum Replies Last Post
ArrayList Mogg-Way C# 2005 5 February 12th, 2008 04:05 PM
Arraylist mechanism anwarraja Pro Java 1 September 6th, 2007 11:54 AM
Help with an arraylist crazy-nun General .NET 4 July 14th, 2005 03:32 AM
ArrayList kobystud C# 4 May 25th, 2004 02:05 PM
Searching ArrayList Mike2000 VB.NET 0 June 5th, 2003 10:28 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.