Consultor Eletrônico



Kbase 18531: 4GL. Trigger to Programmatically TAB from One-Char-Wide Column
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   8/27/2003
Status: Unverified

GOAL:

How to position to NEXT-COLUMN from a browse column that is one character wide, without TABBING.

FIX:

/* Trigger to Programmatically TAB from One-Char-Wide Browse Column */
  On any-printable of ONE-WIDE in browse b1 do:
     apply lastkey to ONE-WIDE in browse b1.
     apply "entry" to NEXT_COLUMN in browse b1.
     return no-apply.
  end.