BUG: Sheridan Panel Doesn't Correctly Align if Visible is False
Article ID: 150234
Article Last Modified on 6/29/2004
APPLIES TO
- Microsoft Visual Basic 4.0 Standard Edition
- Microsoft Visual Basic 4.0 Professional Edition
- Microsoft Visual Basic 4.0 Professional Edition
- Microsoft Visual Basic 4.0 16-bit Enterprise Edition
- Microsoft Visual Basic 4.0 32-Bit Enterprise Edition
This article was previously published under Q150234
SYMPTOMS
The Sheridan Panel control does not correctly align to the bottom of a form
after a window is resized if the Visible property of the control is set to
False during the resize of the window.
RESOLUTION
Set the position of the status bar using code. For example, rather than
setting the Visible property of the status bar to True, calculate and set
the position before showing the bar. The following code aligns the bar to
the bottom of a Form before showing it:
SSPanel1.Align = 0
SSPanel1.Top = Form1.Top + Form1.Width - SSPanel1.Width
SSPanel1.Visible = True
SSPanel1.Align = 2
STATUS
Microsoft has confirmed this to be an issue in the Microsoft products
listed at the beginning of this article.
Keywords: kbbug KB150234