Hi,
I'm using the following code to add a border to my No-border-Form which has a special color, but when I apply the code, the form's color is set back to the original grey, so I would like to preserve the color specified (222, 223, 206), any ideas ?, thanks in advance !!!:
Private Sub Init_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
Dim Rect As Rectangle = Me.ClientRectangle()
ControlPaint.DrawBorder3D(e.Graphics, Rect, Border3DStyle.RaisedOuter, Border3DSide.All)
End Sub