label border width

Not using the properties window. What you need to do is use the label's paint event to paint a border:
VB.NET:
    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
 
Back
Top