I am trying to create a simple graphics editor where a user can draw lines with the mouse in a picture box already containing a background. The idea is to allow the user to create a network over a map.

I am using the VB line object to create the lines the user draws.

But the problem is to edit the lines drawn by the user. As the Line object does not have any Click or MouseMove method, I am unable to allow users to edit them. I want the users to click on the endpoint of the line and move it to a new location to stretch or reduce the length.

Can someone please help?