is there any possibility that when the user presses the ENTER key, go to the next field, but without putting code in all objects on screen?
some general configuration that simulates the action of the TAB, or something similar?
like what can be done in C#
private void frmTela_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
SendKeys.Send("{TAB}");
}
}