HtmlListBox OnGetItem Issue

Hi Everyone,

    I was trying the wx.HtmlListBox and I found that when I call
SetItemCount, it calls OnGetItem from the last item to (last item -
visible item count)(may not be exactly this). This doesn't look like a
problem in the first sight. But when I try to add thousands of items
from a database query result it is. Because it calls OnGetItem
unneeded and many times. So my frame hangs even I do my query on a
different thread and use events. I think OnGetItem should be called
when the visible area contains that item.

Murat