Access Mdi Parents StatusStrip from Child Form
foreach (Control c in this.ParentForm.Controls) { if (c is StatusStrip) { StatusStrip s = (StatusStrip)c; s.Items[0].Text = "Message"; } }
foreach (Control c in this.ParentForm.Controls) { if (c is StatusStrip) { StatusStrip s = (StatusStrip)c; s.Items[0].Text = "Message"; } }