DesktopComboBox: how do you handle text typed?

I populate a DesktopComboBox with a .txt file contents at Open time.

I can use the TextField from the DesktopComboBox to type data that is not in the list and I handle the change in an Event.

But where must I handle the typed data when I finished to type it ?

Maybe you can take a look at documentation :wink: and to ‘Textchanged’ Event.

1 Like

Thank you.

Doh ! That documentation is so good… (irony);
TextChanged is certainly fired each time I type something in the keyboard…

… and my code to deal with an entry is in SelectionChanged. A Return keypress do nothing.

In the mean time, I tried KeyUp and seems to work (the text is mirrored to a TextArea for testing and it appears there).
NowI have to create a Method called from 2 Combo Box Events.