devexpress component to memorize edit

0

Does anyone know which component of devexpress (delphi) that causes you to memorize the text edited in the application edit (s)?

example: I have a TEdit, with username, after typing the first time, when typing the second time as soon as I put the first letter it already recognizes what it had typed previously (of course if it has the same letter of the start.)

    
asked by anonymous 16.07.2018 / 15:37

1 answer

2

Actually it is a property present in several components that accept texts, like Edit and ComboBox, for example. In the documentation look for MRU (Most Recently Used). By exploring the MRUList property of the components you will see that you can automatically record and retrieve the values.

Example in WinForms. link

    
17.07.2018 / 03:02