The MDIClient is a private control on the form, but it is accessible.
foreach (Control c In this.Controls)
if (c is MdiClient)
c.BackColor = Color.Green;
but if you want to paint to it then I would reccomend setting a
BackgroundImage to the form and painting that instead.
The MdiClient is private and notInheritable.

Signature
Mick Doherty
http://dotnetrix.co.uk/nothing.html
> Hi All,
> In C# when I change the isMDIContainer property of a Form to true, the
[quoted text clipped - 6 lines]
> Please assist.
> -ZS