Hello.
I want to change the text of the column in listview with checkbox
I have
Public Sub lvRegDePedido_ItemCheckedChanged(sender As Object, e As ListViewItemEventArgs) Handles lvRegDePedido.ItemCheckedChanged            formatoDeCellda()    End Sub
Private Sub formatoDeCellda()        Try            Dim e As ListViewCellFormattingEventArgs            e = Nothing            If e.CellElement.Data.HeaderText = "Estado del articulo" Then                If e.CellElement.Text = "No entregado" Then                    e.CellElement.ForeColor = Color.Aqua                End If            End If        Catch ex As Exception : MsgBox(ex.Message)        End Try    End SubI work in the trial version (demo)
Adj Img