


Dim MiddleX As Integer = (Me.Width / 2) - 4
Dim MiddleY As Integer = (Me.Height / 2) - 4
Dim TheKillDot As Graphics = Me.CreateGraphics
Dim MyPen As Pen = New Pen(Color.Red)
Dim MyBrush As SolidBrush = New SolidBrush(Color.Red)
TheKillDot.SmoothingMode = SmoothingMode.HighQuality
If Activated = True Then
TheKillDot.FillEllipse(MyBrush, MiddleX, MiddleY, 8, 8)
ElseIf Activated = False Then
Me.Refresh()
End If
Dim MiddleX As Integer = (Me.Width / 2) - 4
Dim MiddleY As Integer = (Me.Height / 2) - 4
Dim TheKillDot As Graphics = Me.CreateGraphics
Dim MyPen As Pen = New Pen(Color.Red)
Dim MyBrush As SolidBrush = New SolidBrush(Color.Red)
TheKillDot.SmoothingMode = SmoothingMode.HighQuality
If Activated = True Then
TheKillDot.FillEllipse(MyBrush, MiddleX, MiddleY, 8, 8)
ElseIf Activated = False Then
Me.Refresh()
End If