BUG: Cannot Change Left and Top of Invisible Sheridan ControlLast reviewed: October 8, 1996Article ID: Q150183 |
The information in this article applies to:
SYMPTOMSIf the Left and Top properties of a Sheridan frame control are set to new values before the Width of the control is changed while the control is invisible, the Left and Top properties will retain their original values.
STATUSMicrosoft has confirmed this to be an issue in the Microsoft products listed at the beginning of this article. Microsoft is researching this issue and will post new information here in the Microsoft Knowledge Base as it becomes available.
WORKAROUNDSet the Width property of the control before setting the Left and Top values.
MORE INFORMATION
Steps To Reproduce Problem
Private Sub Form_Click() SSFrame1.Visible = False SSFrame1.Width = SSFrame1.Width + 1000 SSFrame1.Top = SSFrame1.Top + 1000 SSFrame1.Left = SSFrame1.Left + 1000 SSFrame1.Visible = True End Sub |
Additional reference words: 4.00 vb4win vb4all
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |