BUG: Spin Control Does Not Obey Move MethodLast reviewed: April 26, 1996Article ID: Q150181 |
The information in this article applies to:
SYMPTOMSWhen you use the Move method of the Spin control, the control may not move if it is invisible.
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.
WORKAROUNDTo work around this problem, issue the Move command twice. For example, instead of writing:
SpinButton1.Move 0,0,200,200use the following code to move the control if it is invisible:
SpinButton1.Move 0,0,200,200 SpinButton1.Move 0,0,200,200If the size of the control remains unchanged, the command only needs to be issued once.
Steps To Reproduce Problem
MORE INFORMATIONIn general, this problem is encountered when the size and the position of the control are adjusted. If the size of the control is not adjusted by the Move command, the control will move correctly.
|
Additional reference words: 4.00 vb4win vb4all
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |