Sub inp1_EnterPressed(value As String)
' jump to inp2
Dim inp2 As ABMInput = page.Component("inp2")
inp2.Setfocus
inp2.Refresh
End Sub
Sub inp1_TabPressed(target as String, value As String)
' use the same as for the enter
inp1_EnterPressed(target)
End Sub
Sub inp2_EnterPressed(value As String)
' jump to inp3
Dim inp3 As ABMInput = page.Component("inp3")
inp3.Setfocus
inp3.Refresh
End Sub
Sub inp2_TabPressed(target as String, value As String)
' use the same as for the enter
inp2_EnterPressed(target)
End Sub