Hi

When I tried to compile a old projetc made in vb5 in the vb6 show me errors like in the subject, I believe to be a Listview, I do not know becacuse when see form show me a picturebox
the code error is in

Code:
Private Sub lvLOV_ColumnClick(ByVal ColumnHeader As MSComctlLib.ColumnHeader)
    If lvLOV.SortKey = ColumnHeader.index - 1 Then
        lvLOV.SortOrder = IIf(lvLOV.SortOrder = lvwAscending, lvwDescending, lvwAscending)
    End If
    lvLOV.SortKey = ColumnHeader.index - 1
End Sub
I tried to change references in vb project and form to control
Object={86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCT2.OCX

no work

Any tips for me to get around this error?