When you create a screen with fields with the ENTRY IF option, you must write a procedure designer for the ID number in order to obtain the same behavior in change mode than in entry mode.<br><br>Is there any special reason for it or I&#39;m missing something?
<br><br>It is possible that Qdesign autogenerate the code if the procedure doesn&#39;t already exists?<br><br>Kind regards,<br><br>Daniel Rodriguez<br><br><br>SCREEN PRUEBA<br><br>TEMP TFIELD1 CHAR*2<br>TEMP TFIELD2 CHAR*2
<br><br>FIELD TFIELD1<br>FIELD TFIELD2 ENTRY IF TFIELD1 = &quot;XX&quot;<br><br>PROCEDURE DESIGNER 02<br>BEGIN<br>&nbsp;IF TFIELD1 = &quot;XX&quot;<br>&nbsp;THEN<br>&nbsp; ACCEPT TFIELD2 <br>END <br><br><br>