by Andrew Jackson
11. September 2008 12:25
Easy - check me.DesignMode e.g.
Put this code into the load event of your control and the control will turn red when in design mode
If Me.DesignMode Then
Me.BackColor = Color.FromKnownColor(KnownColor.Red)
End If