Thanks,Frank.
I have read discussion of this issue
:http://aspn.activestate.com/ASPN/Mail/Message/wxPython-users/3556304
So, it leaves me one alternative: wait for new build of wxPython with added
SetCurrentItem method for TreeListCtrl.
Then my code could be looked like this:
# to programmatically move cursor to item in TreeListCtrl so it become
selected _and focused_ one need something like this:
self.SelectItem(newly_found_item,select=True) # this one moves blue
selection bar to item
self.SetCurrentItem(newly_found_item) # this one actually set
item selected , focused and so one...(only in wxpython > 2.8.4.2 ?)
# bwa-ha-ha , what a mess!
I'm wondering why original developers (cpp guys) don't bothered to create
one universal method
of moving selection and focus in treelistctrl, listctrl and other multi item
controls.
Well, anyway, thank you very much Frank.
···
---
igor@tyumbit.ru