i have a list that i am manually drawing.
how do i force the redraw of a particular item without issuing a lst.refresh command which redraws everything
Private Sub lst_DrawItem(ByVal sender As Object, ByVal e As System.Windows.Forms.DrawItemEventArgs) Handles lst.DrawItem
If lst.SelectedIndex = e.Index Then
else
end if
end sub
how do i force the redraw of a particular item without issuing a lst.refresh command which redraws everything
Private Sub lst_DrawItem(ByVal sender As Object, ByVal e As System.Windows.Forms.DrawItemEventArgs) Handles lst.DrawItem
If lst.SelectedIndex = e.Index Then
else
end if
end sub