Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
120
UltraComboEditor features for localization
posted

Hi all,

I have a few ideas, which absolutely could help me with using ultraComboEditor:

- auto complete for language diacritics - a want to just type á and get all items with á, a, ä, ...

- get list of suggested items programatically - i want to know what is first in list after i typed something

- some event for move from text field to suggested list -  i want to know when user press down key

- and triple click - first click to text do classic, double click select word, triple click select whole text in text edit

Are these ideas possible in some way?

Parents
No Data
Reply
  • 469350
    Offline posted

    Hi Marcel,

    marcel granak said:
    - auto complete for language diacritics - a want to just type á and get all items with á, a, ä, ...

    I can't immediately see any reason why this should not work. If it's not working, it may be a bug. I can't say I've ever tried it, though. I'm not sure how you would even go about typing one of these characters - there are none on an English keyboard. So I assume you have to use different regional settings. Can you post a small sample with instructions explaining how to duplicate the issue?

    marcel granak said:
    - get list of suggested items programatically - i want to know what is first in list after i typed something

    While there is no built-in function for this, you could easily loop through the list and find a set of matching items.

    marcel granak said:
    - some event for move from text field to suggested list -  i want to know when user press down key

    That's an unusual request. What would the purpose of this be?

    marcel granak said:
    - and triple click - first click to text do classic, double click select word, triple click select whole text in text edit

    I'm not sure if this is possible. Windows has support for clicking and double-clicking, but not triple clicking. You might be able to acheive this by trapping the MouseDown and using a timer to see if the clicks occur in a certain space of time. But the built-in double-click and click behavior might interfere.

Children