Hello

I have this code:
Code:
 Private Sub Form1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
        e.Graphics.FillEllipse(Brushes.Blue, 100, 100, 100, 100)
    End Sub
How do I use this shape in the code? For example I want to be able to move it around using keydown events.

Thanks