BUG: Grid Custom Control: Scroll Bars Displayed UnnecessarilyLast reviewed: June 21, 1995Article ID: Q80967 |
The information in this article applies to:
- Professional Edition of Microsoft Visual Basic for Windows, versions 2.0 and 3.0- Microsoft Professional Toolkit for Microsoft Visual Basic programming system for Windows, version 1.0
SYMPTOMSUnder the following conditions, the Grid custom control incorrectly displays horizontal and vertical scroll bars when all the columns and rows fit in the control (which eliminates the need for scroll bars):
WORKAROUNDTo work around this problem, add the following statements to the Form_Load procedure to set the ScrollBars property to 0 (none), then back to the original setting.
Sub Form_Load () save% = Grid1.ScrollBars ' save setting Grid1.ScrollBars = 0 ' turn off scroll bars Grid1.ScrollBars = save% ' restore setting End Sub STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATION
Steps to Reproduce Problem
|
Additional reference words: buglist1.00 buglist2.00 buglist3.00 1.00 2.00
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |