Change background color of MDIParent Form in VB.Net
Solution : Private Sub bgColor() Dim child As Control For Each child In Me .Controls If TypeOf child Is MdiClient Then child.BackColor = Color.CadetBlue Exit For End If Next child = Nothing End Sub