Using Enter Key Make It Emulate The Tab Key In PowerBuilder
To have the enter key act like a tab key, create a user event to correspond with the pbm_dwnprocessenter event on a datawindow. In that user event, add the following 2 lines:
1 | Send( Handle( this ), 256, 9, Long( 0, 0 ) ) |
Good Luck!