Re: [Gambas-user] ComboBox as a SearchBox?

2017-05-19 Thread Fabien Bodard
you can built something with a textbox a drawing area for drawing the but with the current style and a listbox in a popuped window you can also use the completion class. 2017-05-19 9:35 GMT+02:00 Matti : > Thanks, Rolf. > Good idea. Now, I have set the search string on first position of the list

Re: [Gambas-user] ComboBox as a SearchBox?

2017-05-19 Thread Matti
Thanks, Rolf. Good idea. Now, I have set the search string on first position of the list. But something ist still wrong - I'll investigate. Matti Am 19.05.2017 um 08:47 schrieb Rolf-Werner Eilert: > Am 18.05.2017 20:18, schrieb Matti: >> My idea was: entering the beginning of a word in a ComboBox,

Re: [Gambas-user] ComboBox as a SearchBox?

2017-05-19 Thread Matti
Thanks, Christof. This looks good. I'll have a look at it. Matti Am 19.05.2017 um 08:59 schrieb Christof Thalhofer: > Hello Matti, > > Am 18.05.2017 um 20:18 schrieb Matti: >> My idea was: entering the beginning of a word in a ComboBox, the list should >> display all the possible matches, then ei

Re: [Gambas-user] ComboBox as a SearchBox?

2017-05-18 Thread Rolf-Werner Eilert
Am 18.05.2017 20:18, schrieb Matti: > My idea was: entering the beginning of a word in a ComboBox, the list should > display all the possible matches, then either select from the list or narrow > the search by entering more letters. > This works perfect - but when I fill the list with the matches

Re: [Gambas-user] ComboBox as a SearchBox?

2017-05-18 Thread PICCORO McKAY Lenz
this are in a gambas web project or gambas desktop project? i search for something similar .. how do you doing.. my idea was using json.. but on desktop can be a pain! for search, in the input box, made a query with json to a collection with preloaded data from database Lenz McKAY Gerardo (PICC

[Gambas-user] ComboBox as a SearchBox?

2017-05-18 Thread Matti
My idea was: entering the beginning of a word in a ComboBox, the list should display all the possible matches, then either select from the list or narrow the search by entering more letters. This works perfect - but when I fill the list with the matches, my search string (= ComboBox.Text) is ove