the code below generates the following error message:<br>
**Unable to realize FRAME x outside of its parent. (4102)<br>
<br>
i'm new at progress and have neither a clue what this means or how to look up the error number 4102. anybody out there know what it is that i'm doing wrong?<br>
<br>
<br>
DEFINE VARIABLE vfile AS CHARACTER FORMAT "X(30)".<br>
DEFINE VARIABLE ipi-number AS INTEGER.<br>
DEFINE VARIABLE vpi-number AS INTEGER.<br>
<br>
PROMPT-FOR ipi-number LABEL "Enter your PI number"<br>
WITH FRAME x WIDTH 65.<br>
<br>
SET vpi-number = INPUT FRAME x ipi-number. <br>
IF vpi-number > 10 THEN<br>
DISPLAY STRING("PI number " + string(vpi-number) + " is too large.")<br>
FORMAT "X(45)"<br>
WITH FRAME x.<br>
<br>
PROMPT-FOR vfile LABEL "Enter the source file"<br>
WITH FRAME x SIDE-LABELS NO-BOX WIDTH 65 ROW 25.<br>
<br>
DISPLAY INPUT FRAME x vfile.
**Unable to realize FRAME x outside of its parent. (4102)<br>
<br>
i'm new at progress and have neither a clue what this means or how to look up the error number 4102. anybody out there know what it is that i'm doing wrong?<br>
<br>
<br>
DEFINE VARIABLE vfile AS CHARACTER FORMAT "X(30)".<br>
DEFINE VARIABLE ipi-number AS INTEGER.<br>
DEFINE VARIABLE vpi-number AS INTEGER.<br>
<br>
PROMPT-FOR ipi-number LABEL "Enter your PI number"<br>
WITH FRAME x WIDTH 65.<br>
<br>
SET vpi-number = INPUT FRAME x ipi-number. <br>
IF vpi-number > 10 THEN<br>
DISPLAY STRING("PI number " + string(vpi-number) + " is too large.")<br>
FORMAT "X(45)"<br>
WITH FRAME x.<br>
<br>
PROMPT-FOR vfile LABEL "Enter the source file"<br>
WITH FRAME x SIDE-LABELS NO-BOX WIDTH 65 ROW 25.<br>
<br>
DISPLAY INPUT FRAME x vfile.