This si my problem: I have checkedlistbox with about 25 items, when I need to check some items from code like this
For i = 0 To chklstbox.Items.Count - 1
chklstbox.SelectedIndex = i
if condition then chklstbox.SetItemChecked(i, True)
Next i
control flicker on the screen. Question is how to avoid that flickering?
In vb6 some controls (like msflexgrid) have property 'Redraw', when it's set to false controls don't redraw on the screen when some changes are perform.

regard j