[RESOLVED] Disallowing StatusStrip movement at Runtime
Hi Friends,
I have a StatusStrip at the bottom of the Form.
When i run the form I am able to drag it and move it
towards the top. So the StatusStrip just disappears.
I dont want the user to be able to MOVE the
strip. How do I do that ??
Thank You,
Siddharth
Re: Disallowing StatusStrip movement at Runtime
What you're asking for is the default behaviour so I would think that you would have had to have made the change in the first place. Maybe I'm wrong but I've never seen a StatusStrip draggable by default. What is the Dock property set to? It should be Bottom.
Re: Disallowing StatusStrip movement at Runtime
Hi John,
I just fixed it.
The Dock property was set to bottom
but the anchor property was not set to bottom.
I just set it. So it works fine now.
Thanks :)
Sid.
Re: [RESOLVED] Disallowing StatusStrip movement at Runtime
That still doesn't really make sense. The The Anchor property is irrelevant if the Dock property is set. As soon as you set the Anchor, Dock is set to None. That's how it works for me anyway.