I’m using using 2023r1.1. Here is the code that causes the problem. It in AlternateHighlightCheckbox:
#If TargetWin32 Then
For row As Integer = 0 To StandardListBox.LastRowIndex
For col As Integer = 0 To StandardListBox.LastColumnIndex
StandardListBox.InvalidateCell(row, col)
NextFor row As Integer = 0 To HierarchicalListBox.LastRowIndex
For col As Integer = 0 To HierarchicalListBox.LastColumnIndex
HierarchicalListBox.InvalidateCell(row, col)
Next#Else
// Redraw ListBox so that background are painted using the current value of the CheckBox
StandardListBox.Refresh(False)
HierarchicalListBox.Refresh(False)
#Endif
Here is the error message:
MainWindow.AlternateHighlightCheckBox.ValueChanged, line 4
Type “DesktopListBox” has no member named “InvalidateCell”
StandardListBox.InvalidateCell(row, col)