It's possible to select an item in a wx.ListCtrl with:
listctrl.SetItemState(item, wx.LIST_STATE_SELECTED,
wx.LIST_STATE_SELECTED)
However this does not scroll the view to the selected item. Is it
possible to tell the wx.ListCtrl to scroll the view so that the
selected item is visible (as if you've selected with arrow keys on
they keyboard)?