Consultor Eletrônico



Kbase P98657: How to insert a TAB character in the Editor widget
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   13/12/2004
Status: Unverified

GOAL:

How to insert a TAB character in the Editor widget

GOAL:

How to use the TAB character with the editor widget

FIX:

Create a trigger of the TAB key in the Editor. For example:

ON TAB OF EDITOR-1 IN FRAME DEFAULT-FRAME
DO:
editor-1:INSERT-STRING(STRING(CHR(9))).
END.