As new data comes into my wx.ListCtrl the window fills up and scroll bars appear. What I want to do is to have the most current data (at the bottom of the list) displayed on the windows. My first idea was a way to force the wx.ListCtrl scroll bars to default to the bottom of the window. If there is another/better way to do this I am all ears.
Share
After you add the new items, you should be able to use
to pin the scrollbar to the bottom.