I am currently working on a project where I programmed a button to create a new picture.

Dim newpicture As New PictureBox
newpicture.Width = 75
newpicture.Height = 75
newpicture.Location = New Point(30, 30)


However, now later in my project, I am in need of changing the new object's location.
How can I do this easily? Is there a way that I can have the new objects be added to the class?

-BTW I have to keep the newly added objects because more than just one is added in my project.
Thank you!!!!!!!!!!!!!!!