Incremental search in a wxListCtrl!

Hi friends!

First let me define a task I want accomplish. For instance I have a wxListCtrl widget with a several column and many rows. If the list active (meaning selected) and user start typing chars, so then selection moves to first appropriate matching and if user continue his/her typing the selection will move forward (down) in the list. Yes, it is a incremental search in wxListCtrl column. Maybe it was already solved or can you give me some advices (or even code snippets) how to accomplish this task (which event I should catch and how to process them).

Thanks in advance!

···

--
Basil Shubin
Freelance Software Developer

lst.Bind(wx.EVT_CHAR, fcn)

Interpret the characters as necessary.

- Josiah

···

Basil Shubin <bashu@yandex.ru> wrote:

Hi friends!

First let me define a task I want accomplish. For instance I have a
wxListCtrl widget with a several column and many rows. If the list
active (meaning selected) and user start typing chars, so then selection
moves to first appropriate matching and if user continue his/her typing
the selection will move forward (down) in the list. Yes, it is a
incremental search in wxListCtrl column. Maybe it was already solved or
can you give me some advices (or even code snippets) how to accomplish
this task (which event I should catch and how to process them).