Kbase P82915: OUTPUT TO TERMINAL fails to redirect output to screen
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  24/06/2004 |
|
Status: Unverified
SYMPTOM(s):
OUTPUT TO TERMINAL fails to redirect output to screen
Code containing OUTPUT TO TERMINAL called from (smart)Window procedure.
CAUSE:
The virtual size of window larger than actual size.
The output is placed in it's own frame(s), and these end up outside of the window's viewport as a result.
FIX:
To ensure this doesn't occur, add:
ASSIGN wWin:VIRTUAL-HEIGHT-CHARS = wWin:HEIGHT-CHARS
wWin:VIRTUAL-WIDTH-CHARS = wWin:WIDTH-CHARS.
at the beginning of the procedure's Main block.