dreamdelerium
Active member
- Joined
- Mar 7, 2008
- Messages
- 36
- Programming Experience
- 1-3
is there a way to change a labels border width and color? if so, how
Private Sub Label1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Label1.Paint
With e.Graphics
.DrawRectangle(New Pen(Color.Black, 1.0!), 0I, 0I, Label1.Width - 1I, Label1.Height - 1I)
End With
End Sub