Hello, i am a beginner in vb.net programming. Now I work on a project, in this project I have 2 forms, in the first form I make a dynamic PictureBox, declaration code is as follow:
There are no problem in this first form.Code:Dim MyPicturebox As New PictureBox
Me.Controls.Add(MyPicturebox)
MyPicturebox.Name = "PictureBox"
The problem is: How can i access or call that picture box from second form?
