shawne
Well-known member
Is there a simple way to outline text on a button?
Private Sub Button1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Button1.Paint
e.Graphics.DrawRectangle(Pens.Red, 4, 4, Button1.Width - 8, Button1.Height - 8)
End Sub