Urgent - Compare Items in Two Listbox Controls using VB.Net 2003

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there any easy way to compare items in two listbox controls? I need to
find if the items in ListA are the same as items in ListB.
 
What are the items? Are they value types or reference types? Do you
need to compare their contents? Or just to see if ListA contains the
same items as ListB? If you could provide a little more detail about
the nature of the items, it would make it easier to recommend a method
of comparison.
 
I need to see if ListA contains the same items as ListB. They both are the
value types.

ListA contains the column names of TableA and ListB contains column name of
TableB and I am trying to figure out if the table structures are the same.
 
Back
Top