Kbase P18318: overwriting positions when using AT on the frame definitions
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  1/31/2003 |
|
Status: Unverified
SYMPTOM(s):
Overwriting column positions when using AT on the frame definitions
The information is placed on the next row instead of the column specified on the AT option.
CAUSE:
The format or size of the first variable occupies the position specified on the AT option of the second variable on the frame definition
FIX:
Example of the problem:
form
skip(2)
"TITLE OF FORM: " AT 1
moneda.m_unit_desc at 22 format "x(3)"
"--------------------------------------------------------------------------------" AT 1
wdesgform[1] AT 2 format "X(8)"
wdesgform[2] AT 9 format "X(3)"
no-labels WIDTH 120 frame frame1.
Note that the variable wdesgform[1] starts on the position 2 and it occupies 8 positions, therefore the position 9 will be used, so the variable wdesgform[2] won't be able to be displayed on the same row, it will be place on the next row.