I need to get the location of a picturebox inside a picturebox. I think I
need to use pointtoclient to get the right point, but I keep getting
negative numbers.
Dim pnt As New Point(e.X, e.Y)
pnt = picCont.PointToScreen(pnt)
picDraw.Location = picCont.PointToClient(pnt)
TIA