BUG: ListView and Item Spacing

Last reviewed: October 8, 1996
Article ID: Q143406
The information in this article applies to:
  • Standard, Professional, and Enterprise Editions of Microsoft Visual Basic, 16-bit and 32-bit, for Windows, version 4.0

SYMPTOMS

The spacing between items in the ListView control changes, getting closer together when you change the BorderStyle property after adding listitems to the listview control. The problem occurs for Icon and SmallIcon views when the items include images.

MORE INFORMATION

Steps to Reproduce the Problem

  1. Start Visual Basic or from the File menu, choose New Project (ALT, F,

        N).
    

  2. Add a Listview control to Form1.

  3. Add an ImageList control to Form1.

  4. Place the following code to the form load event of form1.

    Dim i As Integer ListView1.Arrange = lvwAutoLeft

    ImageList1.ListImages.Add , , LoadPicture("c:\windows\cars.bmp") Set ListView1.Icons = ImageList1 Set ListView1.SmallIcons = ImageList1

    For i = 1 To 20

           ListView1.ListItems.Add , , "Item" & i, 1, 1
    
    Next

    ListView1.BorderStyle = 0

  5. Run program. Result: The items are all bunched together.

WORKAROUND

You can work around this problem by setting the Arrange property to lvwAutoLeft or lvwAutoTop after setting the BorderStyle property and before adding listitems to the listview control.

STATUS

Microsoft has confirmed this to be an issue in Visual Basic version 4.0 on Windows NT. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.


Additional reference words: 4.00 vb4win vb4all
KBCategory: kbusage kbbuglist
KBSubcategory: PrgCtrls



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.

Last reviewed: October 8, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.