That's personal.
I have this code to define a New Point for a PictureBox, but at the time of running it does not work, and it is even obvious why not, will know in the code below ...
Dim VarPbx As String = "PictureBox" & "2"
Dim pbx As PictureBox = CType(Me.Controls.Find(VarPbx, True).FirstOrDefault, PictureBox)
Dim ValorLocation As String = "324, 212"
pbx.Location = New Point(ValorLocation)
Discovered? I'm a layman myself '-'
I've tried other types of variables for (ValorLocation) but it's the expected error in some of the numbers, the right one is the value Decimal, right? Thank you for opening this post.