U ucasesoftware Sep 26, 2005 #1 How is it possible to change the mdi parent backcolor... this one is too dark !!
E Eric Moreau Sep 27, 2005 #2 This is what I use: Dim ctl As Control 'Loop, looking for MdiClient type Forms For Each ctl In Me.Controls If TypeOf (ctl) Is MdiClient Then CType(ctl, MdiClient).BackColor = Color.DarkSeaGreen Exit For End If Next -- HTH Éric Moreau, MCSD, Visual Developer - Visual Basic MVP (http://aspnet2.com/mvp.ashx?EricMoreau) Conseiller Principal / Senior Consultant Concept S2i inc. (www.s2i.com) http://pages.videotron.com/emoreau/
This is what I use: Dim ctl As Control 'Loop, looking for MdiClient type Forms For Each ctl In Me.Controls If TypeOf (ctl) Is MdiClient Then CType(ctl, MdiClient).BackColor = Color.DarkSeaGreen Exit For End If Next -- HTH Éric Moreau, MCSD, Visual Developer - Visual Basic MVP (http://aspnet2.com/mvp.ashx?EricMoreau) Conseiller Principal / Senior Consultant Concept S2i inc. (www.s2i.com) http://pages.videotron.com/emoreau/