
Loading ...
A List of values may contains few duplicates and if we need to find the unique values out of the same then we need some algorithm to filter that out. Consider we have an array of values as give below
Dim arrLOV
arrLOV = Array ("Val1", "Vale2", "Val2", "Val1", "Val3", "Val2")
Now the array contains 2 duplicate values [...]
Register or Login to read the full article...
Tags used -
duplicate, duplicates, filter, List, remove, unique, values

Loading ...
At times, we might want to maintain a list of all objects which are created for an object. We will not discuss the situations where it would be required, but we will see how it’s done.
To store the list of object we can use the Dictionary objects. When we create classes object the first event [...]
Register or Login to read the full article...
Tags used -
Class, Classes, Class_Initialize, Class_Terminate, Collection, Dictionary, List, Maintain, Maintaining, Nothing, store, Storing