I am modifying an old application of my work. Through winsock and listview I show a series of printers and basically their status. I'm complicating a dotted box around the 1st item in the listview, I do not know how to avoid it. The idea is that it's just a visual report, I do not need to interact with the rows. Any idea how to make the edge disappear? Attachment fragment where I configure the listview and an image of the problem. Thanks !!!
With ListView1
.ColumnHeaders.Clear
.ListItems.Clear
.View = lvwReport
.SmallIcons = ImageList1
.MultiSelect = False
.HideSelection = True
.SortKey = 0
.SortOrder = lvwAscending
.Sorted = True
Set ch = .ColumnHeaders.Add(, , " Equipo", 2510)
Set ch = .ColumnHeaders.Add(, , " Estado", 2510)
Set ch = .ColumnHeaders.Add(, , "Fecha reporte", 3320, lvwColumnCenter)
Set ch = .ColumnHeaders.Add(, , "Tickets", 1315, lvwColumnCenter)
End With