Looping over resources
Here is a small code snippet that demonstrates looping over the resources stored in the My.Resources namespace. It was a response to a MSDN forum question where all the resources stored were images. If you want have more types of resources then you'll want to refine this a bit. Treat the code below as a starter for 10 and take it from there...
Dim res As Resources.ResourceManager = My.Resources.ResourceManager
Dim resSet As Resources.ResourceSet = _
res.GetResourceSet(Globalization.CultureInfo.CurrentUICulture, True,
True)
Dim en As IDictionaryEnumerator = resSet.GetEnumerator()
While en.MoveNext()
'en.Key - name of the resourse
'en.Value - the resource as an object
images.Add(en.Value)
End While