I have the following situation in Lazarus:
A TScrollBox on a form.
Inside this TScrollBox, there are two TDBEdit components.
The first TDBEdit is visible within the display area.
The second TDBEdit is also inside the TScrollBox, but it's out of view and requires scrolling to be seen.
Problem:
When navigating between fields using the Tab key, the TScrollBox does not scroll automatically to reveal the TDBEdit that receives focus. The field is correctly focused, but visually it remains hidden.
Question:
How can I make the TScrollBox automatically scroll to show the component that has received focus?