
Originally Posted by
boops boops
Graphics.DrawLines draws a polyline, i.e a series of lines joined end to end. Poppa apparently wants to draw separate lines radiating from a centre, so Graphics.DrawLine is needed. BB
Even DrawLine, for multiple lines should be completed in one execution of the Paint Event...
Code:
Private Sub Me_Paint(sender As System.Object, e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
For i = 0 To cords.Count - 1
e.Graphics.DrawLine(pen1, centre, cords(i))
Next
End Sub