Kbase P3953: Problem with using vt220w (wide) terminal
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  3/5/2010 |
|
Status: Unverified
SYMPTOM(s):
Terminal vt220 is used
Terminal vt220w is used
Switching between terminals in 4GL code does not work properly
FACT(s) (Environment):
UNIX
CAUSE:
The exact cause is unknown at the time of this writing
FIX:
Use stty cols 80 and stty cols 132 during the 4GL switch. For example:
/* to switch to 80 columns */
UNIX silent "stty cols 80".
TERMINAL = "vt220".
PAUSE 1 NO-MESSAGE.
/* to switch to 132 columns */
UNIX silent "stty cols 132".
TERMINAL = "vt220w".
PAUSE 1 NO-MESSAGE.