TIWCheckListBox

Is adding items to TIWCheckListBox async possible?  They don't show up until a full refresh.


Sorry if this has been asked before.  Nothing showed up when I did a forum search for TIWCheckListBox.

It is supported to asynchronously add items to the TIWCheckListBox control.
Have you tried calling Invalidate after adding an item?


Example:

  TIWCheckListBox1.Items.Add('My Item');
  TIWCheckListBox1.Invalidate;