ListBox Blue rectangle for Selection

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rtellier
    New Member
    • Sep 2007
    • 1

    ListBox Blue rectangle for Selection

    hello all :)

    i have just started using VB6 one week ago and i need a few help.

    i just want to know if it's possible to disable or remove the blue rectangle which shows the item selected in a listbox :)

    thank you for helping

    regards,

    Rom
  • QVeen72
    Recognized Expert Top Contributor
    • Oct 2006
    • 1445

    #2
    Hi,

    Check this :

    [code=vb]
    If List1.SelCount = 1 Then
    List1.Selected( List1.ListIndex ) = False
    End If
    [/code]

    REgards
    Veena

    Comment

    Working...