How can I cause the Paint event to fire from a Form_Click() event? This is what I'm trying to do...
Public Class StrTests01
Private Sub StrTests01_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Click
Dim ps As Graphics = Me.CreateGraphics()
'RaiseEvent StrTests01_Paint(sender, ps)
End Sub
Private Sub StrTests01_Paint(ByVal sender As Object, ByVal pea As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
pea.Graphics.DrawString("Hello, World!", Me.Font, New SolidBrush(SystemColors.WindowText), 0, 0)
End Sub
End Class