If in the event that there were three or more objects of a class e.g. three instances of Class1 named Class1Object. How could you keep track of all of these in a simple manner?
E.g. for example I wanted to do a Show.Form on the seconds instance / object of the class
Instances of objects are not named as such. Are you referring to the name of a variable you have reused three times? If so, and you need access still to each instance, you need to use three different variables or some sort of collection/array type.