The cursor does not move between fields using the Enter key
please I am facing a problem with moving between fields in version 2022 R3 Build 3356 Runtime 22.2.0.3356,
as the cursor does not move between fields in this way i have 2 data windows i am using this commands
IF dw_info.getcolumn()=1 then
dw_info.setcolumn(2)
dw_info.setfocus()
ElseIF dw_info.getcolumn()=2 then
dw_info.setcolumn(3)
dw_info.setfocus()
ElseIF dw_info.getcolumn()=3 then
dw_info.setcolumn(4)
dw_info.setfocus()
ElseIF dw_info.getcolumn()=4 then
dw_info.setcolumn(5)
dw_info.setfocus()
ElseIF dw_info.getcolumn()=5 then
dw_info.setcolumn(6)
dw_info.setfocus()
ElseIF dw_info.getcolumn()=6 then
dw_master.setcolumn(1)
dw_master.setfocus()
End if