Ok, here's the deal.
I'm trying to call make visible an object, i can do this:
Button1.Visible = True
but, i was wondering if there is a way that i can call it like this. Lets say i have a variable 'OBJNAME' wich value is "Button1". What i want to do is to make visible the button like this:
OBJNAME.Visible = True
I want to do this because i have like 100 objects to show in the form and i dont want to code for every one of them.
Is this possible? :)