Hi,
DO somebody know how to remove the rectangle graphics, I'm able to draw a rectangle graphics using this code:
Dim g As System.Drawing.Graphics
Dim myPen As New System.Drawing.Pen(System.Drawing.Color.Red, 2)
Dim myRect As New Rectangle(x1, y1, x2, y2)
g = Me.CreateGraphics()
g.DrawRectangle(myPen, myRect)
g.Dispose()
Is it possible to remove this rectangle graphics i had draw, Please tell me how to do so.
Thanks.