When I do the resize, it is simply
Me.Size(x,y)
the form starts with a size of 610,635. the StatusStrip appears okay. the details are
StatusStrip size = 604,22
StatusStrip localtion = 0,581
Doing
Me.Size(456,477)
the strip disappears. I added some Console output code.
When I do
Me.Size(456,477)
the StatusStip details become
StatusStrip size = 450,22), so that is within the form width
StatusStrip location = 0, 423
the new image on the form is 450x413, so it should be visible.
The statusStrip Y pos is within the form size.
It doesn't seem to matter what size I make the form this way, the StatusStrip is only visible at the original size.