D
David
HEllo.
How can I draw a point on the picturebox.
Thanks.
How can I draw a point on the picturebox.
Thanks.
David said:How can I draw a point on the picturebox.
David said:HEllo.
How can I draw a point on the picturebox.
Thanks.
Draw a line with the same start and end points.
Dim g As Graphics = PictureBox1.CreateGraphics
g.DrawLine(Pens.Black, 10, 10, 10, 10)