KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q190309: BUG: Treeview Display Corrupted with DragMode=Automatic

Article: Q190309
Product(s): Microsoft FoxPro
Version(s): WINDOWS:6.0
Operating System(s): 
Keyword(s): 
Last Modified: 12-AUG-1999

-------------------------------------------------------------------------------
The information in this article applies to:

- Microsoft Visual FoxPro for Windows, version 6.0 
-------------------------------------------------------------------------------

SYMPTOMS
========

When the DragMode property of a Treeview control on a form is set to "1 -
Automatic", the Treeview control displays incorrectly at run-time.

RESOLUTION
==========

Use the OLEDragMode property of the Treeview control in place of the DragMode
property.

STATUS
======

Microsoft has confirmed this to be a bug in the Microsoft products listed at the
beginning of this article. We are researching this bug and will post new
information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION
================

Steps to Reproduce Behavior
---------------------------

Run the following sample code:

Sample Code
-----------

     PUBLIC ox
     ox=NewObject("test")
     ox.Show

     DEFINE CLASS test AS form

        Caption = "Form1"
        Name = "Form1"

        ADD OBJECT olecontrol1 AS olecontrol WITH ;
           OleClass = "MSComCtlLib.TreeCtrl.2", ;
           DragMode = 1, ;
           Top = 24, ;
           Left = 36, ;
           Height = 180, ;
           Width = 276, ;
           Name = "Olecontrol1"

        PROCEDURE olecontrol1.Init
        this.nodes.add(,,"r","Test")
     ENDPROC

     ENDDEFINE

The Test node does not display in the Treeview, and the Treeview border does not
display correctly.

Additional query words: kbbug kbvfp600

======================================================================
Keywords          :  
Technology        : kbVFPsearch kbAudDeveloper kbVFP600
Version           : WINDOWS:6.0
Issue type        : kbbug

=============================================================================

THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Copyright Microsoft Corporation 1986-2002.