|
-
Dec 18th, 2002, 05:24 AM
#1
Thread Starter
Frenzied Member
Alternative to Dictionary or Collection ?
I have a bunch of records (number could vary) which I want to store temporarily.
Normally I would use either a Dictionary or a Collection object, but each record I want to store has 7 associated fields.
Does anyone know of an alternative to Dictionaries/Collections that could handle multiple fields ?
TIA ......
-
Dec 18th, 2002, 05:35 AM
#2
Thread Starter
Frenzied Member
OK I forgot to mention arrays .... doh !
I will probably use an array, but have to keep potentially removing/adding records until the user is happy with their selection, which could get a bit messy ......
.... oh well
-
Dec 18th, 2002, 01:35 PM
#3
Well ...
I remember having a DLL for some object called FlexiBag. It was supposed to be an improved and better form of a collection object.
Dunno the URL or such other info though. I might have the DLL at office, but not sure. Try asking Parksie about it. My guess is he had suggested it in some old old post.
.
-
Dec 18th, 2002, 01:36 PM
#4
Thread Starter
Frenzied Member
OK cheers Bee !
I'll have a search around, then ask Parksie if I can't find it
-
Dec 18th, 2002, 01:52 PM
#5
How about creating a UDT with the fields you need to store, then store the UDT in a collection?
Or, you can create a Class that you can then store in the collection.
Or, as you mentioned, an array.
Or, an XML document.
Or, you can use a recordset.
Just some ideas.....
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|