Me.MDIParent.Controls("StatusStrip").Controls("stStatus").Text = "blah"
The message I get is "Referenced object has a value of 'Nothing'".
Looking at the StatusStrip control it appears all the panels are stored in an Items collection but there is no Items collection accessing the controls through the MDIParent property.
Does anyone know how to do what I'm trying to do?
Thanks and Happy Holidays!!!
CType(Me.MdiParent, ParentFormType).ToolStripStatusLabel1.Text = "Howdy..."