Never mind.. I figured out what the problem is.
It appears that ToolStripPanels do not have their control name assigned at
design time. In the IDE, ToolStripPanels have a name and can 'renamed' there,
however the name will never appear in the form.designer.vb module unless it
is manually entered there. Without a name in the form.designer.vb module, the
name property is blank at run-time.
Regards
Hi Justin,
The Name property is optional. In fact, the IDE doesn't display the Name
property of the control, but rather the programmatic (Name) used in code.
These do not have to be the same, but to avoid confusion, the Name property
is hidden in the IDE, and any change to the (Name) will update Name as well.
As for ToolStripPanel.Name not being set by the IDE, that may well be a bug,
but I could not reproduce this bug as in my VS2005 C# project it did get its
Name set by the IDE.

Signature
Happy Coding!
Morten Wennevik [C# MVP]
> Never mind.. I figured out what the problem is.
>
[quoted text clipped - 5 lines]
>
> Regards