the_utmost
Registered User.
- Local time
- Today, 12:34
- Joined
- Mar 10, 2005
- Messages
- 40
Hi:
I have a problem with saving two sets of data. The problem is that sometimes the corresponding value is not known until later. For instance
Collection1 Collection2
Name1 Null
Name2 Bob
Name3 Null
Name4 Ray
So I have to save Collection 1 with all 4 values and Collection 2 with only Bob and Ray. A few clicks and I know the value of Name1 and Name3. I have to insert them into my collection in the correct spots. Does anyone know how/if I can use a key or an index for this?
Currently I am using
ColName.Add "Bob",,after:=1
but that fails. Any idea's?
I have a problem with saving two sets of data. The problem is that sometimes the corresponding value is not known until later. For instance
Collection1 Collection2
Name1 Null
Name2 Bob
Name3 Null
Name4 Ray
So I have to save Collection 1 with all 4 values and Collection 2 with only Bob and Ray. A few clicks and I know the value of Name1 and Name3. I have to insert them into my collection in the correct spots. Does anyone know how/if I can use a key or an index for this?
Currently I am using
ColName.Add "Bob",,after:=1
but that fails. Any idea's?