BUG: TreeView.Visible = False at Design-Time Causes ProblemsLast reviewed: March 29, 1996Article ID: Q149278 |
The information in this article applies to:
SYMPTOMSAfter setting the Visible property of a TreeView control to False at design time, odd behavior can be exhibited at run time. The reproduction sample at the end of this article shows two examples. This behavior can range from the Nodes.Count property returning incorrect values to all or some nodes not being displayed, and even to GPFs in some cases.
WORKAROUNDThe work around for this problem is to not set the Visible property to False at design time. If a TreeView control needs to be invisible when a form is shown, the Visible property should be toggled in code before the form with the TreeView is shown. This can easily be done in the Form_Load event of the TreeView laden form with this line of code:
TreeView1.Visible = False STATUSMicrosoft has confirmed this to be an issue in the Microsoft products listed at the beginning of this article. Microsoft is researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATION
Steps to Reproduce
|
KBCategory: kbbuglist kbprg
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |