Classic VCL question... but how to do the same within FireMonkey?
I have several standard TControl
who can focus...
For instance, in some TEdit
, I want to move to the next focusable control if I press the return key
I have try different approach but without success (replacing the key, keychar with 9 when it's 13, ..., forwarding the key events to the form, ...)
Of course, as it is FMX, I'd like a solution which works on all platforms...
If it can avoid to:
- browse the Children property of the parents,
- have different pieces of code to address the different platforms
- hard-code the tab sequence
- ..., it will be great ;o)