I want to make many pictureboxes, label during runtime.
If i double click it, then a picturebox will appear in my form.
How to do that?
Can you help me, pleaseee
And one more question, if my picturebox has already so many, will it become blinking or not?
Here is my code, i am confusing
CODE
Public Class Form1
Dim mapX, mapY As Integer
Dim bb As New PictureBox
Dim aLabel As New Label
Private Sub Form1_MouseDoubleClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseDoubleClick
Dim a As New PictureBox
a.Image = Image.FromFile("Salpa aspera.jpg")
a.Location = Control.MousePosition
a.Width = 100
a.Height = 100
Me.Refresh()
bb = a
aLabel.Text = "fdsfdsa"
aLabel.Location = Control.MousePosition
MsgBox(Control.MousePosition.ToString)
aLabel.Visible = True
l1.Location = Control.MousePosition
End Sub
....